This commit is contained in:
Vince 2021-07-03 18:27:53 +08:00
parent 78b22d23f6
commit d489aae7b2
3 changed files with 33 additions and 6 deletions

View file

@ -3,7 +3,7 @@
#panel { #panel {
background-color: $panel_bg; background-color: $panel_bg;
font-weight: if($laptop == 'true', normal, bold); font-weight: bold;
height: $menuitem_size; height: $menuitem_size;
box-shadow: 0 5px 16px rgba(black, 0.35); box-shadow: 0 5px 16px rgba(black, 0.35);
color: $panel_fg; color: $panel_fg;
@ -55,7 +55,7 @@
.panel-button { .panel-button {
-natural-hpadding: 8px; -natural-hpadding: 8px;
-minimum-hpadding: 8px; -minimum-hpadding: 8px;
font-weight: if($laptop == 'true', normal, bold); font-weight: bold;
color: $panel_fg; color: $panel_fg;
transition-duration: 150ms; transition-duration: 150ms;
border-radius: $bt_radius; border-radius: $bt_radius;

View file

@ -62,6 +62,32 @@
&-build-icon { color: $alt_fg_color; } &-build-icon { color: $alt_fg_color; }
} }
//
// Gsconnect
//
.gsconnect-device-menu {
background-color: if($variant == 'light', white, rgba(white, 0.06));
border-radius: $bt_radius;
margin: $container_padding / 2;
padding: $bt_radius 0;
box-shadow: 1px 2px 3px rgba(black, if($variant == 'light', 0.08, 0.35));
.popup-menu-item {
height: 16px !important;
border-radius: 0 !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 // Pop_OS cosmic widget styling
// //

View file

@ -210,8 +210,9 @@ window.background.chromium {
min-height: 16px; min-height: 16px;
margin: 0; // unset margins margin: 0; // unset margins
padding: 0 0; padding: 0 0;
background-size: auto; background-size: 16px 16px;
color: transparent; // hide stock icons color: transparent; // hide stock icons
border: none;
} }
} }
@ -228,15 +229,15 @@ window.background.chromium {
entry.chromium { entry.chromium {
&, &:focus { // overrides standard borders &, &:focus { // overrides standard borders
border-image: none; border-image: none;
border: 1px solid $solid_borders_color;
background-color: $chrome_bg_color;
color: $chrome_fg_color; color: $chrome_fg_color;
} }
background-color: rgba($chrome_fg_color, 0.06);
} }
// internal region of toolbar's entry widget // internal region of toolbar's entry widget
> textview.view, textview { > textview.view, textview {
background-color: $chrome_bg_color; background-color: rgba($chrome_fg_color, 0.06);
color: $chrome_fg_color; color: $chrome_fg_color;
} }