199529a67d
- updated switch assets - new high contrast assets - use non-hardcoded bg color for dash - updated palette colors - add missing color definitions to hc - increase radii of many elements - update search entry style - align icon better in search entry - restyle panel popovers without arrow and add drop shadow - used theme colors in panel - fix some things with popover labels - new slider style - some light variant fixes - fixes to the calendar popover - day with event styles - better calendar-today.svg and dark variant - shorten calendary weekday header - saner padding - overhaul popover menu style - minor fixes to app grid and alt-tab switch - updated looking glass styles - nm-dialog adjustments - search results adjustments - expand out panel button hover styles - button drawing adjustments - adjust notifications area - update on-screen keyboard style - better keyboard symbolic icon assets - change keyboard symbolic icons to 24px - improved keyboard style - gave the keyboard word suggestions some styles - less obnoxious saner media control buttons - cleaned up the css for the dash - reworked the alt-tab switcher style - sync style on workspace switcher - adjusted dialog button style drawing - popover submenu redrawing adjustement Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2104>
28 lines
996 B
SCSS
28 lines
996 B
SCSS
/* Slider */
|
|
|
|
$slider_size: 16px;
|
|
|
|
.slider {
|
|
height: $slider_size;
|
|
// slider trough
|
|
-barlevel-height: 4px;
|
|
-barlevel-background-color: if($variant == 'light', transparentize($fg_color, 0.6), transparentize($fg_color, 0.8)); //background of the trough
|
|
-barlevel-border-width: 2px;
|
|
-barlevel-border-color: transparent; // trough border color
|
|
// fill style
|
|
-barlevel-active-background-color: $selected_bg_color;
|
|
-barlevel-active-border-color: transparent;
|
|
// overfill style (red in this case)
|
|
-barlevel-overdrive-color: $destructive_color;
|
|
-barlevel-overdrive-border-color: transparent; //trough border when red;
|
|
-barlevel-overdrive-separator-width:1px;
|
|
// slider handler
|
|
-slider-handle-radius: $slider_size * 0.5; // half the size of the size
|
|
-slider-handle-border-width: 0;
|
|
-slider-handle-border-color: transparent; // because 0 width
|
|
margin: 0 $base_padding;
|
|
|
|
color: $fg_color;
|
|
&:hover { color: $hover_bg_color; }
|
|
&:active { color: $active_bg_color; }
|
|
} |