This commit is contained in:
2026-09-13 04:05:59 +02:00
parent 90860b9279
commit 340c825019
48 changed files with 2727 additions and 532 deletions
+229 -13
View File
@@ -7486,6 +7486,112 @@ a.removetag i {
vertical-align: middle;
}
/* Tag Badge & Hover-to-Exclude Action */
.tag-badge {
display: inline-flex;
align-items: center;
position: relative;
transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
vertical-align: middle;
}
.tag-badge a.tag-name {
color: inherit;
text-decoration: none;
transition: opacity 0.15s ease;
}
.tag-badge .tag-exclude-btn {
background: transparent;
border: none;
padding: 0;
margin: 0;
cursor: pointer;
color: inherit;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 0.8em;
line-height: 1;
vertical-align: middle;
border-radius: 50%;
outline: none;
transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
.tag-badge:not(.tag-is-excluded) .tag-exclude-btn {
opacity: 0;
width: 0;
max-width: 0;
margin-left: 0;
overflow: hidden;
transform: scale(0.5);
pointer-events: none;
}
.tag-badge:hover .tag-exclude-btn,
.tag-badge:focus-within .tag-exclude-btn {
opacity: 0.85;
width: 14px;
max-width: 14px;
margin-left: 5px;
overflow: visible;
transform: scale(1);
pointer-events: auto;
}
}
@media (hover: none) {
.tag-badge .tag-exclude-btn {
opacity: 0.7;
width: 14px;
max-width: 14px;
margin-left: 4px;
overflow: visible;
pointer-events: auto;
transform: scale(1);
}
}
.tag-badge .tag-exclude-btn:hover,
.tag-badge .tag-exclude-btn:focus-visible {
opacity: 1;
color: #ff4757 !important;
transform: scale(1.28);
filter: drop-shadow(0 0 6px rgba(255, 71, 87, 0.75));
}
/* Excluded Tag State */
.tag-badge.tag-is-excluded {
opacity: 0.75;
box-shadow: inset 0 0 0 1px rgba(255, 71, 87, 0.55), 0 0 8px rgba(255, 71, 87, 0.2);
background-color: rgba(255, 71, 87, 0.15) !important;
}
.tag-badge.tag-is-excluded a.tag-name {
text-decoration: line-through;
text-decoration-color: rgba(255, 71, 87, 0.8);
text-decoration-thickness: 1.5px;
opacity: 0.85;
}
.tag-badge.tag-is-excluded .tag-exclude-btn {
opacity: 0.95;
width: 14px;
max-width: 14px;
margin-left: 5px;
overflow: visible;
pointer-events: auto;
transform: scale(1);
color: #ff4757;
}
.tag-badge.tag-is-excluded .tag-exclude-btn:hover {
color: #2ed573 !important;
filter: drop-shadow(0 0 6px rgba(46, 213, 115, 0.75));
}
.badge-greentext {
color: #789922;
text-shadow: inherit !important;
@@ -10106,6 +10212,26 @@ input#s_avatar {
cursor: pointer;
}
.nav-mime-item.locked {
cursor: not-allowed !important;
opacity: 0.85;
}
.nav-mime-item.locked:hover {
background: transparent !important;
color: #ccc !important;
}
.nav-mime-item.locked input[type="checkbox"] {
cursor: not-allowed !important;
pointer-events: none !important;
}
.filter-pill.locked {
cursor: not-allowed !important;
opacity: 0.85;
}
.nav-mime-divider {
height: 1px;
background: rgba(255, 255, 255, 0.1);
@@ -11715,23 +11841,19 @@ html[theme="f0ck95d"] .badge-dark {
vertical-align: middle;
text-decoration: none;
cursor: pointer;
transition: color 0.15s ease, transform 0.12s cubic-bezier(0.2, 0, 0, 1), opacity 0.15s ease;
transition: opacity 0.15s ease;
}
.steuerung a:hover,
.steuerung button:hover {
color: var(--accent);
opacity: 0.85;
transform: translateY(-1px);
opacity: 0.8;
}
.steuerung a:active,
.steuerung button:active,
.steuerung a.is-clicked,
.steuerung button.is-clicked {
transform: scale(0.92) translateY(1px);
opacity: 0.65;
transition-duration: 0.05s;
opacity: 0.6;
}
.steuerung.steuerung-icon {
@@ -11745,7 +11867,7 @@ html[theme="f0ck95d"] .badge-dark {
align-items: center;
justify-content: center;
width: 1.6em;
transition: color 0.15s ease, transform 0.12s cubic-bezier(0.2, 0, 0, 1), opacity 0.15s ease;
transition: opacity 0.15s ease;
background: none;
border: none;
padding: 0;
@@ -11755,17 +11877,14 @@ html[theme="f0ck95d"] .badge-dark {
.steuerung.steuerung-icon a:hover,
.steuerung.steuerung-icon button:hover {
color: var(--accent);
transform: translateY(-1px);
opacity: 0.8;
}
.steuerung.steuerung-icon a:active,
.steuerung.steuerung-icon button:active,
.steuerung.steuerung-icon a.is-clicked,
.steuerung.steuerung-icon button.is-clicked {
transform: scale(0.88) translateY(1px);
opacity: 0.65;
transition-duration: 0.05s;
opacity: 0.6;
}
html[theme='light'] .steuerung a,
@@ -12503,6 +12622,11 @@ input:checked+.slider:before {
grid-column: 1;
}
.rating-selector.locked {
cursor: not-allowed;
opacity: 0.9;
}
.rating-toggle-btn {
display: inline-block;
background: transparent;
@@ -12528,6 +12652,12 @@ input:checked+.slider:before {
background: rgba(255, 255, 255, 0.08);
}
.rating-toggle-btn.locked {
cursor: not-allowed !important;
pointer-events: none !important;
opacity: 0.85 !important;
}
/* Per-rating active colours */
.rating-toggle-btn.active[data-rating="sfw"] {
background: #2e7d32;
@@ -15670,6 +15800,41 @@ span.gchat-post-card--loading {
gap: 5px;
}
/* Excluded Tags Filter Modal Section */
.excluded-tags-section-header {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-bottom: 12px;
}
.excluded-tags-section-title {
font-size: 1.05em;
font-weight: 600;
color: rgba(255, 255, 255, 0.9);
letter-spacing: 0.5px;
display: inline-flex;
align-items: center;
gap: 7px;
}
.excluded-tags-section-title i {
color: #ff4757;
font-size: 0.9em;
}
.excluded-tags-count-badge {
background: #ff4757;
color: #fff;
font-size: 0.72em;
font-weight: 700;
padding: 2px 7px;
border-radius: 12px;
line-height: 1.2;
box-shadow: 0 2px 6px rgba(255, 71, 87, 0.4);
}
#nav_excluded_tags_list {
margin-bottom: 15px;
display: flex;
@@ -15677,6 +15842,57 @@ span.gchat-post-card--loading {
gap: 8px;
justify-content: center;
max-width: 100%;
min-height: 28px;
align-items: center;
}
.excluded-tag-chip {
padding: 5px 12px;
border-radius: 20px;
background: rgba(255, 71, 87, 0.12);
border: 1px solid rgba(255, 71, 87, 0.35);
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.9em;
color: #f1f2f6;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.excluded-tag-chip:hover {
background: rgba(255, 71, 87, 0.2);
border-color: rgba(255, 71, 87, 0.55);
transform: translateY(-1px);
box-shadow: 0 4px 10px rgba(255, 71, 87, 0.25);
}
.excluded-tag-chip .remove-excluded-tag {
color: #ff4757;
text-decoration: none;
font-weight: bold;
font-size: 1.15em;
line-height: 1;
display: inline-flex;
align-items: center;
justify-content: center;
width: 18px;
height: 18px;
border-radius: 50%;
transition: all 0.2s ease;
cursor: pointer;
}
.excluded-tag-chip .remove-excluded-tag:hover {
color: #fff;
background: #ff4757;
transform: scale(1.18);
}
.no-excluded-tags-hint {
color: rgba(255, 255, 255, 0.4);
font-size: 0.9em;
font-style: italic;
}
.nav-exclude {