This commit is contained in:
Vince
2021-04-21 18:40:03 +08:00
parent ffab45f5d7
commit df3c3790be
5 changed files with 34 additions and 15 deletions

View File

@@ -14,5 +14,8 @@ $nautilus_style: 'stable';
// Gnome-shell panel opacity
$panel_opacity: 0.15;
// Gnome-shell show apps button style
$showapps_button: 'bigsur';
// maximized window radius
$max_window_style: 'square';

View File

@@ -24,20 +24,26 @@ $dash_placeholder_size: 32px;
-x-offset: 8px;
}
%show_apps_bigsur {
.show-apps-icon {
color: transparent;
background-image: url("assets/view-app-grid.svg");
background-size: contain;
}
.overview-icon { color: transparent; }
&:hover,
&:active,
&:checked,
&:focus {
.show-apps-icon { color: transparent; }
}
}
// Show apps button
.show-apps .show-apps-icon {
color: transparent;
background-image: url("assets/view-app-grid.svg");
background-size: contain;
}
.show-apps .overview-icon {
color: transparent;
}
.show-apps:hover .show-apps-icon,
.show-apps:active .show-apps-icon,
.show-apps:checked .show-apps-icon,
.show-apps:focus .show-apps-icon {
color: transparent;
.show-apps {
@if $showapps_button == "bigsur" {
@extend %show_apps_bigsur;
}
}