diff options
author | Horst3180 | 2015-07-15 12:27:03 +0200 |
---|---|---|
committer | Horst3180 | 2015-07-15 12:27:03 +0200 |
commit | 5ba146d937acad414ac4539f8cf12c4dedbf033c (patch) | |
tree | 815cbc592c5df5daeb0b2de3ed9bf69ca26eb9fb /common/gtk-3.0/3.16/_common.scss | |
parent | 6ca46961b2975c5baaf098ed7dee7bd502e142c4 (diff) | |
download | solarc-theme-5ba146d937acad414ac4539f8cf12c4dedbf033c.tar.gz solarc-theme-5ba146d937acad414ac4539f8cf12c4dedbf033c.tar.xz solarc-theme-5ba146d937acad414ac4539f8cf12c4dedbf033c.zip |
add workaround for unreadable webkit buttons
Diffstat (limited to 'common/gtk-3.0/3.16/_common.scss')
-rw-r--r-- | common/gtk-3.0/3.16/_common.scss | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/gtk-3.0/3.16/_common.scss b/common/gtk-3.0/3.16/_common.scss index 5a38722..444a4aa 100644 --- a/common/gtk-3.0/3.16/_common.scss +++ b/common/gtk-3.0/3.16/_common.scss @@ -417,6 +417,12 @@ $_dot_color: $selected_bg_color; @include button(active); transition-duration: 50ms; } + + //Webkitgtk workaround start + &:active { color: $fg_color; } + &:active:hover, &:checked { color: $selected_fg_color; } + //Webkitgtk workaround end + &.flat:insensitive { @include button(undecorated); } |