mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 22:41:27 +00:00
Update CW
This commit is contained in:
parent
39c2adb656
commit
25bf33e64a
5 changed files with 13 additions and 2 deletions
|
@ -25,7 +25,7 @@ class Status extends Model
|
||||||
|
|
||||||
public function thumb()
|
public function thumb()
|
||||||
{
|
{
|
||||||
if($this->media->count() == 0) {
|
if($this->media->count() == 0 || $this->is_nsfw) {
|
||||||
return "data:image/gif;base64,R0lGODlhAQABAIAAAMLCwgAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==";
|
return "data:image/gif;base64,R0lGODlhAQABAIAAAMLCwgAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==";
|
||||||
}
|
}
|
||||||
return url(Storage::url($this->firstMedia()->thumbnail_path));
|
return url(Storage::url($this->firstMedia()->thumbnail_path));
|
||||||
|
|
BIN
public/css/app.css
vendored
BIN
public/css/app.css
vendored
Binary file not shown.
Binary file not shown.
|
@ -16,7 +16,18 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-md-8 status-photo px-0">
|
<div class="col-12 col-md-8 status-photo px-0">
|
||||||
|
@if($status->is_nsfw)
|
||||||
|
<details class="details-animated">
|
||||||
|
<p>
|
||||||
|
<summary>NSFW / Hidden Image</summary>
|
||||||
|
<a class="max-hide-overflow" href="{{$status->url()}}">
|
||||||
|
<img class="card-img-top" src="{{$status->mediaUrl()}}">
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
</details>
|
||||||
|
@else
|
||||||
<img src="{{$status->mediaUrl()}}" width="100%">
|
<img src="{{$status->mediaUrl()}}" width="100%">
|
||||||
|
@endif
|
||||||
</div>
|
</div>
|
||||||
<div class="col-12 col-md-4 px-0 d-flex flex-column border-left border-md-left-0">
|
<div class="col-12 col-md-4 px-0 d-flex flex-column border-left border-md-left-0">
|
||||||
<div class="d-md-flex d-none align-items-center justify-content-between card-header py-3 bg-white">
|
<div class="d-md-flex d-none align-items-center justify-content-between card-header py-3 bg-white">
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@if($item->is_nsfw)
|
@if($item->is_nsfw)
|
||||||
<details>
|
<details class="details-animated">
|
||||||
<p>
|
<p>
|
||||||
<summary>NSFW / Hidden Image</summary>
|
<summary>NSFW / Hidden Image</summary>
|
||||||
<a class="max-hide-overflow" href="{{$item->url()}}">
|
<a class="max-hide-overflow" href="{{$item->url()}}">
|
||||||
|
|
Loading…
Reference in a new issue