Merge pull request #644 from pixelfed/frontend-ui-refactor

Frontend ui refactor
This commit is contained in:
daniel 2018-12-15 16:56:23 -07:00 committed by GitHub
commit b30f92cac5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 6 deletions

View file

@ -23,7 +23,7 @@ return [
| This value is the version of your PixelFed instance.
|
*/
'version' => '0.5.5',
'version' => '0.5.6',
/*
|--------------------------------------------------------------------------

Binary file not shown.

Binary file not shown.

View file

@ -11,9 +11,11 @@
background: #fff;
}
.postPresenterContainer {
@media(min-width: 720px) {
.postPresenterContainer {
background: #000;
min-height: 600px;
}
}
</style>
<template>
@ -51,7 +53,7 @@
</div>
</div>
</div>
<div class="col-12 col-md-8 status-photo px-0 mx-0">
<div class="col-12 col-md-8 px-0 mx-0">
<div class="postPresenterLoader text-center">
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
</div>
@ -222,6 +224,7 @@ pixelfed.presenter = {
let el = $('<img>');
el.attr('src', media[0]['url']);
el.attr('title', media[0]['description']);
el.addClass('img-fluid');
wrapper.append(el);
if(status.sensitive == true) {
let spoilerText = status.spoiler_text ? status.spoiler_text : 'CW / NSFW / Hidden Media';

View file

@ -346,8 +346,12 @@
display: flex;
align-items: center;
background: #000;
}
@media(min-width: 720px) {
.postPresenterContainer {
min-height: 600px;
}
}
.cursor-pointer {
cursor: pointer;
}