diff options
author | Horst3180 | 2015-07-09 14:20:47 +0200 |
---|---|---|
committer | Horst3180 | 2015-07-09 14:25:30 +0200 |
commit | a68987ad7d8eeea4de5e813a0c9e0703d05b65a6 (patch) | |
tree | b17c458ec0d1016e928a4e3aed8578f962f21fd2 /common/gtk-3.0/3.16/_common.scss | |
parent | df68c96436454764b1d5b28201c306c68dae0d6b (diff) | |
download | solarc-theme-a68987ad7d8eeea4de5e813a0c9e0703d05b65a6.tar.gz solarc-theme-a68987ad7d8eeea4de5e813a0c9e0703d05b65a6.tar.xz solarc-theme-a68987ad7d8eeea4de5e813a0c9e0703d05b65a6.zip |
fix background-clip on buttons and entries
Diffstat (limited to 'common/gtk-3.0/3.16/_common.scss')
-rw-r--r-- | common/gtk-3.0/3.16/_common.scss | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/common/gtk-3.0/3.16/_common.scss b/common/gtk-3.0/3.16/_common.scss index 1b15c33..b4832dc 100644 --- a/common/gtk-3.0/3.16/_common.scss +++ b/common/gtk-3.0/3.16/_common.scss @@ -232,7 +232,10 @@ GtkTextView { // This will get overridden by .view, needed by gedit line numbers border-radius: 0; } - &:focus { @include entry(focus); } + &:focus { + background-clip: border-box; + @include entry(focus); + } &:insensitive { @include entry(insensitive); } @@ -410,6 +413,7 @@ $_dot_color: $selected_bg_color; -gtk-image-effect: highlight; } &:active, &:checked { + background-clip: border-box; @include button(active); transition-duration: 50ms; } @@ -1189,7 +1193,6 @@ GtkComboBox { &:focus { @include entry(header-focus); - background-clip: border-box; &.image { color: $selected_fg_color; } } |