From 6d990e7aa5ba8aa37e9e98632e78c1add98dcb86 Mon Sep 17 00:00:00 2001 From: JosephMcc Date: Thu, 26 Dec 2024 06:24:33 -0800 Subject: [PATCH] theme: Fix more radius issues in GWL window previews (#12585) Missed a couple things in a previous commit. Should have them all now. Fixes: https://github.com/linuxmint/mint22.1-beta/issues/61 --- data/theme/cinnamon-sass/widgets/_windowlist.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/data/theme/cinnamon-sass/widgets/_windowlist.scss b/data/theme/cinnamon-sass/widgets/_windowlist.scss index 247fb2afc3..9461f3897c 100644 --- a/data/theme/cinnamon-sass/widgets/_windowlist.scss +++ b/data/theme/cinnamon-sass/widgets/_windowlist.scss @@ -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; }