mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-02 19:36:13 +00:00
289 lines
6.5 KiB
SCSS
289 lines
6.5 KiB
SCSS
.quick-settings {
|
|
padding: $base_padding * 3 !important;
|
|
border-radius: 21px + $base_padding * 3 !important;
|
|
margin-top: $base_padding * 2 !important;
|
|
|
|
.icon-button, .button {
|
|
padding: $base_padding * 1.75;
|
|
|
|
StIcon { icon-size: $scalable_icon_size; }
|
|
}
|
|
}
|
|
|
|
.quick-settings-grid {
|
|
spacing-rows: $container_padding * 2;
|
|
spacing-columns: $container_padding * 2;
|
|
}
|
|
|
|
.quick-toggle, .quick-toggle-has-menu {
|
|
border-radius: $circular_radius;
|
|
min-width: 12em;
|
|
max-width: 12em;
|
|
min-height: $scalable_icon_size * 3;
|
|
border: none;
|
|
}
|
|
|
|
.quick-toggle {
|
|
background-color: $fill_color !important;
|
|
|
|
&:hover {
|
|
background-color: $divider_color !important;
|
|
}
|
|
|
|
&:active {
|
|
background-color: $visit_color !important;
|
|
}
|
|
|
|
&:checked {
|
|
background-color: $primary_color !important;
|
|
color: $light_fg_color;
|
|
|
|
&:hover {
|
|
color: $light_fg_color;
|
|
@if $shell_version == 'old' {
|
|
background-color: mix($text_color, $primary_color, 6%) !important;
|
|
} @else {
|
|
background-color: st-mix($text_color, $primary_color, 6%) !important;
|
|
}
|
|
}
|
|
|
|
&:active {
|
|
color: $light_fg_color;
|
|
@if $shell_version == 'old' {
|
|
background-color: mix($text_color, $primary_color, 15%) !important;
|
|
} @else {
|
|
background-color: st-mix($text_color, $primary_color, 15%) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
& > StBoxLayout { spacing: $base_padding * 1.5; }
|
|
|
|
/* Move padding into the box; this is to allow menu arrows
|
|
to extend to the border */
|
|
&.button { padding: 0; }
|
|
& > StBoxLayout { padding: 0 $base_padding * 2; }
|
|
&:ltr > StBoxLayout { padding-left: $base_padding * 4; }
|
|
&:rtl > StBoxLayout { padding-right: $base_padding * 4; }
|
|
|
|
.quick-toggle-title {
|
|
@extend %heading;
|
|
}
|
|
|
|
.quick-toggle-subtitle {
|
|
@extend %caption;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.quick-toggle-icon { icon-size: $scalable_icon_size; }
|
|
}
|
|
|
|
.quick-toggle-has-menu {
|
|
& .quick-toggle {
|
|
min-width: auto;
|
|
max-width: auto;
|
|
|
|
&:ltr { border-radius: $circular_radius 0 0 $circular_radius; }
|
|
&:ltr > StBoxLayout { padding-right: $base_padding * 2; }
|
|
&:rtl { border-radius: 0 $circular_radius $circular_radius 0; }
|
|
&:rtr > StBoxLayout { padding-left: $base_padding * 2; }
|
|
|
|
&:ltr:last-child { border-radius: $circular_radius; }
|
|
&:rtl:last-child { border-radius: $circular_radius; }
|
|
}
|
|
|
|
& .quick-toggle-menu-button {
|
|
padding: $scaled_padding $scaled_padding * 2;
|
|
border: none;
|
|
background-color: $fill_color !important;
|
|
|
|
&:hover {
|
|
background-color: $divider_color !important;
|
|
}
|
|
|
|
&:active {
|
|
background-color: $visit_color !important;
|
|
}
|
|
|
|
&:checked {
|
|
background-color: $primary_color !important;
|
|
color: $light_fg_color;
|
|
|
|
&:hover {
|
|
color: $light_fg_color;
|
|
@if $shell_version == 'old' {
|
|
background-color: mix($text_color, $primary_color, 6%) !important;
|
|
} @else {
|
|
background-color: st-mix($text_color, $primary_color, 6%) !important;
|
|
}
|
|
}
|
|
|
|
&:active {
|
|
color: $light_fg_color;
|
|
@if $shell_version == 'old' {
|
|
background-color: mix($text_color, $primary_color, 15%) !important;
|
|
} @else {
|
|
background-color: st-mix($text_color, $primary_color, 15%) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:ltr {
|
|
border-radius: 0 $circular_radius $circular_radius 0;
|
|
border-left-width: 0;
|
|
}
|
|
|
|
&:rtl {
|
|
border-radius: $circular_radius 0 0 $circular_radius;
|
|
border-right-width: 0;
|
|
}
|
|
}
|
|
|
|
& .quick-toggle-separator {
|
|
width: 0;
|
|
}
|
|
}
|
|
|
|
.quick-slider {
|
|
& > StBoxLayout { spacing: $base_padding; }
|
|
|
|
.icon-button { padding: $scaled_padding * 1.5; }
|
|
|
|
.slider-bin {
|
|
&:focus { @include button(focus); }
|
|
min-height: 16px; // slider size
|
|
padding: $base_padding;
|
|
border-radius: $circular_radius;
|
|
}
|
|
}
|
|
|
|
.quick-toggle-menu {
|
|
background-color: $menu_bg !important;
|
|
color: $text_color !important;
|
|
border-radius: $base_border_radius * 3;
|
|
padding: $base_padding * 3;
|
|
margin: $base_padding * 2 $base_padding * 6 0;
|
|
border: none !important;
|
|
|
|
.popup-menu-item {
|
|
border-radius: $circular_radius !important;
|
|
min-height: 20px;
|
|
|
|
&:focus, &:hover, &.selected {
|
|
color: $text_color !important;
|
|
background-color: $divider_color !important;
|
|
}
|
|
|
|
> StIcon { -st-icon-style: symbolic; }
|
|
}
|
|
|
|
& .header {
|
|
spacing-rows: 0.5 * $base_padding;
|
|
spacing-columns: $base_padding * 2;
|
|
padding-bottom: 2 * $base_padding;
|
|
|
|
& .icon {
|
|
icon-size: $base_icon_size * 1.5; // a non-standard symbolic size but ok
|
|
border-radius: $circular_radius;
|
|
padding: 1.5 * $base_padding;
|
|
background-color: transparentize($fg_color, 0.8);
|
|
|
|
&.active {
|
|
background-color: $selected_bg_color;
|
|
color: $selected_fg_color;
|
|
}
|
|
}
|
|
|
|
& .title {
|
|
@extend %title_3;
|
|
}
|
|
|
|
& .subtitle {
|
|
@extend %caption_heading;
|
|
}
|
|
}
|
|
}
|
|
|
|
.quick-settings-system-item {
|
|
& > StBoxLayout { spacing: 2 * $base_padding; }
|
|
|
|
.icon-button {
|
|
background-color: $fill_color;
|
|
color: $text_color;
|
|
border-radius: $circular_radius;
|
|
min-height: $menuitem_size !important;
|
|
min-width: $menuitem_size !important;
|
|
// padding: $container_padding;
|
|
|
|
&:hover { @include button(flat-hover); }
|
|
&:active { @include button(flat-active); }
|
|
|
|
> StIcon {
|
|
-st-icon-style: symbolic;
|
|
icon-size: $base_icon_size;
|
|
}
|
|
}
|
|
|
|
& .power-item {
|
|
min-height: 0;
|
|
min-width: 0;
|
|
|
|
&:insensitive {
|
|
@include button(normal);
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
|
|
.nm-network-item {
|
|
.wireless-secure-icon { icon-size: 0.5 * $base_icon_size; }
|
|
}
|
|
|
|
.bt-device-item {
|
|
.popup-menu-icon { -st-icon-style: symbolic; }
|
|
}
|
|
|
|
.bt-menu-placeholder.popup-menu-item {
|
|
@extend %title_4;
|
|
text-align: center;
|
|
|
|
padding: 2em 4em;
|
|
}
|
|
|
|
.device-subtitle { color: transparentize($fg_color, 0.5); }
|
|
|
|
.keyboard-brightness-level {
|
|
spacing: $base_padding;
|
|
|
|
.button:checked { @extend %default_button; }
|
|
}
|
|
|
|
// background apps
|
|
|
|
.background-apps-quick-toggle {
|
|
min-height: 40px;
|
|
background-color: transparent;
|
|
|
|
& StIcon { icon-size: $base_icon_size !important; }
|
|
}
|
|
|
|
.background-app-item {
|
|
& .title { @extend %heading; }
|
|
& .subtitle { @extend %caption; }
|
|
& .popup-menu-icon {
|
|
icon-size: $base_icon_size * 1.5 !important;
|
|
-st-icon-style: regular !important;
|
|
}
|
|
|
|
& .icon-button {
|
|
@extend .icon-button;
|
|
padding: $base_padding;
|
|
}
|
|
|
|
& .spinner {
|
|
padding: $base_padding;
|
|
}
|
|
|
|
&.popup-inactive-menu-item { color: $fg_color; }
|
|
}
|