Skip to content

Commit

Permalink
Fix odd rectangle in apps view
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-costas committed Mar 18, 2024
1 parent 42ee745 commit 8349757
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions _stylesheet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ $_dark_base_color: darken(desaturate(#241f31, 100%), 2%);
$base_color: if($variant =='light', #fff, $_dark_base_color);
$system_bg_color: $base_color;

$remark_color: rgba(238, 238, 236, 0.2);
$remark_color: rgba(238, 238, 238, 0.2);

// From https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/43.0/data/theme/gnome-shell-sass/widgets/_dash.scss
$dash_background_color: lighten($system_bg_color, 5%);
Expand Down Expand Up @@ -250,11 +250,14 @@ $dock_style_modes: [null, shrink, extended, extended-shrink];
}
}

.overview-tile .overview-icon, .show-apps .overview-icon {
.dash-item-container .overview-tile .overview-icon,
.dash-item-container .show-apps .overview-icon {
background-color: rgba(255,255,255,0);
}

.overview-tile:hover .overview-icon, .overview-tile.focused .overview-icon, .show-apps:hover .overview-icon {
.dash-item-container .overview-tile:hover .overview-icon,
.dash-item-container .overview-tile.focused .overview-icon,
.dash-item-container .show-apps:hover .overview-icon {
background-color: $remark_color;
}

Expand Down

0 comments on commit 8349757

Please sign in to comment.