Update gnome-shell 40.0 overview background style

This commit is contained in:
Vince 2021-04-19 20:33:44 +08:00
parent 2fccb36999
commit d0457be7d8
18 changed files with 25 additions and 8 deletions

1
.gitignore vendored
View File

@ -12,3 +12,4 @@ src/other/dash-to-dock/stylesheet-dark.css
parse-sass.sh
lib-release.sh
make-release.sh
stable-release/make-releases.sh

View File

@ -172,6 +172,8 @@ install_shelly() {
cp -r "${THEME_SRC_DIR}/assets/gnome-shell/common-assets/background-default.png" "${TARGET_DIR}/assets/background.png"
fi
cp -r "${THEME_SRC_DIR}/assets/gnome-shell/common-assets/background-blur.png" "${TARGET_DIR}/assets"
(
cd "${TARGET_DIR}"
mv -f "assets/no-events.svg" "no-events.svg"

Binary file not shown.

After

Width:  |  Height:  |  Size: 413 KiB

View File

@ -18,6 +18,7 @@
<file>assets/activities.svg</file>
<file>assets/view-app-grid.svg</file>
<file>assets/background.png</file>
<file>assets/background-blur.png</file>
<file>icons/scalable/actions/color-pick.svg</file>
<file>icons/scalable/status/eye-not-looking-symbolic.svg</file>
<file>icons/scalable/status/eye-open-negative-filled-symbolic.svg</file>

View File

@ -49,7 +49,7 @@ $app_grid_fg_color: #fff;
border-radius: $bd_radius * 4;
border: 0 solid rgba(white, 0.15);
padding: 12px;
background-color: rgba(#333333, 0.95);
background-color: rgba(black, 0.9);
& .folder-name-container {
padding: 24px 36px 0;

View File

@ -1,8 +1,9 @@
/* Entries */
StEntry {
padding: 8px;
margin: 3px;
StEntry, %entry {
min-height: $menuitem_size;
padding: 2px 10px;
margin: 2px;
border-width: 0;
color: $fg_color;
caret-color: $fg_color;

View File

@ -127,6 +127,10 @@ $popop_menuitem_radius: $wm_radius - 4px;
color: transparentize($fg_color, 0.3);
}
}
.search-entry {
@extend %entry;
}
}
// symbolic icons in popover
.popup-menu-arrow,

View File

@ -1,4 +1,4 @@
$dash_background_color: #3b3b3b;
$dash_background_color: rgba($panel_bg, $panel_opacity + 0.2);
$dash_placeholder_size: 32px;
$dash_padding: $base_padding + 4px; // 10px
$dash_spacing: $base_padding / 4;
@ -18,6 +18,11 @@ $dash_border_radius: $bt_radius * 2.5;
.overview-icon {
padding: $dash_padding / 2;
}
// Running app indicator (shown in dash)
.app-well-app-running-dot {
background-color: if($variant == 'light', rgba(black, 0.75), rgba(white, 0.75));
}
}
.dash-background {

View File

@ -4,4 +4,7 @@
#overviewGroup {
background-color: rgba($osd_bg_color, 1);
background-image: url("assets/background-blur.png");
background-repeat: no-repeat;
background-size: cover;
}

View File

@ -17,7 +17,7 @@ $window_close_button_padding: 3px;
// Close button
.window-close {
background-color: rgba($osd_bg_color, 1);
background-color: rgba($error_color, 1);
color: white;
border-radius: $window_close_button_size * 0.5 + $window_close_button_padding * 2;
padding: $window_close_button_padding;
@ -33,12 +33,12 @@ $window_close_button_padding: 3px;
&:hover {
color: white;
background-color: lighten(rgba($osd_bg_color, 1), 15%);
background-color: lighten(rgba($error_color, 1), 15%);
}
&:active {
color: white;
background-color: darken(rgba($osd_bg_color, 1), 5%);
background-color: darken(rgba($error_color, 1), 5%);
}
}