style: Fix missing light theme color definitions

- Closes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/7267

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3062>
This commit is contained in:
Sam Hewitt 2023-12-18 10:21:03 -03:30 committed by Marge Bot
parent 71164a544f
commit b4c15d5a7b
2 changed files with 2 additions and 1 deletions

View File

@ -276,6 +276,7 @@
// Helper mixin for button-like elements with an icon // Helper mixin for button-like elements with an icon
@mixin tile_button($color, $flat: true) { @mixin tile_button($color, $flat: true) {
@extend %tile; @extend %tile;
color: $color;
// focus-color // focus-color
$fc: mix($selected_bg_color, $color, 90%); $fc: mix($selected_bg_color, $color, 90%);

View File

@ -122,7 +122,7 @@ $page_indicator_size: 10px;
width: $page_indicator_size; width: $page_indicator_size;
height: $page_indicator_size; height: $page_indicator_size;
border-radius: $forced_circular_radius; border-radius: $forced_circular_radius;
background-color: white; background-color: $system_fg_color;
transition-duration: 400ms; transition-duration: 400ms;
} }
} }