This commit is contained in:
Vince 2021-07-18 21:20:59 +08:00
parent 5d32cc41df
commit 3f0490ab7a
6 changed files with 16 additions and 4 deletions

View file

@ -6,6 +6,14 @@
%app-well-app { %app-well-app {
@include font(body-1); @include font(body-1);
.overview-icon.overview-icon-with-label {
padding: 10px 8px 5px 8px;
> StBoxLayout {
spacing: $base_spacing;
}
}
& .overview-icon { & .overview-icon {
color: $light_fg_color; color: $light_fg_color;
border-radius: $wm_radius; border-radius: $wm_radius;

View file

@ -5,7 +5,7 @@
border-radius: $wm_radius; border-radius: $wm_radius;
border: solid rgba(black, 0.75); border: solid rgba(black, 0.75);
border-width: if($variant=='light', 0, 1px); border-width: if($variant=='light', 0, 1px);
box-shadow: 3px 3px 8px -3px rgba(black, 0.65); box-shadow: 3px 3px 8px -3px rgba(black, if($variant=='light', 0.35, 0.5));
} }
%last_dialog_button { %last_dialog_button {

View file

@ -5,7 +5,7 @@
background-color: $panel_bg; background-color: $panel_bg;
font-weight: normal; font-weight: normal;
height: $menuitem_size - 4px; height: $menuitem_size - 4px;
box-shadow: 0 5px 16px rgba(black, 0.35); box-shadow: 0 5px 16px rgba(black, 0.05);
color: $panel_fg; color: $panel_fg;
font-feature-settings: "tnum"; font-feature-settings: "tnum";
transition-duration: 250ms; transition-duration: 250ms;

View file

@ -24,9 +24,9 @@ $popop_menuitem_radius: $wm_radius - 4px;
.popup-menu-content { .popup-menu-content {
padding: 6px 0 !important; padding: 6px 0 !important;
@extend %theme_dialogs; @extend %theme_dialogs;
box-shadow: 0 8px 16px 0 rgba(black, 0.25); box-shadow: 0 5px 10px 0 rgba(black, 0.18);
border: 1px solid if($variant=='light', rgba(black, 0), rgba(black, 0.75)); border: 1px solid if($variant=='light', rgba(black, 0), rgba(black, 0.75));
margin: 4px 8px 4px 12px !important; margin: 4px 10px 17px 12px !important;
@include font(body-1); @include font(body-1);
} }

View file

@ -9,15 +9,18 @@
selection-background-color: $light_track_color; selection-background-color: $light_track_color;
selected-color: $light_alt_fg_color; selected-color: $light_alt_fg_color;
@include search_entry(normal, $fc:$light_track_color); @include search_entry(normal, $fc:$light_track_color);
box-shadow: none;
&:hover { &:hover {
@include search_entry(hover, $fc:$light_alt_fg_color); @include search_entry(hover, $fc:$light_alt_fg_color);
color: $light_alt_fg_color; color: $light_alt_fg_color;
box-shadow: none;
} }
&:focus { &:focus {
@include search_entry(focus, $fc:$light_alt_fg_color); @include search_entry(focus, $fc:$light_alt_fg_color);
color: $light_alt_fg_color; color: $light_alt_fg_color;
box-shadow: none;
} }
.search-entry-icon { .search-entry-icon {

View file

@ -112,6 +112,7 @@ while [[ $# -gt 0 ]]; do
fi; shift ;; fi; shift ;;
-g|--gdm) -g|--gdm)
gdm="true"; full_sudo "${1}" gdm="true"; full_sudo "${1}"
showapps_normal="true" # use normal showapps icon
if ! has_command gdm && ! has_command gdm3 && [[ ! -e /usr/sbin/gdm3 ]]; then if ! has_command gdm && ! has_command gdm3 && [[ ! -e /usr/sbin/gdm3 ]]; then
prompt -e "'${1}' ERROR: There's no GDM installed in your system" prompt -e "'${1}' ERROR: There's no GDM installed in your system"