diff options
author | Horst3180 | 2016-02-19 11:06:17 +0100 |
---|---|---|
committer | Horst3180 | 2016-02-19 11:06:17 +0100 |
commit | ad1ab4484b5f095307a6637198d97e5abccd868b (patch) | |
tree | 3b89419bead2ebe870bde32445827fdf06bea30d /common/gtk-3.0/3.20/sass | |
parent | 0412db89a17950ac0d3b1aaf497856c8c20b823e (diff) | |
download | solarc-theme-ad1ab4484b5f095307a6637198d97e5abccd868b.tar.gz solarc-theme-ad1ab4484b5f095307a6637198d97e5abccd868b.tar.xz solarc-theme-ad1ab4484b5f095307a6637198d97e5abccd868b.zip |
update headerbar comboboxes
Diffstat (limited to 'common/gtk-3.0/3.20/sass')
-rw-r--r-- | common/gtk-3.0/3.20/sass/_common.scss | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/common/gtk-3.0/3.20/sass/_common.scss b/common/gtk-3.0/3.20/sass/_common.scss index 3f6a638..684b81e 100644 --- a/common/gtk-3.0/3.20/sass/_common.scss +++ b/common/gtk-3.0/3.20/sass/_common.scss @@ -1181,13 +1181,13 @@ headerbar { combobox { &:disabled { color: transparentize($header_fg, 0.6); } - &.combobox-entry button { + &.linked button { @include entry(header-normal); &:hover { @include entry(header-focus); box-shadow: none; } &:disabled { @include entry(header-insensitive); } } - &.combobox-entry entry { + &.linked entry { &:dir(ltr) { border-right-style: none; @@ -1201,7 +1201,20 @@ headerbar { @if $variant=='light' and $darker=='false' { &:focus { box-shadow: -1px 0 $selected_bg_color; } } } } - + &.linked button.combo { + &:dir(ltr) { + &, &:hover, &:active, &:checked, &:disabled { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + } + &:dir(rtl) { + &, &:hover, &:active, &:checked, &:disabled { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + } + } } // Headerbar Switches |