diff --git a/app/static/scss/_dark.scss b/app/static/scss/_dark.scss index 8559735c..f423a75f 100644 --- a/app/static/scss/_dark.scss +++ b/app/static/scss/_dark.scss @@ -27,6 +27,10 @@ background-color: #D3D7CF; } + .dropdown-header { + color: white; + } + .table td { border-top-color: #2D3848; } diff --git a/app/static/styles.css b/app/static/styles.css index 4eba6167..c269e001 100644 --- a/app/static/styles.css +++ b/app/static/styles.css @@ -908,6 +908,10 @@ div.navbar { background-color: black; } } +[data-bs-theme=dark] .dropdown-header { + color: white; +} + @media print { #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 { diff --git a/app/static/styles.scss b/app/static/styles.scss index 051bf930..07fc6499 100644 --- a/app/static/styles.scss +++ b/app/static/styles.scss @@ -490,4 +490,8 @@ div.navbar { } } +[data-bs-theme="dark"] .dropdown-header { + color: white; +} + @import "scss/print";