dropdown header - dark mode. fixes #199

This commit is contained in:
rimu 2024-06-14 18:18:21 +08:00
parent 7368b52485
commit 49a4ef3b4e
3 changed files with 12 additions and 0 deletions

View file

@ -27,6 +27,10 @@
background-color: #D3D7CF; background-color: #D3D7CF;
} }
.dropdown-header {
color: white;
}
.table td { .table td {
border-top-color: #2D3848; border-top-color: #2D3848;
} }

View file

@ -908,6 +908,10 @@ div.navbar {
background-color: black; background-color: black;
} }
} }
[data-bs-theme=dark] .dropdown-header {
color: white;
}
@media print { @media print {
#navbarSupportedContent, #side_pane, .voting_buttons, .comment_actions, footer, .post_reply_form, #post_replies .btn-group, #navbarSupportedContent, #side_pane, .voting_buttons, .comment_actions, footer, .post_reply_form, #post_replies .btn-group,
.navbar .nav-link, .post_utilities_bar, .community_header, .community_icon_big, .mobile_create_post { .navbar .nav-link, .post_utilities_bar, .community_header, .community_icon_big, .mobile_create_post {

View file

@ -490,4 +490,8 @@ div.navbar {
} }
} }
[data-bs-theme="dark"] .dropdown-header {
color: white;
}
@import "scss/print"; @import "scss/print";