Skip to content

Commit

Permalink
Darkmode lang/theme selector (#256)
Browse files Browse the repository at this point in the history
* Switched the disabled lang/theme selector color to white

Co-authored-by: octycs <[email protected]>
  • Loading branch information
CommanderStorm and octycs committed Nov 7, 2022
1 parent 66ede26 commit 4faa2bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion webclient/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ footer {
&:disabled {
background-color: $footer-setting-bg-disabled;
color: $footer-color;
color: $footer-setting-color-disabled;
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions webclient/src/assets/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ $autocomplete-comment-color: #777;
$autocomplete-filter-bg: #f8f8f8;
$autocomplete-filter-text: $autocomplete-comment-color;
$footer-color: #fafafa;
$footer-setting-color-disabled: $footer-color;
$footer-setting-bg-disabled: #999;
$feedback-overlay-bg: rgba(247, 248, 249, 75%);
$feedback-box-shadow: 0 .2rem .5rem rgba(48, 55, 66, 30%);
Expand Down Expand Up @@ -73,6 +74,7 @@ $code-bg: #fcf2f2;
$autocomplete-filter-bg: #232526;
$autocomplete-filter-text: #999;
$footer-color: #1b1c1e;
$footer-setting-color-disabled: #fff;
$footer-setting-bg-disabled: #333;
$feedback-overlay-bg: rgba(0, 0, 0, 70%);
$feedback-box-shadow: 0 .2rem .5rem rgba(0, 0, 0, 50%);
Expand Down

0 comments on commit 4faa2bd

Please sign in to comment.