change downvote color during DKD

master
Aevann 2024-04-06 02:42:52 +02:00
parent e283665129
commit 3b4999e913
3 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,9 @@
@charset "UTF-8"; @charset "UTF-8";
:root {
--downvote-color: #38B2AC;
}
.visited > img { .visited > img {
opacity: 0.6; opacity: 0.6;
} }
@ -3906,7 +3910,7 @@ small, .small {
} }
.active.arrow-down::before { .active.arrow-down::before {
color: #38B2AC; color: var(--downvote-color);
} }
.arrow-down::before { .arrow-down::before {
cursor: pointer; cursor: pointer;
@ -3926,7 +3930,7 @@ small, .small {
color: var(--primary) !important; color: var(--primary) !important;
} }
.downvoted .arrow-mobile-down { .downvoted .arrow-mobile-down {
color: #38B2AC !important; color: var(--downvote-color) !important;
} }
.score { .score {
color: var(--black); color: var(--black);
@ -3943,7 +3947,7 @@ small, .small {
color: var(--primary); color: var(--primary);
} }
.score-down { .score-down {
color: #38B2AC !important; color: var(--downvote-color) !important;
font-size: 1.1rem; font-size: 1.1rem;
} }
@ -4981,7 +4985,7 @@ pre .com, code .com {
color: var(--primary); color: var(--primary);
} }
.active.arrow-down::before, .active.arrow-down:hover::before { .active.arrow-down::before, .active.arrow-down:hover::before {
color: #38B2AC; color: var(--downvote-color);
} }
.dropdown-actions a { .dropdown-actions a {
font-size: 1rem; font-size: 1rem;

View File

@ -112,7 +112,7 @@ blockquote {
} }
.active.arrow-down::before { .active.arrow-down::before {
color: #38B2AC !important; color: var(--downvote-color) !important;
} }
.table { .table {

View File

@ -19,7 +19,7 @@
{% set primary_rgb = primary|rgb %} {% set primary_rgb = primary|rgb %}
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en" style="--primary:#{{primary}};--primary_rgb:{{primary_rgb}}"> <html lang="en" style="--primary:#{{primary}};--primary_rgb:{{primary_rgb}}{% if IS_DKD() %};--downvote-color:#f2ca20{% endif %}">
<head> <head>
{% block head %} {% block head %}
<meta charset="utf-8"> <meta charset="utf-8">