[gnome-shell] theme: Simplify .overview-icon styling
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] theme: Simplify .overview-icon styling
- Date: Thu, 6 Feb 2020 20:41:57 +0000 (UTC)
commit 60f12da3cdf3518218aeda8600b1a40076910f45
Author: nana-4 <hnmaigo gmail com>
Date: Sat Jan 25 17:53:17 2020 +0900
theme: Simplify .overview-icon styling
This reduces duplicate code by using overview-icon() and %app-well-app
to improve maintainability.
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/957
data/theme/gnome-shell-sass/_common.scss | 6 +--
data/theme/gnome-shell-sass/_drawing.scss | 35 +++++++++++++++
data/theme/gnome-shell-sass/widgets/_app-grid.scss | 52 +++-------------------
data/theme/gnome-shell-sass/widgets/_dash.scss | 27 +----------
.../gnome-shell-sass/widgets/_search-results.scss | 28 +-----------
5 files changed, 44 insertions(+), 104 deletions(-)
---
diff --git a/data/theme/gnome-shell-sass/_common.scss b/data/theme/gnome-shell-sass/_common.scss
index d218557871..197b4fcb95 100644
--- a/data/theme/gnome-shell-sass/_common.scss
+++ b/data/theme/gnome-shell-sass/_common.scss
@@ -91,13 +91,9 @@ stage {
// icon tiles
%icon_tile {
- background-color: transparent; // no background
- color: $osd_fg_color;
border-radius: $base_border_radius + 4px;
padding: $base_padding;
- border-width: 2px;
- border-style: solid;
- border-color: transparent;
+ border: 2px solid transparent;
transition-duration: 100ms;
text-align: center;
}
diff --git a/data/theme/gnome-shell-sass/_drawing.scss b/data/theme/gnome-shell-sass/_drawing.scss
index 44323b3ce9..4c0383e363 100644
--- a/data/theme/gnome-shell-sass/_drawing.scss
+++ b/data/theme/gnome-shell-sass/_drawing.scss
@@ -194,3 +194,38 @@
icon-shadow: none;
}
}
+
+// overview icons
+@mixin overview-icon($color) {
+ .overview-icon {
+ @extend %icon_tile;
+ color: $color;
+ }
+
+ &:hover,
+ &:selected {
+ .overview-icon {
+ background-color: transparentize($color, .9);
+ }
+ }
+
+ &:focus {
+ .overview-icon {
+ background-color: transparentize($color, .7);
+ // border-color: $selected_bg_color;
+ }
+ }
+
+ &:drop {
+ .overview-icon {
+ background-color: transparentize($selected_bg_color, .15);
+ }
+ }
+
+ &:active,
+ &:checked {
+ .overview-icon {
+ background-color: transparentize(darken($osd_bg_color, 10%), .5);
+ }
+ }
+}
diff --git a/data/theme/gnome-shell-sass/widgets/_app-grid.scss
b/data/theme/gnome-shell-sass/widgets/_app-grid.scss
index e3e289d8a4..cc2b7a7e72 100644
--- a/data/theme/gnome-shell-sass/widgets/_app-grid.scss
+++ b/data/theme/gnome-shell-sass/widgets/_app-grid.scss
@@ -33,55 +33,18 @@ $app_grid_fg_color: #fff;
// Icon tiles in the app grid
.app-well-app,
-.app-folder {
-
- .overview-icon {
- @extend %icon_tile;
- color: $app_grid_fg_color;
- }
+%app-well-app {
+ @include overview-icon($app_grid_fg_color);
- &:selected {
- .overview-icon {
- background-color: transparentize($osd_bg_color,0.7);
- color: $app_grid_fg_color;
- }
- }
-
- &:hover,
- &:focus,
- &:selected {
- .overview-icon {
- background-color: transparentize($osd_fg_color,0.9);
- color: $osd_fg_color;
- }
- }
-
- &:focus {
- .overview-icon {
- background-color: transparentize($osd_fg_color,0.7);
- // border-color: $selected_bg_color;
- color: $app_grid_fg_color;
- }
- }
-
- &:drop {
- .overview-icon {
- background-color: transparentize($selected_bg_color,.15);
- }
- }
-
- &:active,
- &:checked {
- .overview-icon {
- background-color: transparentize(darken($osd_bg_color,10%), 0.5);
- }
+ > .overview-icon.overview-icon-with-label {
+ padding: 10px 8px 5px 8px;
+ spacing: $base_spacing;
}
}
/* App Folders */
.app-folder {
.overview-icon {
- @extend %icon_tile;
}
}
@@ -178,11 +141,6 @@ $app_grid_fg_color: #fff;
padding: 0px 88px 10px 88px;
}
-.app-well-app > .overview-icon.overview-icon-with-label {
- padding: 10px 8px 5px 8px;
- spacing: $base_spacing;
-}
-
// Label when no frequent apps
.no-frequent-applications-label { @extend %status_text; }
diff --git a/data/theme/gnome-shell-sass/widgets/_dash.scss b/data/theme/gnome-shell-sass/widgets/_dash.scss
index 8de114b594..c639fad6a2 100644
--- a/data/theme/gnome-shell-sass/widgets/_dash.scss
+++ b/data/theme/gnome-shell-sass/widgets/_dash.scss
@@ -48,36 +48,13 @@ $dash_border_radius: $modal_radius * 1.5;
// Show apps button
.show-apps {
- color: $osd_fg_color;
-
- & .overview-icon {
- @extend %icon_tile;
- color: $osd_fg_color;
- }
+ @include overview-icon($osd_fg_color);
- &:hover,
&:focus,
- &:selected {
- .overview-icon {
- background-color: transparentize($osd_fg_color,0.9);
- color: $osd_fg_color;
- }
- }
-
- &:drop .overview-icon {
- background-color: transparentize($selected_bg_color,.15);
- }
-
- &:active, &:checked {
+ &:checked {
.overview-icon {
background-color: darken($osd_bg_color,10%);
- }
- }
-
- &:checked, &:focus {
- .show-apps-icon {
color: $fg_color;
- transition-duration: 100ms;
}
}
}
diff --git a/data/theme/gnome-shell-sass/widgets/_search-results.scss
b/data/theme/gnome-shell-sass/widgets/_search-results.scss
index 600aa83bc9..1c53abfc2d 100644
--- a/data/theme/gnome-shell-sass/widgets/_search-results.scss
+++ b/data/theme/gnome-shell-sass/widgets/_search-results.scss
@@ -41,33 +41,7 @@
// Search results with icons
.grid-search-result {
- > .overview-icon {
- @extend %icon_tile;
- color: $osd_fg_color;
- }
-
- > .overview-icon.overview-icon-with-label {
- padding: 10px 8px 5px 8px;
- spacing: $base_spacing;
- }
-
- &:hover,
- &:focus,
- &:selected {
- .overview-icon {
- background-color: transparentize($osd_bg_color,0.8);
- color: $osd_fg_color;
- }
- }
-
- &:drop .overview-icon {
- background-color: transparentize($selected_bg_color,.15);
- }
-
- &:active .overview-icon,
- &:checked .overview-icon {
- background-color: transparentize(darken($osd_bg_color,10%), 0.5);
- }
+ @extend %app-well-app;
}
// search result provider
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]