diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-04-21 21:10:17 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-04-22 06:45:28 -0400 |
commit | f8dcda80cfec7e68e1c231ae77039dec1ddbd694 (patch) | |
tree | 6c7895ae009c2158acfb91213372f98b3981b1f8 | |
parent | 01d81ffc17f08ee8ddf5e1d0b105303c649f1caf (diff) | |
download | gtk+-f8dcda80cfec7e68e1c231ae77039dec1ddbd694.tar.gz |
theme: Fix solid-csd borders
The selectors did not apply anymore.
Based on a patch by Alberts Muktupāvels.
-rw-r--r-- | gtk/theme/Default/_common.scss | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gtk/theme/Default/_common.scss b/gtk/theme/Default/_common.scss index 83692f5e97..2e6dade4dd 100644 --- a/gtk/theme/Default/_common.scss +++ b/gtk/theme/Default/_common.scss @@ -4068,16 +4068,16 @@ window { box-shadow: 0 1px 2px transparentize(black, 0.8), 0 0 0 1px transparentize($_wm_border, 0.1); } + } - &.solid-csd { - margin: 0; - padding: 0; - border: solid 1px $borders_color; - border-radius: 0; - box-shadow: inset 0 0 0 3px $headerbar_bg_color, inset 0 1px $top_hilight; + &.solid-csd { + margin: 0; + padding: 4px; + border: solid 1px $borders_color; + border-radius: 0; + box-shadow: inset 0 0 0 3px $headerbar_bg_color, inset 0 1px $top_hilight; - &:backdrop { box-shadow: inset 0 0 0 3px $backdrop_bg_color, inset 0 1px $top_hilight; } - } + &:backdrop { box-shadow: inset 0 0 0 3px $backdrop_bg_color, inset 0 1px $top_hilight; } } &.maximized, |