diff options
author | Horst3180 | 2015-09-11 22:05:29 +0200 |
---|---|---|
committer | Horst3180 | 2015-09-11 22:05:29 +0200 |
commit | 200498e4ecc6877d6d70ac0784b0862e67840988 (patch) | |
tree | 83900687886d027efcc3c7a46e2a6b2ad336c3dc /common/gtk-3.0/3.14/sass | |
parent | 1d8d918f58a1cbe1f251ac26647370f330acb775 (diff) | |
download | solarc-theme-200498e4ecc6877d6d70ac0784b0862e67840988.tar.gz solarc-theme-200498e4ecc6877d6d70ac0784b0862e67840988.tar.xz solarc-theme-200498e4ecc6877d6d70ac0784b0862e67840988.zip |
remove custom combobox style
Diffstat (limited to 'common/gtk-3.0/3.14/sass')
-rw-r--r-- | common/gtk-3.0/3.14/sass/_common.scss | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/common/gtk-3.0/3.14/sass/_common.scss b/common/gtk-3.0/3.14/sass/_common.scss index a03fe63..eda6e01 100644 --- a/common/gtk-3.0/3.14/sass/_common.scss +++ b/common/gtk-3.0/3.14/sass/_common.scss @@ -928,25 +928,31 @@ GtkComboBox { &.combobox-entry .entry { @extend %linked; - border-right-style: none; - &:dir(rtl) { border-left-style: none; } + &:dir(ltr) { + border-right-style: none; + + &:focus { box-shadow: 1px 0 $selected_bg_color; } + } + &:dir(rtl) { + border-left-style: none; + + &:focus { box-shadow: -1px 0 $selected_bg_color; } + } } &.combobox-entry .button { @extend %linked; - color: transparentize($fg_color, 0.4); - background-color: $button_border; - border-color: $button_border; + &:dir(ltr) { + box-shadow: inset 1px 0 $button_border; - &:hover { - background-color: lighten($button_border, 5%); - border-color: lighten($button_border, 5%); + &:insensitive { box-shadow: inset 1px 0 transparentize($button_border, 0.45); } } + &:dir(rtl) { + box-shadow: inset -1px 0 $button_border; - &:active, &:checked { @include button(active); } - - &:insensitive { opacity: 0.5 } + &:insensitive { box-shadow: inset -1px 0 transparentize($button_border, 0.45); } + } } } |