diff options
author | Horst3180 | 2015-05-17 10:56:05 +0200 |
---|---|---|
committer | Horst3180 | 2015-05-17 10:56:05 +0200 |
commit | 7c73ea635abe3dad8f2383269156f32648599685 (patch) | |
tree | 8cdf97281244f96c9c04f204a7dbb0e9ac03047d /gtk-3.0/_common.scss | |
parent | 3c3f2529c3fe286080a2d3f3b74681ea7a97d30a (diff) | |
download | solarc-theme-7c73ea635abe3dad8f2383269156f32648599685.tar.gz solarc-theme-7c73ea635abe3dad8f2383269156f32648599685.tar.xz solarc-theme-7c73ea635abe3dad8f2383269156f32648599685.zip |
some fixes
Diffstat (limited to 'gtk-3.0/_common.scss')
-rw-r--r-- | gtk-3.0/_common.scss | 33 |
1 files changed, 8 insertions, 25 deletions
diff --git a/gtk-3.0/_common.scss b/gtk-3.0/_common.scss index 837c01d..aaf5bcd 100644 --- a/gtk-3.0/_common.scss +++ b/gtk-3.0/_common.scss @@ -1164,7 +1164,10 @@ GtkComboBox { &:backdrop { opacity: 0.85; } - &:focus { @include entry(header-focus); } + &:focus { + @include entry(header-focus); + background-clip: border-box; + } &:insensitive { @include entry(header-insensitive); } &:selected:focus { @@ -1200,7 +1203,7 @@ GtkComboBox { @extend %linked; } - // Suggested and Destructive Action buttons + // Header-bar Suggested and Destructive Action buttons @each $b_type, $b_color in (suggested-action, $suggested_color), (destructive-action, $destructive_color) { .button.#{$b_type} { @@ -1279,6 +1282,7 @@ GtkComboBox { &:backdrop { opacity: 0.75; } } + // Header-bar Scale .scale { &:backdrop { opacity: 0.75; } @@ -2634,6 +2638,8 @@ GtkVolumeButton.button { padding: 8px; } &.ssd { border-radius: 4px 4px 0 0; box-shadow: 0 0 0 1px $_wm_border; + + &.maximized { border-radius: 0; } } &.csd { &.popup, &.menu { @@ -2681,7 +2687,6 @@ GtkVolumeButton.button { padding: 8px; } &:active, &:checked { @include button(header-active); } - //&:backdrop { color: $wm_unfocused_title; } &.close, &.maximize, &.minimize { @@ -2713,28 +2718,6 @@ GtkVolumeButton.button { padding: 8px; } // catch all extend :) -%dark_button { - color: $header_fg; - background-color: lighten($header_bg, 12.5%); - - GtkLabel, GtkImage { color: $header_fg; } - - &:hover { - color: $header_fg; - background-color: lighten($header_bg, 15%); - - GtkLabel, GtkImage { color: $header_fg; } - } - &:active, &:checked { - color: $selected_bg_color; - background-image: none; - background-color: transparentize(darken($header_bg, 10%), 0.4); - border-color: transparentize(darken($header_bg, 14%), 0.4); - - GtkLabel, GtkImage { color: $selected_bg_color; } - } -} - %selected_items { background-image: none; background-color: $selected_bg_color; |