Skip to content

Commit

Permalink
theme: Fix more radius issues in GWL window previews (#12585)
Browse files Browse the repository at this point in the history
Missed a couple things in a previous commit. Should have them all now.

Fixes: linuxmint/mint22.1-beta#61
  • Loading branch information
JosephMcc authored Dec 26, 2024
1 parent d8f06dc commit 6d990e7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion data/theme/cinnamon-sass/widgets/_windowlist.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,17 @@

&:outlined {
border: 2px solid transparentize($fg_color, 0.5);

&:first-child { border-radius: $base_border_radius 0 0 $base_border_radius; }
&:last-child { border-radius: 0 $base_border_radius $base_border_radius 0; }
}

&:selected { background-color: $light_bg_color; }
&:selected {
background-color: $light_bg_color;

&:first-child { border-radius: $base_border_radius 0 0 $base_border_radius; }
&:last-child { border-radius: 0 $base_border_radius $base_border_radius 0; }
}
}

.thumbnail { width: 256px; }
Expand Down

0 comments on commit 6d990e7

Please sign in to comment.