mirror of
https://github.com/vinceliuice/WhiteSur-gtk-theme.git
synced 2025-06-04 13:13:04 +00:00
update
This commit is contained in:
parent
71e56a3082
commit
60cdab76a0
@ -1 +1,2 @@
|
||||
@import 'extensions-46-0/dash-to-dock';
|
||||
@import 'extensions-46-0/misc';
|
||||
|
@ -142,6 +142,8 @@
|
||||
|
||||
.app-grid-running-dot {
|
||||
background-color: if($variant == 'light', rgba(black, 0.75), rgba(white, 0.75));
|
||||
margin: 0 !important;
|
||||
offset-y: 0 !important;
|
||||
}
|
||||
|
||||
StWidget.focused .app-grid-running-dot {
|
||||
|
170
src/sass/gnome-shell/extensions-46-0/_misc.scss
Normal file
170
src/sass/gnome-shell/extensions-46-0/_misc.scss
Normal file
@ -0,0 +1,170 @@
|
||||
//
|
||||
// Dash to panel
|
||||
//
|
||||
#preview-menu {
|
||||
margin: 0 6px 6px !important;
|
||||
padding-bottom: 8px !important;
|
||||
|
||||
&, &:hover, &:selected {
|
||||
border-radius: $wm_radius !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// OpenWeather Extension
|
||||
//
|
||||
.openweather {
|
||||
&-button,
|
||||
&-button-action,
|
||||
&-menu-button-container,
|
||||
&-button-box {
|
||||
border: 1px solid transparent !important;
|
||||
}
|
||||
|
||||
&-provider {
|
||||
// generic text buttons are allocated with y-expand-ed
|
||||
padding: 0 16px;
|
||||
font-weight: 500;
|
||||
@include button(flat-normal);
|
||||
&:hover { @include button(flat-hover); }
|
||||
&:focus { @include button(flat-focus); }
|
||||
&:active { @include button(flat-active); }
|
||||
&:insensitive { @include button(flat-disabled); }
|
||||
border: 1px solid transparent !important;
|
||||
}
|
||||
|
||||
&-current {
|
||||
&-icon,
|
||||
&-summary,
|
||||
&-summarybox {
|
||||
background: none;
|
||||
color: $fg_color;
|
||||
}
|
||||
|
||||
&-databox-values {
|
||||
background: none;
|
||||
color: $hint_fg_color;
|
||||
}
|
||||
|
||||
&-databox-captions {
|
||||
background: none;
|
||||
color: $hint_fg_color;
|
||||
}
|
||||
}
|
||||
|
||||
&-forecast {
|
||||
&-icon,
|
||||
&-summary {
|
||||
background: none;
|
||||
color: $alt_fg_color;
|
||||
}
|
||||
|
||||
&-day,
|
||||
&-temperature {
|
||||
background: none;
|
||||
color: $hint_fg_color;
|
||||
}
|
||||
}
|
||||
|
||||
&-sunrise-icon,
|
||||
&-sunset-icon,
|
||||
&-build-icon { color: $alt_fg_color; }
|
||||
}
|
||||
|
||||
//
|
||||
// Gsconnect
|
||||
//
|
||||
.gsconnect-device-menu {
|
||||
background-color: if($variant == 'light', rgba(black, 0.05), rgba(white, 0.05));
|
||||
border-radius: $bt_radius;
|
||||
margin: 0 $container_padding / 2;
|
||||
padding: $bt_radius 0;
|
||||
box-shadow: none;
|
||||
|
||||
.popup-menu-item {
|
||||
margin: 0 $container_padding / 2 !important;
|
||||
height: 16px !important;
|
||||
border-radius: $bt_radius !important;
|
||||
|
||||
&:hover {
|
||||
color: $fg_color !important;
|
||||
background-color: rgba($fg_color, 0.1) !important;
|
||||
}
|
||||
|
||||
> :first-child {
|
||||
&:ltr { padding-left: 0 !important; margin-left: 0 !important; }
|
||||
&:rtl { padding-right: 0 !important; margin-right: 0 !important; }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Pop_OS cosmic widget styling
|
||||
//
|
||||
|
||||
.cosmic-solid-bg {
|
||||
background-color: #222222;
|
||||
}
|
||||
|
||||
.cosmic-dock {
|
||||
#dock {
|
||||
background-color: transparent;
|
||||
|
||||
.dash-background {
|
||||
background-color: $dash_bg;
|
||||
border: 1px solid if($variant == 'light', rgba(black, 0.08), rgba(black, 0.75));
|
||||
box-shadow: inset 0 0 0 1px rgba(white, 0.05);
|
||||
}
|
||||
}
|
||||
|
||||
&.extended {
|
||||
#dash {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
padding: 0 0;
|
||||
|
||||
.dash-background {
|
||||
border-radius: 0;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
// Places Menu
|
||||
//
|
||||
|
||||
.place-menu-item {
|
||||
&:ltr {
|
||||
padding-left: 0 !important;
|
||||
padding-right: $base_padding * 5 !important;
|
||||
}
|
||||
|
||||
&:rtl {
|
||||
padding-right: 0 !important;
|
||||
padding-left: $base_padding * 5 !important;
|
||||
}
|
||||
|
||||
StLabel { margin-left: $base_padding / 2; }
|
||||
|
||||
.button {
|
||||
border-radius: $circular_radius;
|
||||
padding: $base_padding / 2;
|
||||
|
||||
&:ltr { margin-left: 0 !important; }
|
||||
&:rtl { margin-right: 0 !important; }
|
||||
}
|
||||
|
||||
&:focus, &:hover, &:selected {
|
||||
.button {
|
||||
@extend %osd_button;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user