Gnome-shell: Improve hover color in icon grid

This commit is contained in:
EliverLara
2021-11-17 15:48:20 -06:00
parent 61be357868
commit cf96ebebc6
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -1529,7 +1529,7 @@ StScrollBar {
&:hover .overview-icon,
&:focus .overview-icon,
&:selected .overview-icon {
background-color: darken($main_dark, 3%);
background-color: lighten($bg_color, 7%);
transition-duration: 0ms;
border-image: none;
background-image: none;
@@ -1537,7 +1537,7 @@ StScrollBar {
&:active .overview-icon,
&:checked .overview-icon {
background-color: darken($main_dark, 10%);
background-color: lighten($bg_color, 7%);
box-shadow: inset $depth2;
color: $fg_color;
}
@@ -1563,7 +1563,7 @@ StScrollBar {
/* App Folders */
.app-well-app.app-folder {
background-color: $main_dark;
background-color: lighten($bg_color, 7%);
}
// expanded folder
.app-folder-dialog { //style like the dash
+3 -3
View File
@@ -1353,7 +1353,7 @@ StScrollBar {
.grid-search-result:hover .overview-icon,
.grid-search-result:focus .overview-icon,
.grid-search-result:selected .overview-icon {
background-color: #1d2128;
background-color: #3d4555;
transition-duration: 0ms;
border-image: none;
background-image: none; }
@@ -1364,7 +1364,7 @@ StScrollBar {
.show-apps:checked .overview-icon,
.grid-search-result:active .overview-icon,
.grid-search-result:checked .overview-icon {
background-color: #0e1013;
background-color: #3d4555;
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
color: #d8dee9; }
@@ -1389,7 +1389,7 @@ StScrollBar {
/* App Folders */
.app-well-app.app-folder {
background-color: #232831; }
background-color: #3d4555; }
.app-folder-dialog {
background-color: rgba(35, 40, 49, 0.95); }