aboutsummaryrefslogtreecommitdiff
path: root/common/gtk-3.0/3.14/sass/_common.scss
diff options
context:
space:
mode:
Diffstat (limited to 'common/gtk-3.0/3.14/sass/_common.scss')
-rw-r--r--common/gtk-3.0/3.14/sass/_common.scss28
1 files changed, 11 insertions, 17 deletions
diff --git a/common/gtk-3.0/3.14/sass/_common.scss b/common/gtk-3.0/3.14/sass/_common.scss
index 20189f8..49eb41f 100644
--- a/common/gtk-3.0/3.14/sass/_common.scss
+++ b/common/gtk-3.0/3.14/sass/_common.scss
@@ -441,7 +441,7 @@ $_dot_color: $selected_bg_color;
&.image-button { padding: 10px; }
- &:hover { @include button(osd-hover); border-color: transparentize($osd_fg_color, 0.7)}
+ &:hover { @include button(osd-hover); background-color: $osd_bg_color; }
&:active, &:checked { @include button(osd-active); }
&:insensitive { @include button(osd-insensitive); }
}
@@ -970,9 +970,9 @@ GtkComboBox {
background-color: $bg_color;
.osd &, &.osd {
padding: 7px;
- border: none;
- border-radius: 4px;
- background-color: $osd_bg_color;
+ border: 1px solid transparentize(black, 0.4);
+ border-radius: 3px;
+ background-color: transparentize($osd_bg_color, 0.1);
}
}
@@ -1377,7 +1377,6 @@ GtkTreeView.view { // treeview grid lines a
background-color: $selected_fg_color;
}
}
-
&.trough, &.trough:selected { // progress bar trough in treeviews
color: $fg_color;
background-color: $button_border;
@@ -1637,12 +1636,6 @@ column-header.button.dnd { // for treeview-like derive widgets
&.top, &.bottom {
padding-left: 12px; // for a nicer close button
padding-right: 12px; // placement
- //border-left-width: 1px;
- //border-right-width: 1px;
- }
- &.left, &.right {
- //border-bottom-width: 1px;
- //border-top-width: 1px;
}
}
@each $_tab in (top, bottom, right, left) {
@@ -1790,6 +1783,7 @@ column-header.button.dnd { // for treeview-like derive widgets
background-color: $base_color;
}
+
/**********
* Switch *
**********/
@@ -2189,15 +2183,15 @@ GtkScrolledWindow {
.app-notification,
.app-notification.frame {
- @extend %osd;
padding: 10px;
- background-color: $osd_bg_color;
+ color: $dark_sidebar_fg;
+ background-color: $dark_sidebar_bg;
background-clip: border-box;
border-radius: 0 0 2px 2px;
border-width: 0 1px 1px 1px;
border-style: solid;
- border-color: darken($osd_bg_color, 10%);
-
+ border-color: darken($dark_sidebar_bg, 10%);
+
.button {
@include button(osd);
&.flat {
@@ -2459,11 +2453,11 @@ GtkInfoBar {
&.background {
// background-color needs to be set this way otherwise it gets drawn twice
// see https://bugzilla.gnome.org/show_bug.cgi?id=736155 for details.
- background-color: $tooltip_bg;
+ background-color: $osd_bg_color;
background-clip: padding-box;
}
- color: $tooltip_fg;
+ color: $osd_fg_color;
border-radius: 2px;
&.window-frame.csd {