diff options
author | Horst3180 | 2016-05-01 16:40:39 +0200 |
---|---|---|
committer | Horst3180 | 2016-05-01 16:40:39 +0200 |
commit | 3798cbce4f60b9add58ef7f39af111b6d441bbc2 (patch) | |
tree | 80a82d8c84aac884c4762cb4c75e9b35fc62d0cb /common/gtk-3.0/3.20/sass | |
parent | 813b0b3d9ea98ca6ede31e1dda34a0f41ee91e7a (diff) | |
download | solarc-theme-3798cbce4f60b9add58ef7f39af111b6d441bbc2.tar.gz solarc-theme-3798cbce4f60b9add58ef7f39af111b6d441bbc2.tar.xz solarc-theme-3798cbce4f60b9add58ef7f39af111b6d441bbc2.zip |
be more careful with notebook margins (fix #503)
Diffstat (limited to 'common/gtk-3.0/3.20/sass')
-rw-r--r-- | common/gtk-3.0/3.20/sass/_common.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/gtk-3.0/3.20/sass/_common.scss b/common/gtk-3.0/3.20/sass/_common.scss index 2fddf4e..bf4aef9 100644 --- a/common/gtk-3.0/3.20/sass/_common.scss +++ b/common/gtk-3.0/3.20/sass/_common.scss @@ -1735,7 +1735,12 @@ notebook { border: 1px solid $borders_color; > header { - margin: -1px; // ugly hack to hide the borders around the header + // ugly hack to hide the borders around the header + margin: -1px; + &.top { margin-bottom: 0; } + &.bottom { margin-top: 0; } + &.left { margin-right: 0; } + &.right { margin-left: 0; } &.top, &.bottom { padding-left: 0; padding-right: 0; } &.left, &.right { padding-top: 0; padding-bottom: 0; } |