diff options
author | Horst3180 | 2015-09-09 21:19:57 +0200 |
---|---|---|
committer | Horst3180 | 2015-09-09 23:50:14 +0200 |
commit | 4097e62e012ed929335ddde7fc9719ee763d731f (patch) | |
tree | 8c7633484a9f55fec0cf59124be4e3002da86729 /common/gtk-3.0/3.16/sass/_applications.scss | |
parent | e0da453e5255a7efeaa23b080dcc592517c09f86 (diff) | |
download | solarc-theme-4097e62e012ed929335ddde7fc9719ee763d731f.tar.gz solarc-theme-4097e62e012ed929335ddde7fc9719ee763d731f.tar.xz solarc-theme-4097e62e012ed929335ddde7fc9719ee763d731f.zip |
tweak color scheme and window buttons
Diffstat (limited to 'common/gtk-3.0/3.16/sass/_applications.scss')
-rw-r--r-- | common/gtk-3.0/3.16/sass/_applications.scss | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/common/gtk-3.0/3.16/sass/_applications.scss b/common/gtk-3.0/3.16/sass/_applications.scss index 7dc0323..b408053 100644 --- a/common/gtk-3.0/3.16/sass/_applications.scss +++ b/common/gtk-3.0/3.16/sass/_applications.scss @@ -57,9 +57,6 @@ SushiFontWidget { // // GNOME Terminal // -$terminal_bg: #2A2F36; -$terminal_fg: white; - TerminalWindow { .background { background-color: transparent; @@ -157,12 +154,34 @@ NemoWindow GtkSeparator.separator.horizontal { } NemoWindow .primary-toolbar NemoPathBar.linked > .button { + $_linked_separator_color: $header_button_border; + @include button(header-hover); - &:hover { border-color: $selected_bg_color; } + &:hover { background-color: lighten($header_button_bg, 15%); } &:active, &:checked { @include button(header-active); } + &:insensitive { color: transparentize($header_fg, 0.4); } @extend %linked; + + &:hover { + box-shadow: inset 1px 0 $_linked_separator_color, + inset -1px 0 $_linked_separator_color; + } + &:active, &:checked { box-shadow: none; } + + &:first-child { + &:hover { box-shadow: inset -1px 0 $_linked_separator_color; } + &:active, &:checked { box-shadow: none; } + } + &:last-child { + &:hover { box-shadow: inset 1px 0 $_linked_separator_color; } + &:active, &:checked { box-shadow: none; } + } + &:only-child { + &:hover { box-shadow: none; } + &:active, &:checked { box-shadow: none; } + } } // @@ -283,7 +302,7 @@ GbSearchBox.linked { @include entry(header-normal); - &:hover { @include entry(header-normal); border-color: $selected_bg_color; } + &:hover { @include entry(header-focus); } &:active, &:checked { @include entry(header-focus); } &:insensitive { @include entry(header-insensitive); } } |