Skip to content

Commit

Permalink
Fixed issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Jun 9, 2024
1 parent 7ecd0f6 commit fdf6f8c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/gnome-shell/sass/_extensions-46-0.scss
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@

.app-grid-running-dot {
background-color: $panel_hint_fg_color !important;
margin: 0 0 6px !important;
margin: 0 0 3px !important;
offset-y: 0 !important;
}

StWidget.focused {
Expand Down
10 changes: 6 additions & 4 deletions src/gnome-shell/sass/widgets/_dash-46.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ $dash_edge_offset: $container_margin * 3;
$dash_border_radius: $menu_radius + $dash_padding;

#dash {
margin-top: $dash_edge_offset;
// a bit of spacing so that dash doesn't touch the screen edges
padding-left: $container_padding;
padding-right: $container_padding;

// background behind item container
.dash-background {
Expand Down Expand Up @@ -72,15 +74,15 @@ $dash_border_radius: $menu_radius + $dash_padding;
// running app dot
.app-grid-running-dot {
// manually position the dot within the dash item
margin-bottom: $dash_padding + $dash_edge_offset - 3px; // 3px = size of dot (5px) subtracted from its translationY from appDisplay.js
offset-y: -$dash_padding;
}
}

// separator between pinned and running apps
.dash-separator {
width: 1px;
margin-left:$container_margin;
margin-right:$container_margin;
margin-left: $container_margin;
margin-right: $container_margin;
background-color: rgba(white, 0.15);
}

Expand Down

0 comments on commit fdf6f8c

Please sign in to comment.