Skip to content

Commit

Permalink
Fix close button contrast in some dark themes
Browse files Browse the repository at this point in the history
Signed-off-by: RD WebDesign <[email protected]>
  • Loading branch information
rdwebdesign committed Jun 25, 2024
1 parent 94b49ce commit e9aea93
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
7 changes: 6 additions & 1 deletion style/themes/default-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,12 @@ input[type="password"]::-webkit-caps-lock-indicator {
}

.close {
color: #383838;
color: #fff;
text-shadow: 0 1px 0 #000;
}
.close:focus,
.close:hover {
color: #fff;
}

.login-page {
Expand Down
9 changes: 8 additions & 1 deletion style/themes/high-contrast-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,14 @@ input[type="password"]::-webkit-caps-lock-indicator {
}

.close {
color: #383838;
color: #fff;
text-shadow: 0 1px 0 #000;
opacity: 0.4;
}
.close:focus,
.close:hover {
color: #fff;
opacity: 0.8;
}

.login-page {
Expand Down

0 comments on commit e9aea93

Please sign in to comment.