diff options
author | Horst3180 | 2015-09-12 00:44:58 +0200 |
---|---|---|
committer | Horst3180 | 2015-09-12 01:01:23 +0200 |
commit | ed94af21c3dfe8d457d1a008d7ac9f6a9fa9fc53 (patch) | |
tree | 0d84c7c31098ae141607186cf7aeb797268b9414 /common/gtk-3.0/3.16/sass/_applications.scss | |
parent | f6d874a6ba7b358d931bb80655cbae46b2576ed3 (diff) | |
parent | 853e9eeadd88da1d650f7e4dd2ea9119dfbc8a08 (diff) | |
download | solarc-theme-ed94af21c3dfe8d457d1a008d7ac9f6a9fa9fc53.tar.gz solarc-theme-ed94af21c3dfe8d457d1a008d7ac9f6a9fa9fc53.tar.xz solarc-theme-ed94af21c3dfe8d457d1a008d7ac9f6a9fa9fc53.zip |
Merge branch 'master' into wip/3.18
Diffstat (limited to 'common/gtk-3.0/3.16/sass/_applications.scss')
-rw-r--r-- | common/gtk-3.0/3.16/sass/_applications.scss | 47 |
1 files changed, 40 insertions, 7 deletions
diff --git a/common/gtk-3.0/3.16/sass/_applications.scss b/common/gtk-3.0/3.16/sass/_applications.scss index 63eda9c..0cf9435 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); } } @@ -417,8 +436,14 @@ EphyWindow .floating-bar { // Epiphany overrides the floating-bar style, so rese margin: 2px; padding: 4px; - &:hover { background-color: lighten($selected_bg_color, 4%) } - &:active { background-color: darken($selected_bg_color, 4%) } + &:hover { + color: $selected_fg_color; + background-color: lighten($selected_bg_color, 4%); + } + &:active { + color: $selected_fg_color; + background-color: darken($selected_bg_color, 4%); + } .toolbar .linked &.button { background: none; @@ -449,6 +474,14 @@ TotemGrilo.vertical GdMainView.frame { SynapseGuiViewDefault *:selected { background-color: $selected_bg_color; } // +// Transmission +// +.tr-workarea .undershoot, +.tr-workarea .overshoot { + border-color: transparent; // Remove black border on over- and undershoot +} + +// // Fallback Mode/Budgie Panel // .gnome-panel-menu-bar, |