server version, minor css fixes and other visual upgrades mostly to standard layout -> glitch css
This commit is contained in:
@@ -7,12 +7,10 @@
|
||||
@foreach($categories as $category)
|
||||
<div id="category_box_{{$category->shortname}}" class="category-box">
|
||||
<div class="thumbnail">
|
||||
<img src="{{ asset('/images/cat/' . $category->shortname . '.webp') }}" alt="{{$category->name}}">
|
||||
<a href="{{$category->shortname}}"><img src="{{ asset('/images/cat/' . $category->shortname . '.webp') }}" alt="{{$category->name}}"></a>
|
||||
<div class="caption">
|
||||
<h5>{{$category->name}} <small><b>{{$category->videos()->count()}}</b></small></h5>
|
||||
<span class="cat-desc"><i>{{$category->description}}</i></span>
|
||||
<br>
|
||||
<span class="cat-button"><a href="{{$category->shortname}}" class="btn btn-dark" role="button">View</a></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -1,8 +1,6 @@
|
||||
<div class="panel @if($del = !is_null($comment->deleted_at)) panel-danger @else panel-default @endif" data-id="{{$comment->id}}" author="{{$comment->user->username}}">
|
||||
<div class="comment panel-body" author="{{$comment->user->username}}">
|
||||
@simplemd($comment->content)
|
||||
</div>
|
||||
<div class="panel-footer">by <a class="{{$comment->user->username}}" href="/user/{{$comment->user->username}}">{!! $comment->user->displayName() !!}</a> <small><time class="timeago" data-toggle="tooltip" data-placement="top" datetime="{{$comment->created_at}}+0000" title="{{$comment->created_at}}+0000"></time>
|
||||
<div class="panel @if($del = !is_null($comment->deleted_at)) panel-danger @else @endif video-comment-wrapper" data-id="{{$comment->id}}" author="{{$comment->user->username}}">
|
||||
<div class="umrandung_name">
|
||||
<div class="comment_header"><a class="{{$comment->user->username}} user_color" href="/user/{{$comment->user->username}}">{!! $comment->user->displayName() !!}</a> <time class="timeago" data-toggle="tooltip" data-placement="top" datetime="{{$comment->created_at}}+0000" title="{{$comment->created_at}}+0000"></time> No. <a href="#{{ $comment->id }}">{{ $comment->id }}</a>
|
||||
<div class="dingz">
|
||||
@if($mod)
|
||||
@if($del)
|
||||
@@ -13,6 +11,9 @@
|
||||
@endif
|
||||
@endif
|
||||
</div>
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
<div class="comment panel-body video-comment-body" author="{{$comment->user->username}}">
|
||||
@simplemd($comment->content)
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -13,4 +13,4 @@
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@@ -12,4 +12,7 @@
|
||||
|
||||
<span id="favs-user"><a href="/user/{{$user->username}}/favs/index"><i class="fa fa-heart"></i> {{ $user->favs()->countScoped()->count() }} Favorites</a></span>
|
||||
</div>
|
||||
@if($user->isOnline())
|
||||
user is online!!
|
||||
@endif
|
||||
</div>
|
||||
|
@@ -12,7 +12,7 @@
|
||||
<strong>Songtitle:</strong> {{$video->songtitle}}
|
||||
</div>@endif
|
||||
@if($video->imgsource) <div class="source">
|
||||
<strong>Video Source:</strong> {{$video->imgsource}}
|
||||
<strong>Video Source:</strong> @simplemd($video->imgsource)
|
||||
</div>@endif
|
||||
<div class="category">
|
||||
<strong>Category:</strong> <a class="text-white" href="/index?q={{$video->category->name}}">{{$video->category->name}}</a>
|
||||
|
Reference in New Issue
Block a user