gsdf
This commit is contained in:
@@ -11,9 +11,9 @@
|
||||
</div>
|
||||
@if(enable_item_title)
|
||||
<div class="item_title item-title">
|
||||
<span class="item_title_text" @if(can_manage_item) style="display:none;" @endif>{!! item.title || '' !!}</span>
|
||||
<span class="item_title_text@if(!item.title) no-title@endif"@if(can_manage_item) title="Click to edit"@endif>@if(item.title){!! item.title !!}@elseif(can_manage_item)<em>Add a title</em>@endif</span>
|
||||
@if(can_manage_item)
|
||||
<div class="info-title-edit-wrap">
|
||||
<div class="info-title-edit-wrap" style="display:none;">
|
||||
<input type="text" id="info-title-input" class="info-title-input" value="{!! item.title || '' !!}" placeholder="Add a title…" maxlength="500" data-item-id="{{ item.id }}" />
|
||||
<button type="button" id="info-title-save" class="info-title-save-btn" title="Save Title"><i class="fa-solid fa-check"></i></button>
|
||||
</div>
|
||||
|
||||
@@ -75,9 +75,9 @@
|
||||
</div>
|
||||
@if(enable_item_title)
|
||||
<div class="item_title item-title">
|
||||
<span class="item_title_text" @if(can_manage_item) style="display:none;" @endif>{!! item.title || '' !!}</span>
|
||||
<span class="item_title_text@if(!item.title) no-title@endif"@if(can_manage_item) title="Click to edit"@endif>@if(item.title){!! item.title !!}@elseif(can_manage_item)<em>Add a title</em>@endif</span>
|
||||
@if(can_manage_item)
|
||||
<div class="info-title-edit-wrap">
|
||||
<div class="info-title-edit-wrap" style="display:none;">
|
||||
<input type="text" id="info-title-input" class="info-title-input" value="{!! item.title || '' !!}" placeholder="Add a title…" maxlength="500" data-item-id="{{ item.id }}" />
|
||||
<button type="button" id="info-title-save" class="info-title-save-btn" title="Save Title"><i class="fa-solid fa-check"></i></button>
|
||||
</div>
|
||||
|
||||
+4
-4
@@ -1,5 +1,5 @@
|
||||
<!doctype html>
|
||||
<html lang="{{ lang || 'en' }}" theme="@if(typeof theme !== 'undefined'){{ theme }}@endif">
|
||||
<html lang="{{ lang || 'en' }}" theme="@if(typeof theme !== 'undefined' && theme){{ theme }}@elseif(typeof req !== 'undefined' && req.theme){{ req.theme }}@else{{ default_theme || 'f0ck' }}@endif">
|
||||
<head>
|
||||
<title>{{ domain }} — doomscroll</title>
|
||||
<meta charset="utf-8" />
|
||||
@@ -321,9 +321,9 @@
|
||||
.scroll-user-link { pointer-events: all; position: relative; z-index: 11; text-decoration: none; color: inherit; }
|
||||
.scroll-badges { display: flex; gap: 6px; align-items: center; margin-bottom: 4px; pointer-events: all; position: relative; z-index: 11; }
|
||||
.scroll-rating { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 4px; font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
|
||||
.scroll-rating.sfw { background: var(--badge-sfw); color: #fff; }
|
||||
.scroll-rating.nsfw { background: var(--badge-nsfw); color: #fff; }
|
||||
.scroll-rating.nsfl { background: var(--badge-nsfl); color: #fff; }
|
||||
.scroll-rating.sfw { background: var(--badge-sfw, #4caf50); color: #fff; }
|
||||
.scroll-rating.nsfw { background: var(--badge-nsfw, #e10dc3); color: #fff; }
|
||||
.scroll-rating.nsfl { background: var(--badge-nsfl, #660000); color: #fff; }
|
||||
.scroll-rating.untagged { background: transparent; color: rgba(255,255,255,.5); border: 1px dashed rgba(255,255,255,.3); }
|
||||
.scroll-rating.can-cycle { cursor: pointer; pointer-events: all; position: relative; z-index: 11; }
|
||||
.scroll-rating.can-cycle:hover { filter: brightness(1.2); }
|
||||
|
||||
@@ -127,6 +127,9 @@
|
||||
<button type="button" class="sidebar-tab" data-tab="recommendations" title="{{ t('sidebar.recommendations') }}" aria-label="{{ t('sidebar.recommendations') }}">
|
||||
<i class="fa-solid fa-compass"></i>
|
||||
</button>
|
||||
<button type="button" class="sidebar-tab" id="sidebar-tab-tag" data-tab="tag" title="Tag Feed" aria-label="Tag Feed" style="display: none;">
|
||||
<i class="fa-solid fa-hashtag"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div id="sidebar-activity-container" class="sidebar-comments-list sidebar-tab-content active" data-tab-content="comments">
|
||||
<div class="sidebar-loading-state">
|
||||
@@ -140,6 +143,24 @@
|
||||
<span>{{ t('sidebar.loading_recommendations') }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id="sidebar-tag-container" class="sidebar-recommendations-list sidebar-tab-content" data-tab-content="tag" style="display: none;">
|
||||
<div class="sidebar-tag-header">
|
||||
<div class="sidebar-tag-title">
|
||||
<i class="fa-solid fa-hashtag"></i>
|
||||
<span class="sidebar-tag-name"></span>
|
||||
<span class="sidebar-tag-count"></span>
|
||||
</div>
|
||||
<button type="button" class="sidebar-tag-order-btn" title="Newest first (default) — Click for Oldest first">
|
||||
<i class="fa-solid fa-arrow-down-9-1"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div class="sidebar-tag-items-container">
|
||||
<div class="sidebar-loading-state">
|
||||
<i class="fa-solid fa-circle-notch fa-spin"></i>
|
||||
<span>Loading tag items...</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="global-sidebar-right-footer">
|
||||
<a href="/ranking">{{ t('footer.ranking') }}</a>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<!doctype html>
|
||||
<html lang="{{ lang || 'en' }}" theme="@if(typeof theme !== 'undefined'){{ theme }}@endif" res="@if(typeof fullscreen !== 'undefined'){{ fullscreen == 1 ? 'fullscreen' : '' }}@endif" data-thumb-size="{{ default_thumb_size || 'm' }}">
|
||||
<html lang="{{ lang || 'en' }}" theme="@if(typeof theme !== 'undefined' && theme){{ theme }}@elseif(typeof req !== 'undefined' && req.theme){{ req.theme }}@else{{ default_theme || 'f0ck' }}@endif" res="@if(typeof fullscreen !== 'undefined'){{ fullscreen == 1 ? 'fullscreen' : '' }}@endif" data-thumb-size="{{ default_thumb_size || 'm' }}">
|
||||
|
||||
<head>
|
||||
@if(typeof page_meta !== 'undefined' && page_meta.title)<title>{{ domain }} - {{ page_meta.title }}</title>@elseif(typeof item !== 'undefined')<title>{{ domain }} - {{ (enable_item_slugs && item.slug) ? item.slug : item.id }}</title>@else<title>{{ domain }}</title>@endif
|
||||
|
||||
@@ -928,8 +928,8 @@ body.preview-as-user .admin-edit-btn,
|
||||
body.preview-as-user .admin-pin-btn,
|
||||
body.preview-as-user .delete-btn,
|
||||
body.preview-as-user .poll-delete-btn,
|
||||
body.preview-as-user [data-is-admin] .admin-only { display: none !important; }
|
||||
body.preview-as-user .item_title_text { display: inline !important; }
|
||||
body.preview-as-user .item_title_text { display: inline !important; cursor: default !important; pointer-events: none !important; }
|
||||
body.preview-as-user .item_title_text.no-title { display: none !important; }
|
||||
|
||||
/* Hide admin-only actions in mod preview (keep delete — mods can delete) */
|
||||
body.preview-as-mod #a_rethumb,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
@each(toptags as toptag)
|
||||
<a href="/tag/{{ toptag.safe_tag }}@if(user && user.user)?tagger={!! encodeURIComponent(user.user) !!}@endif" class="tag-card">
|
||||
<a href="/tag/{{ toptag.safe_tag }}@if(typeof tagger !== 'undefined' && tagger)?tagger={!! encodeURIComponent(tagger) !!}@endif" class="tag-card">
|
||||
<div class="tag-card-image">
|
||||
<img src="/tag_image/{{ toptag.encoded_tag }}?m={{ session.mode }}" loading="lazy" alt="{!! toptag.tag !!}">
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user