diff options
author | Horst3180 | 2016-08-31 13:35:50 +0200 |
---|---|---|
committer | Horst3180 | 2016-08-31 13:35:50 +0200 |
commit | 57248f7aaff30b7242f2f62877707695a1f8be5e (patch) | |
tree | c0621e59d1ce42caed993077533ad0e86db0eafa /common/gtk-3.0/3.20/sass | |
parent | 99d645f8087701b18b21ca9e0cb882bfe622ea6a (diff) | |
download | solarc-theme-57248f7aaff30b7242f2f62877707695a1f8be5e.tar.gz solarc-theme-57248f7aaff30b7242f2f62877707695a1f8be5e.tar.xz solarc-theme-57248f7aaff30b7242f2f62877707695a1f8be5e.zip |
clean up calendar styling
Diffstat (limited to 'common/gtk-3.0/3.20/sass')
-rw-r--r-- | common/gtk-3.0/3.20/sass/_common.scss | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/common/gtk-3.0/3.20/sass/_common.scss b/common/gtk-3.0/3.20/sass/_common.scss index 649605c..4554de6 100644 --- a/common/gtk-3.0/3.20/sass/_common.scss +++ b/common/gtk-3.0/3.20/sass/_common.scss @@ -2509,28 +2509,25 @@ calendar { padding: 2px; &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; + @extend %selected_items; border-radius: 1.5px; } + &.header { color: $fg_color; border: none; - border-radius: 0; } - &.button, &.button:focus { + + &.button { + @extend %undecorated_button; + color: transparentize($fg_color,0.55); - @include button(undecorated); - &:hover { - color: $fg_color; - } - &:disabled { - color: $insensitive_fg_color; - background-color: transparent; - background-image: none; - } + &:hover { color: $fg_color; } + + &:disabled { color: $insensitive_fg_color; } } + &:indeterminate { color: gtkalpha(currentColor,0.55); } &.highlight { color: $fg_color; } } |