Skip to content

Commit

Permalink
Fix: Theme - Mac background field color #851
Browse files Browse the repository at this point in the history
  • Loading branch information
black7375 committed Jan 7, 2024
1 parent 7f354b1 commit 350f20e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions css/leptonChrome.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion src/theme/system_default_theme/_mac.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@
--mac-selected-bgcolor: color-mix(in srgb, rgb(255, 255, 255) 15%, -moz-dialog);
--mac-field-bgcolor: Window;
--mac-panel-bgcolor: Menu;
--mac-sidebar-bgcolor: -moz-mac-source-list;
@if mode.isSTANDARD() {
--mac-sidebar-bgcolor: Window; // TODO: -moz-sidebar;
}
@if mode.isESR() {
--mac-sidebar-bgcolor: -moz-mac-source-list;
}
--mac-sidebar-hover-bgcolor: color-mix(in srgb, ButtonFace 60%, var(--mac-sidebar-bgcolor));
--mac-hover-bgcolor: Window;
--mac-disabled-bgcolor: transparent;
Expand Down

0 comments on commit 350f20e

Please sign in to comment.