83 lines
1.6 KiB
SCSS
Raw Normal View History

2020-12-18 22:35:46 +08:00
// Simple Dock
#dash:desktop {
2021-05-14 23:13:25 +08:00
background-color: $panel_bg;
2020-12-18 22:35:46 +08:00
}
// OpenWeather Extension
.openweather {
&-button,
&-button-action,
&-menu-button-container,
&-button-box {
2021-05-02 15:00:52 +08:00
border: 1px solid transparent !important;
2020-12-18 22:35:46 +08:00
}
&-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); }
2021-05-02 15:00:52 +08:00
border: 1px solid transparent !important;
2020-12-18 22:35:46 +08:00
}
&-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; }
}
2021-07-03 12:01:06 +08:00
//
// Pop_OS cosmic widget styling
//
.cosmic-dock {
#dock {
background-color: $dash_bg;
border-radius: $dash_radius;
border: 1px solid if($variant == 'light', rgba(black, 0.03), rgba(black, 0.35));
box-shadow: inset 0 0 0 1px rgba(white, 0.05);
padding: $container_padding;
margin: 6px !important;
}
2020-12-18 22:35:46 +08:00
2021-07-03 12:01:06 +08:00
&.extended #dock {
border-radius: 0 !important;
margin: 0 !important;
2020-12-18 22:35:46 +08:00
}
}