diff options
Diffstat (limited to 'common/gtk-3.0/3.18/sass/_applications.scss')
-rw-r--r-- | common/gtk-3.0/3.18/sass/_applications.scss | 55 |
1 files changed, 44 insertions, 11 deletions
diff --git a/common/gtk-3.0/3.18/sass/_applications.scss b/common/gtk-3.0/3.18/sass/_applications.scss index cd3d82c..13fc8b9 100644 --- a/common/gtk-3.0/3.18/sass/_applications.scss +++ b/common/gtk-3.0/3.18/sass/_applications.scss @@ -57,9 +57,6 @@ SushiFontWidget { // // GNOME Terminal // -$terminal_bg: #2A2F36; -$terminal_fg: white; - TerminalWindow { .background { background-color: transparent; @@ -161,12 +158,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; } + } } // @@ -288,7 +307,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); } } @@ -296,15 +315,15 @@ GbSearchBox.linked { > GtkMenuButton.button:last-child:dir(ltr) { border-left-style: none; - border-radius: 0 14.5px 14.5px 0; - outline-radius: 0 12.5px 12.5px 0; + border-radius: 0 3px 3px 0; + outline-radius: 0 1px 1px 0; &:hover { box-shadow: -1px 0 $selected_bg_color; } } > GtkMenuButton.button:first-child:dir(rtl) { border-right-style: none; - border-radius: 14.5px 0 0 14.5px; - outline-radius: 12.5px 0 0 12.5px; + border-radius: 3px 0 0 3px; + outline-radius: 1px 0 0 1px; &:hover { box-shadow: 1px 0 $selected_bg_color; } } @@ -446,8 +465,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; @@ -478,6 +503,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, |