Adwaita: @define-color "compatible" with sass 3.4.0

This commit is contained in:
Lapo Calamandrei 2014-08-22 14:53:39 +02:00
parent ba83a2757e
commit 2ad15d1713
3 changed files with 129 additions and 112 deletions

View File

@ -2,11 +2,11 @@
// it gets @if ed depending on $variant
$base_color: if($variant =='light', #fff, #292929);
$base_color: if($variant =='light', #ffffff, #292929);
$bg_color: if($variant =='light', #ededed, #393f3f);
$fg_color: if($variant =='light', #2e3436, #eeeeec);
$selected_fg_color: #fff;
$selected_fg_color: #ffffff;
$selected_bg_color: if($variant =='light', #4a90d9, darken(#4a90d9,20%));
$selected_borders_color: if($variant == 'light', darken($selected_bg_color, 30%), darken($selected_bg_color,20%));
// FIXME dark variant color
@ -38,28 +38,31 @@ $backdrop_insensitive_color: if($variant =='light', darken($backdrop_bg_color,15
$backdrop_borders_color: mix($borders_color, $bg_color, 90%);
$backdrop_dark_fill: mix($backdrop_borders_color,$backdrop_bg_color, 35%);
//apps rely on some named colors to be exported
/* GTK NAMED COLORS */
@define-color theme_fg_color $fg_color;
@define-color theme_bg_color $bg_color;
@define-color theme_base_color $base_color;
@define-color theme_selected_bg_color $selected_bg_color;
@define-color theme_selected_fg_color $selected_fg_color;
@define-color insensitive_bg_color $insensitive_bg_color;
@define-color insensitive_fg_color $insensitive_fg_color;
@define-color insensitive_base_color $base_color;
@define-color theme_unfocused_fg_color $backdrop_fg_color;
@define-color theme_unfocused_bg_color $backdrop_bg_color;
@define-color theme_unfocused_base_color $backdrop_base_color;
@define-color theme_unfocused_selected_bg_color $selected_bg_color;
@define-color theme_unfocused_selected_fg_color $selected_fg_color;
@define-color borders $borders_color;
@define-color unfocused_borders $backdrop_borders_color;
// Sass thinks we're using the colors in the variables as strings and may shoot
// warning, it's innocuous and can be defeated by using "" + $var
@define-color theme_fg_color #{$fg_color};
@define-color theme_bg_color #{$bg_color};
@define-color theme_base_color #{"" + $base_color};
@define-color theme_selected_bg_color #{$selected_bg_color};
@define-color theme_selected_fg_color #{"" + $selected_fg_color};
@define-color insensitive_bg_color #{$insensitive_bg_color};
@define-color insensitive_fg_color #{$insensitive_fg_color};
@define-color insensitive_base_color #{"" + $base_color};
@define-color theme_unfocused_fg_color #{$backdrop_fg_color};
@define-color theme_unfocused_bg_color #{$backdrop_bg_color};
@define-color theme_unfocused_base_color #{$backdrop_base_color};
@define-color theme_unfocused_selected_bg_color #{$selected_bg_color};
@define-color theme_unfocused_selected_fg_color #{"" + $selected_fg_color};
@define-color borders #{$borders_color};
@define-color unfocused_borders #{$backdrop_borders_color};
@define-color warning_color $warning_color;
@define-color error_color $error_color;
@define-color success_color $success_color;
//@define-color desctructive_color $destructive_color
@define-color warning_color #{$warning_color};
@define-color error_color #{$error_color};
@define-color success_color #{$success_color};
//@define-color desctructive_color #{$destructive_color}
//WM
@ -67,24 +70,24 @@ $_wm_highlight: if($variant=='light', $top_hilight, // Sass gets mad if this is
transparentize(black,1)); // done directly in the
// color definition
@define-color wm_title shade($fg_color, 1.8);
@define-color wm_unfocused_title $backdrop_fg_color;
@define-color wm_highlight $_wm_highlight;
@define-color wm_borders_edge $borders_edge;
@define-color wm_title shade(#{$fg_color}, 1.8);
@define-color wm_unfocused_title #{$backdrop_fg_color};
@define-color wm_highlight #{"" + $_wm_highlight};
@define-color wm_borders_edge #{"" + $borders_edge};
@define-color wm_bg_a shade($bg_color, 1.2);
@define-color wm_bg_b $bg_color;
@define-color wm_bg_a shade(#{$bg_color}, 1.2);
@define-color wm_bg_b #{$bg_color};
@define-color wm_shadow alpha(black, 0.35);
@define-color wm_border alpha(black, 0.18);
@define-color wm_button_hover_color_a shade($bg_color, 1.3);
@define-color wm_button_hover_color_b $bg_color;
@define-color wm_button_active_color_a shade($bg_color, 0.85);
@define-color wm_button_active_color_b shade($bg_color, 0.89);
@define-color wm_button_active_color_c shade($bg_color, 0.9);
@define-color wm_button_hover_color_a shade(#{$bg_color}, 1.3);
@define-color wm_button_hover_color_b #{$bg_color};
@define-color wm_button_active_color_a shade(#{$bg_color}, 0.85);
@define-color wm_button_active_color_b shade(#{$bg_color}, 0.89);
@define-color wm_button_active_color_c shade(#{$bg_color}, 0.9);
//FIXME this is really an API
@define-color content_view_bg $base_color;
@define-color content_view_bg #{"" + $base_color};

View File

@ -3,7 +3,7 @@
@define-color theme_bg_color #393f3f;
@define-color theme_base_color #292929;
@define-color theme_selected_bg_color #215d9c;
@define-color theme_selected_fg_color white;
@define-color theme_selected_fg_color #ffffff;
@define-color insensitive_bg_color #323636;
@define-color insensitive_fg_color #939695;
@define-color insensitive_base_color #292929;
@ -11,7 +11,7 @@
@define-color theme_unfocused_bg_color #393f3f;
@define-color theme_unfocused_base_color #2c2c2c;
@define-color theme_unfocused_selected_bg_color #215d9c;
@define-color theme_unfocused_selected_fg_color white;
@define-color theme_unfocused_selected_fg_color #ffffff;
@define-color borders #1c1f1f;
@define-color unfocused_borders #1e2222;
@define-color warning_color #f57900;
@ -95,7 +95,7 @@
color: #939695; }
.gtkstyle-fallback:selected {
background-color: #215d9c;
color: white; }
color: #ffffff; }
.view {
color: #eeeeec;
@ -217,7 +217,7 @@ GtkAssistant .sidebar GtkLabel.highlight {
box-shadow: inset 0 2px rgba(38, 38, 38, 0), inset 0 1px rgba(33, 33, 33, 0), 0 1px rgba(255, 255, 255, 0); }
.entry:selected, .entry:backdrop:selected {
background-color: #215d9c;
color: white; }
color: #ffffff; }
.entry.progressbar {
margin: 1px;
border-radius: 0;
@ -287,7 +287,6 @@ GtkAssistant .sidebar GtkLabel.highlight {
@keyframes needs_attention {
from {
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#3583d5), to(transparent)); }
to {
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#215d9c), to(transparent)); } }
.button {
@ -767,34 +766,40 @@ GtkAssistant .sidebar GtkLabel.highlight {
background-image: linear-gradient(to bottom, #303434);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0); }
.inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.search-bar GtkToolButton > .button.flat,
.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.search-bar GtkToolButton > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop > .button.flat,
.inline-toolbar GtkToolButton:backdrop > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop > .button.flat, .osd .button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:backdrop:active, .osd .button:backdrop:checked, .osd .button:insensitive, .osd .button:backdrop:insensitive, .osd .button:backdrop, .osd .button.suggested-action, .osd .button.suggested-action:hover, .osd .button.suggested-action:active, .osd .button.suggested-action:checked, .osd .button.suggested-action:backdrop:active, .osd .button.suggested-action:backdrop:checked, .osd .button.suggested-action:insensitive, .osd .button.suggested-action:backdrop:insensitive, .osd .button.suggested-action:backdrop, .osd .button.destructive-action, .osd .button.destructive-action:hover, .osd .button.destructive-action:active, .osd .button.destructive-action:checked, .osd .button.destructive-action:backdrop:active, .osd .button.destructive-action:backdrop:checked, .osd .button.destructive-action:insensitive, .osd .button.destructive-action:backdrop:insensitive, .osd .button.destructive-action:backdrop, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked .button, .linked .button:hover, .linked .button:active, .linked .button:checked, .linked .button:backdrop, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, GtkComboBox.combobox-entry .button:backdrop, .linked > GtkComboBox > .button:dir(ltr) {
border-radius: 0;
border-left-style: none; }
.inline-toolbar GtkToolButton > .button.flat:dir(rtl),
.inline-toolbar GtkToolButton:backdrop > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar.search-bar GtkToolButton:dir(rtl) > .button.flat,
.inline-toolbar GtkToolButton:backdrop > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar.search-bar GtkToolButton:dir(rtl) > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:dir(rtl) > .button.flat,
.inline-toolbar GtkToolButton:backdrop:dir(rtl) > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:dir(rtl) > .button.flat, .osd .button:dir(rtl), .osd .button.suggested-action:dir(rtl):hover, .osd .button.suggested-action:dir(rtl):active, .osd .button.suggested-action:dir(rtl):checked, .osd .button.suggested-action:dir(rtl):insensitive, .osd .button.suggested-action:dir(rtl):backdrop, .osd .button.destructive-action:dir(rtl):hover, .osd .button.destructive-action:dir(rtl):active, .osd .button.destructive-action:dir(rtl):checked, .osd .button.destructive-action:dir(rtl):insensitive, .osd .button.destructive-action:dir(rtl):backdrop, .inline-toolbar .button:dir(rtl), .linked .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) {
border-radius: 0;
border-right-style: none;
border-left-style: solid; }
.osd .button:first-child, .osd .button.suggested-action:first-child:hover, .osd .button.suggested-action:first-child:active, .osd .button.suggested-action:first-child:checked, .osd .button.suggested-action:first-child:insensitive, .osd .button.suggested-action:first-child:backdrop, .osd .button.destructive-action:first-child:hover, .osd .button.destructive-action:first-child:active, .osd .button.destructive-action:first-child:checked, .osd .button.destructive-action:first-child:insensitive, .osd .button.destructive-action:first-child:backdrop, .inline-toolbar .button:first-child, .linked .button:first-child, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat,
.osd .button:first-child, .osd .button.suggested-action:first-child:hover, .osd .button.suggested-action:first-child:active, .osd .button.suggested-action:first-child:checked, .osd .button.suggested-action:first-child:insensitive, .osd .button.suggested-action:first-child:backdrop, .osd .button.destructive-action:first-child:hover, .osd .button.destructive-action:first-child:active, .osd .button.destructive-action:first-child:checked, .osd .button.destructive-action:first-child:insensitive, .osd .button.destructive-action:first-child:backdrop, .inline-toolbar .button:first-child, .linked .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat,
.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button {
border-radius: 3px 0 0 3px;
border-left-style: solid; }
.osd .button:last-child, .osd .button.suggested-action:last-child:hover, .osd .button.suggested-action:last-child:active, .osd .button.suggested-action:last-child:checked, .osd .button.suggested-action:last-child:insensitive, .osd .button.suggested-action:last-child:backdrop, .osd .button.destructive-action:last-child:hover, .osd .button.destructive-action:last-child:active, .osd .button.destructive-action:last-child:checked, .osd .button.destructive-action:last-child:insensitive, .osd .button.destructive-action:last-child:backdrop, .inline-toolbar .button:last-child, .linked .button:last-child, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat,
.osd .button:last-child, .osd .button.suggested-action:last-child:hover, .osd .button.suggested-action:last-child:active, .osd .button.suggested-action:last-child:checked, .osd .button.suggested-action:last-child:insensitive, .osd .button.suggested-action:last-child:backdrop, .osd .button.destructive-action:last-child:hover, .osd .button.destructive-action:last-child:active, .osd .button.destructive-action:last-child:checked, .osd .button.destructive-action:last-child:insensitive, .osd .button.destructive-action:last-child:backdrop, .inline-toolbar .button:last-child, .linked .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat,
.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button {
border-radius: 0 3px 3px 0; }
.osd .button:last-child:dir(rtl), .inline-toolbar .button:last-child:dir(rtl), .linked .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl),
.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar.search-bar GtkToolButton:last-child:dir(rtl) > .button.flat,
.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar.search-bar GtkToolButton:last-child:dir(rtl) > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:last-child:dir(rtl) > .button.flat,
.inline-toolbar GtkToolButton:backdrop:last-child:dir(rtl) > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl) {
border-right-style: solid; }
.osd .button:only-child, .osd .button.suggested-action:only-child:hover, .osd .button.suggested-action:only-child:active, .osd .button.suggested-action:only-child:checked, .osd .button.suggested-action:only-child:insensitive, .osd .button.suggested-action:only-child:backdrop, .osd .button.destructive-action:only-child:hover, .osd .button.destructive-action:only-child:active, .osd .button.destructive-action:only-child:checked, .osd .button.destructive-action:only-child:insensitive, .osd .button.destructive-action:only-child:backdrop, .inline-toolbar .button:only-child, .linked .button:only-child, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat,
.osd .button:only-child, .osd .button.suggested-action:only-child:hover, .osd .button.suggested-action:only-child:active, .osd .button.suggested-action:only-child:checked, .osd .button.suggested-action:only-child:insensitive, .osd .button.suggested-action:only-child:backdrop, .osd .button.destructive-action:only-child:hover, .osd .button.destructive-action:only-child:active, .osd .button.destructive-action:only-child:checked, .osd .button.destructive-action:only-child:insensitive, .osd .button.destructive-action:only-child:backdrop, .inline-toolbar .button:only-child, .linked .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat,
.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button {
border-radius: 3px;
@ -1118,7 +1123,7 @@ GtkComboBox {
.header-bar.selection-mode .button {
border-style: solid;
border-width: 1px;
color: white;
color: #ffffff;
background-image: linear-gradient(to bottom, #256ab1, #215d9c 40%, #1c5187);
border-color: #0b1e33;
text-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
@ -1127,7 +1132,7 @@ GtkComboBox {
.titlebar.selection-mode .button:hover, GtkCalendar.selection-mode.header .button:hover,
.header-bar.selection-mode .button:hover {
border-style: solid;
color: white;
color: #ffffff;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #3180d4, #2467ad 40%, #215d9c);
text-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
@ -1136,7 +1141,7 @@ GtkComboBox {
.titlebar.selection-mode .button:active, GtkCalendar.selection-mode.header .button:active,
.header-bar.selection-mode .button:active {
border-style: solid;
color: white;
color: #ffffff;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #194776, #1c5187);
text-shadow: 0 -1px rgba(0, 0, 0, 0.78353);
@ -1154,7 +1159,7 @@ GtkComboBox {
.titlebar.selection-mode .button:backdrop, GtkCalendar.selection-mode.header .button:backdrop,
.header-bar.selection-mode .button:backdrop {
border-style: solid;
color: white;
color: #ffffff;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #215d9c);
text-shadow: none;
@ -1299,7 +1304,7 @@ GtkTreeView.view {
GtkTreeView.view.expander:selected {
color: #bccee1; }
GtkTreeView.view.expander:selected:hover {
color: white; }
color: #ffffff; }
GtkTreeView.view.expander:selected:backdrop {
color: #283a4d; }
GtkTreeView.view.expander:active {
@ -1390,7 +1395,7 @@ GtkTreeView.view.progressbar {
text-shadow: none;
padding: 4px; }
.menu .menuitem:hover {
color: white;
color: #ffffff;
background-color: #215d9c; }
.menu .menuitem:insensitive {
color: #939695; }
@ -1825,7 +1830,7 @@ GtkSwitch {
background-image: none;
background-color: #323636; }
.list-row:selected GtkSwitch {
box-shadow: 0 0 0 1px white; }
box-shadow: 0 0 0 1px #ffffff; }
.list-row:selected GtkSwitch:backdrop {
box-shadow: 0 0 0 1px #2c2c2c; }
GtkSwitch.slider, .list-row:selected GtkSwitch.slider {
@ -1964,7 +1969,7 @@ GtkSwitch {
-gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); }
.menu .menuitem.check:active:hover, .menu .menuitem.check:checked:hover {
-gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic");
color: white; }
color: #ffffff; }
.menu .menuitem.check:active:insensitive, .menu .menuitem.check:checked:insensitive {
color: #939695;
background-image: none; }
@ -2066,7 +2071,7 @@ GtkSwitch {
-gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); }
.menu .menuitem.radio:active:hover, .menu .menuitem.radio:checked:hover {
-gtk-icon-source: -gtk-icontheme("radio-checked-symbolic");
color: white; }
color: #ffffff; }
.menu .menuitem.radio:active:insensitive, .menu .menuitem.radio:checked:insensitive {
color: #939695;
background-image: none; }
@ -2688,7 +2693,7 @@ GtkLevelBar.vertical {
.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:backdrop:selected, .entry:selected, .entry:selected:focus, .menuitem.button.flat:selected {
background-color: #215d9c;
color: white; }
color: #ffffff; }
.view:backdrop:selected, GtkLabel:backdrop:selected, .entry:backdrop:selected, .menuitem.button.flat:backdrop:selected {
color: #c9cbc9; }
@ -2752,7 +2757,7 @@ GtkScrolledWindow GtkViewport.frame {
background-color: #1d538c; }
.list-row:selected {
color: white;
color: #ffffff;
background-color: #215d9c; }
.list-row:selected:backdrop {
color: #2c2c2c; }
@ -2795,7 +2800,7 @@ GtkCalendar {
border: 1px solid #1c1f1f; }
GtkCalendar:selected {
background-color: #215d9c;
color: white;
color: #ffffff;
border-radius: 3px; }
GtkCalendar:selected:backdrop {
color: #c9cbc9; }
@ -3049,7 +3054,7 @@ GtkInfoBar {
.warning,
.error {
background-color: #215d9c;
color: white;
color: #ffffff;
text-shadow: 0 1px #184472;
border-color: #184472; }
.info .button,
@ -3058,7 +3063,7 @@ GtkInfoBar {
.error .button {
border-style: solid;
border-width: 1px;
color: white;
color: #ffffff;
background-image: linear-gradient(to bottom, #256ab1, #215d9c 40%, #1c5187);
border-color: #0b1e33;
text-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
@ -3069,7 +3074,7 @@ GtkInfoBar {
.warning .button:hover,
.error .button:hover {
border-style: solid;
color: white;
color: #ffffff;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #3180d4, #2467ad 40%, #215d9c);
text-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
@ -3080,7 +3085,7 @@ GtkInfoBar {
.warning .button:active,
.error .button:active {
border-style: solid;
color: white;
color: #ffffff;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #194776, #1c5187);
text-shadow: 0 -1px rgba(0, 0, 0, 0.78353);
@ -3102,7 +3107,7 @@ GtkInfoBar {
.warning .button:backdrop,
.error .button:backdrop {
border-style: solid;
color: white;
color: #ffffff;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #215d9c);
text-shadow: none;
@ -3272,3 +3277,5 @@ GtkCalendar.header .button.titlebutton {
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0);
border-color: transparent;
transition-property: border, box-shadow, color; }
/*# sourceMappingURL=gtk-contained-dark.css.map */

View File

@ -1,17 +1,17 @@
/* GTK NAMED COLORS */
@define-color theme_fg_color #2e3436;
@define-color theme_bg_color #ededed;
@define-color theme_base_color white;
@define-color theme_base_color #ffffff;
@define-color theme_selected_bg_color #4a90d9;
@define-color theme_selected_fg_color white;
@define-color theme_selected_fg_color #ffffff;
@define-color insensitive_bg_color #f4f4f4;
@define-color insensitive_fg_color #8d9091;
@define-color insensitive_base_color white;
@define-color insensitive_base_color #ffffff;
@define-color theme_unfocused_fg_color #54595a;
@define-color theme_unfocused_bg_color #ededed;
@define-color theme_unfocused_base_color #fcfcfc;
@define-color theme_unfocused_selected_bg_color #4a90d9;
@define-color theme_unfocused_selected_fg_color white;
@define-color theme_unfocused_selected_fg_color #ffffff;
@define-color borders #a1a1a1;
@define-color unfocused_borders #a8a8a8;
@define-color warning_color #f57900;
@ -30,7 +30,7 @@
@define-color wm_button_active_color_a shade(#ededed, 0.85);
@define-color wm_button_active_color_b shade(#ededed, 0.89);
@define-color wm_button_active_color_c shade(#ededed, 0.9);
@define-color content_view_bg white;
@define-color content_view_bg #ffffff;
* {
padding: 0;
-GtkToolButton-icon-spacing: 4;
@ -95,11 +95,11 @@
color: #8d9091; }
.gtkstyle-fallback:selected {
background-color: #4a90d9;
color: white; }
color: #ffffff; }
.view {
color: #2e3436;
background-color: white; }
background-color: #ffffff; }
.view:backdrop {
color: #54595a;
background-color: #fcfcfc; }
@ -125,7 +125,7 @@ GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkLabel:in
text-shadow: none; }
GtkAssistant .sidebar {
background-color: white; }
background-color: #ffffff; }
GtkAssistant .sidebar GtkLabel {
padding: 6px; }
GtkAssistant .sidebar GtkLabel.highlight {
@ -164,7 +164,7 @@ GtkAssistant .sidebar GtkLabel.highlight {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
border-color: #a1a1a1;
box-shadow: inset 0 3px #f7f7f7, inset 0 1px #d1d1d1, inset 0 0 0 1px rgba(74, 144, 217, 0), 0 1px white; }
.entry.image.left {
@ -176,7 +176,7 @@ GtkAssistant .sidebar GtkLabel.highlight {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
border-color: #a1a1a1;
box-shadow: inset 0 3px #f7f7f7, inset 0 1px #d1d1d1, inset 0 0 0 1px rgba(74, 144, 217, 0);
border: none;
@ -185,14 +185,14 @@ GtkAssistant .sidebar GtkLabel.highlight {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
box-shadow: inset 0 3px #f7f7f7, inset 0 1px #d1d1d1, inset 0 0 0 1px rgba(74, 144, 217, 0.15), 0 1px white;
border-color: #4a90d9; }
.entry:insensitive {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
color: #8d9091;
border-color: #a1a1a1;
background-image: linear-gradient(to bottom, #f4f4f4);
@ -201,7 +201,7 @@ GtkAssistant .sidebar GtkLabel.highlight {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
color: #54595a;
border-color: #a8a8a8;
background-image: linear-gradient(to bottom, #fcfcfc);
@ -210,14 +210,14 @@ GtkAssistant .sidebar GtkLabel.highlight {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
color: #c7c7c7;
border-color: #a8a8a8;
background-image: linear-gradient(to bottom, #f4f4f4);
box-shadow: inset 0 2px rgba(242, 242, 242, 0), inset 0 1px rgba(209, 209, 209, 0), 0 1px rgba(255, 255, 255, 0); }
.entry:selected, .entry:backdrop:selected {
background-color: #4a90d9;
color: white; }
color: #ffffff; }
.entry.progressbar {
margin: 1px;
border-radius: 0;
@ -247,7 +247,7 @@ GtkAssistant .sidebar GtkLabel.highlight {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
box-shadow: inset 0 3px #f7f7f7, inset 0 1px #d1d1d1, inset 0 0 0 1px rgba(204, 0, 0, 0.15), 0 1px white;
border-color: #cc0000; }
.entry.error:selected, .entry.error:selected:focus {
@ -259,7 +259,7 @@ GtkAssistant .sidebar GtkLabel.highlight {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
box-shadow: inset 0 3px #f7f7f7, inset 0 1px #d1d1d1, inset 0 0 0 1px rgba(245, 121, 0, 0.15), 0 1px white;
border-color: #f57900; }
.entry.warning:selected, .entry.warning:selected:focus {
@ -279,7 +279,6 @@ GtkAssistant .sidebar GtkLabel.highlight {
@keyframes needs_attention {
from {
background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#4a90d9), to(transparent)); }
to {
background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#4a90d9), to(transparent)); } }
.button {
@ -759,34 +758,40 @@ GtkAssistant .sidebar GtkLabel.highlight {
background-image: linear-gradient(to bottom, #ededed);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0); }
.inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.search-bar GtkToolButton > .button.flat,
.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.search-bar GtkToolButton > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop > .button.flat,
.inline-toolbar GtkToolButton:backdrop > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop > .button.flat, .osd .button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:backdrop:active, .osd .button:backdrop:checked, .osd .button:insensitive, .osd .button:backdrop:insensitive, .osd .button:backdrop, .osd .button.suggested-action, .osd .button.suggested-action:hover, .osd .button.suggested-action:active, .osd .button.suggested-action:checked, .osd .button.suggested-action:backdrop:active, .osd .button.suggested-action:backdrop:checked, .osd .button.suggested-action:insensitive, .osd .button.suggested-action:backdrop:insensitive, .osd .button.suggested-action:backdrop, .osd .button.destructive-action, .osd .button.destructive-action:hover, .osd .button.destructive-action:active, .osd .button.destructive-action:checked, .osd .button.destructive-action:backdrop:active, .osd .button.destructive-action:backdrop:checked, .osd .button.destructive-action:insensitive, .osd .button.destructive-action:backdrop:insensitive, .osd .button.destructive-action:backdrop, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked .button, .linked .button:hover, .linked .button:active, .linked .button:checked, .linked .button:backdrop, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, GtkComboBox.combobox-entry .button:backdrop, .linked > GtkComboBox > .button:dir(ltr) {
border-radius: 0;
border-left-style: none; }
.inline-toolbar GtkToolButton > .button.flat:dir(rtl),
.inline-toolbar GtkToolButton:backdrop > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar.search-bar GtkToolButton:dir(rtl) > .button.flat,
.inline-toolbar GtkToolButton:backdrop > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar.search-bar GtkToolButton:dir(rtl) > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:dir(rtl) > .button.flat,
.inline-toolbar GtkToolButton:backdrop:dir(rtl) > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:dir(rtl) > .button.flat, .osd .button:dir(rtl), .osd .button.suggested-action:dir(rtl):hover, .osd .button.suggested-action:dir(rtl):active, .osd .button.suggested-action:dir(rtl):checked, .osd .button.suggested-action:dir(rtl):insensitive, .osd .button.suggested-action:dir(rtl):backdrop, .osd .button.destructive-action:dir(rtl):hover, .osd .button.destructive-action:dir(rtl):active, .osd .button.destructive-action:dir(rtl):checked, .osd .button.destructive-action:dir(rtl):insensitive, .osd .button.destructive-action:dir(rtl):backdrop, .inline-toolbar .button:dir(rtl), .linked .button:dir(rtl), GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) {
border-radius: 0;
border-right-style: none;
border-left-style: solid; }
.osd .button:first-child, .osd .button.suggested-action:first-child:hover, .osd .button.suggested-action:first-child:active, .osd .button.suggested-action:first-child:checked, .osd .button.suggested-action:first-child:insensitive, .osd .button.suggested-action:first-child:backdrop, .osd .button.destructive-action:first-child:hover, .osd .button.destructive-action:first-child:active, .osd .button.destructive-action:first-child:checked, .osd .button.destructive-action:first-child:insensitive, .osd .button.destructive-action:first-child:backdrop, .inline-toolbar .button:first-child, .linked .button:first-child, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat,
.osd .button:first-child, .osd .button.suggested-action:first-child:hover, .osd .button.suggested-action:first-child:active, .osd .button.suggested-action:first-child:checked, .osd .button.suggested-action:first-child:insensitive, .osd .button.suggested-action:first-child:backdrop, .osd .button.destructive-action:first-child:hover, .osd .button.destructive-action:first-child:active, .osd .button.destructive-action:first-child:checked, .osd .button.destructive-action:first-child:insensitive, .osd .button.destructive-action:first-child:backdrop, .inline-toolbar .button:first-child, .linked .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:first-child > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:first-child > .button.flat,
.inline-toolbar GtkToolButton:backdrop:first-child > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button {
border-radius: 3px 0 0 3px;
border-left-style: solid; }
.osd .button:last-child, .osd .button.suggested-action:last-child:hover, .osd .button.suggested-action:last-child:active, .osd .button.suggested-action:last-child:checked, .osd .button.suggested-action:last-child:insensitive, .osd .button.suggested-action:last-child:backdrop, .osd .button.destructive-action:last-child:hover, .osd .button.destructive-action:last-child:active, .osd .button.destructive-action:last-child:checked, .osd .button.destructive-action:last-child:insensitive, .osd .button.destructive-action:last-child:backdrop, .inline-toolbar .button:last-child, .linked .button:last-child, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat,
.osd .button:last-child, .osd .button.suggested-action:last-child:hover, .osd .button.suggested-action:last-child:active, .osd .button.suggested-action:last-child:checked, .osd .button.suggested-action:last-child:insensitive, .osd .button.suggested-action:last-child:backdrop, .osd .button.destructive-action:last-child:hover, .osd .button.destructive-action:last-child:active, .osd .button.destructive-action:last-child:checked, .osd .button.destructive-action:last-child:insensitive, .osd .button.destructive-action:last-child:backdrop, .inline-toolbar .button:last-child, .linked .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:last-child > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:last-child > .button.flat,
.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button {
border-radius: 0 3px 3px 0; }
.osd .button:last-child:dir(rtl), .inline-toolbar .button:last-child:dir(rtl), .linked .button:last-child:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl),
.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar.search-bar GtkToolButton:last-child:dir(rtl) > .button.flat,
.inline-toolbar GtkToolButton:backdrop:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar.search-bar GtkToolButton:last-child:dir(rtl) > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:last-child:dir(rtl) > .button.flat,
.inline-toolbar GtkToolButton:backdrop:last-child:dir(rtl) > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl) {
border-right-style: solid; }
.osd .button:only-child, .osd .button.suggested-action:only-child:hover, .osd .button.suggested-action:only-child:active, .osd .button.suggested-action:only-child:checked, .osd .button.suggested-action:only-child:insensitive, .osd .button.suggested-action:only-child:backdrop, .osd .button.destructive-action:only-child:hover, .osd .button.destructive-action:only-child:active, .osd .button.destructive-action:only-child:checked, .osd .button.destructive-action:only-child:insensitive, .osd .button.destructive-action:only-child:backdrop, .inline-toolbar .button:only-child, .linked .button:only-child, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat,
.osd .button:only-child, .osd .button.suggested-action:only-child:hover, .osd .button.suggested-action:only-child:active, .osd .button.suggested-action:only-child:checked, .osd .button.suggested-action:only-child:insensitive, .osd .button.suggested-action:only-child:backdrop, .osd .button.destructive-action:only-child:hover, .osd .button.destructive-action:only-child:active, .osd .button.destructive-action:only-child:checked, .osd .button.destructive-action:only-child:insensitive, .osd .button.destructive-action:only-child:backdrop, .inline-toolbar .button:only-child, .linked .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.search-bar GtkToolButton:only-child > .button.flat,
.inline-toolbar.toolbar GtkToolButton:backdrop:only-child > .button.flat,
.inline-toolbar GtkToolButton:backdrop:only-child > .button.flat,
.inline-toolbar.search-bar GtkToolButton:backdrop:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button {
border-radius: 3px;
@ -1110,7 +1115,7 @@ GtkComboBox {
.header-bar.selection-mode .button {
border-style: solid;
border-width: 1px;
color: white;
color: #ffffff;
background-image: linear-gradient(to bottom, #5f9ddd, #4a90d9 40%, #3583d5);
border-color: #1c5187;
text-shadow: 0 -1px rgba(0, 0, 0, 0.54353);
@ -1119,7 +1124,7 @@ GtkComboBox {
.titlebar.selection-mode .button:hover, GtkCalendar.selection-mode.header .button:hover,
.header-bar.selection-mode .button:hover {
border-style: solid;
color: white;
color: #ffffff;
border-color: #1c5187;
background-image: linear-gradient(to bottom, #85b4e5, #5b9add 40%, #4a90d9);
text-shadow: 0 -1px rgba(0, 0, 0, 0.51153);
@ -1128,7 +1133,7 @@ GtkComboBox {
.titlebar.selection-mode .button:active, GtkCalendar.selection-mode.header .button:active,
.header-bar.selection-mode .button:active {
border-style: solid;
color: white;
color: #ffffff;
border-color: #1c5187;
background-image: linear-gradient(to bottom, #2b79cb, #3583d5);
text-shadow: 0 -1px rgba(0, 0, 0, 0.62353);
@ -1146,7 +1151,7 @@ GtkComboBox {
.titlebar.selection-mode .button:backdrop, GtkCalendar.selection-mode.header .button:backdrop,
.header-bar.selection-mode .button:backdrop {
border-style: solid;
color: white;
color: #ffffff;
border-color: #4a90d9;
background-image: linear-gradient(to bottom, #4a90d9);
text-shadow: none;
@ -1291,7 +1296,7 @@ GtkTreeView.view {
GtkTreeView.view.expander:selected {
color: #c8ddf3; }
GtkTreeView.view.expander:selected:hover {
color: white; }
color: #ffffff; }
GtkTreeView.view.expander:selected:backdrop {
color: #c6dbf1; }
GtkTreeView.view.expander:active {
@ -1301,7 +1306,7 @@ GtkTreeView.view {
column-header .button {
color: #96999a;
background-color: white;
background-color: #ffffff;
font-weight: bold;
text-shadow: none;
box-shadow: none; }
@ -1318,7 +1323,7 @@ column-header:last-child .button, column-header:last-child.button {
column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover {
transition: none;
color: #4a90d9;
box-shadow: inset 1px 1px 0 1px #4a90d9, inset -1px 0 0 1px #4a90d9, inset 1px 1px white, inset -1px 0 white; }
box-shadow: inset 1px 1px 0 1px #4a90d9, inset -1px 0 0 1px #4a90d9, inset 1px 1px #ffffff, inset -1px 0 #ffffff; }
column-header .button, column-header .button:hover, column-header .button:active {
padding: 3px 6px;
@ -1341,7 +1346,7 @@ column-header .button, column-header .button:hover, column-header .button:active
background-image: none; }
GtkTreeView.view.progressbar {
color: white;
color: #ffffff;
border-radius: 4px;
border-color: #184472;
background-image: linear-gradient(to bottom, #4a90d9, #2a76c6);
@ -1349,7 +1354,7 @@ GtkTreeView.view.progressbar {
GtkTreeView.view.progressbar:selected {
color: #4a90d9;
box-shadow: none;
background-image: linear-gradient(to bottom, white, #e6e6e6); }
background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); }
GtkTreeView.view.progressbar:selected:backdrop {
color: #4a90d9;
background-color: #fcfcfc; }
@ -1379,12 +1384,12 @@ GtkTreeView.view.progressbar {
.menu {
margin: 4px;
padding: 0px;
background-color: white; }
background-color: #ffffff; }
.menu .menuitem {
text-shadow: none;
padding: 4px; }
.menu .menuitem:hover {
color: white;
color: #ffffff;
background-color: #4a90d9; }
.menu .menuitem:insensitive {
color: #8d9091; }
@ -1488,7 +1493,7 @@ GtkTreeView.view.progressbar {
*****************/
.notebook {
padding: 0;
background-color: white;
background-color: #ffffff;
-GtkNotebook-initial-gap: 10;
-GtkNotebook-arrow-spacing: 5;
-GtkNotebook-tab-curvature: 0;
@ -1820,7 +1825,7 @@ GtkSwitch {
background-image: none;
background-color: #f4f4f4; }
.list-row:selected GtkSwitch {
box-shadow: 0 0 0 1px white; }
box-shadow: 0 0 0 1px #ffffff; }
.list-row:selected GtkSwitch:backdrop {
box-shadow: 0 0 0 1px #fcfcfc; }
GtkSwitch.slider, .list-row:selected GtkSwitch.slider {
@ -1959,7 +1964,7 @@ GtkSwitch {
-gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic"); }
.menu .menuitem.check:active:hover, .menu .menuitem.check:checked:hover {
-gtk-icon-source: -gtk-icontheme("checkbox-checked-symbolic");
color: white; }
color: #ffffff; }
.menu .menuitem.check:active:insensitive, .menu .menuitem.check:checked:insensitive {
color: #8d9091;
background-image: none; }
@ -2061,7 +2066,7 @@ GtkSwitch {
-gtk-icon-source: -gtk-icontheme("radio-checked-symbolic"); }
.menu .menuitem.radio:active:hover, .menu .menuitem.radio:checked:hover {
-gtk-icon-source: -gtk-icontheme("radio-checked-symbolic");
color: white; }
color: #ffffff; }
.menu .menuitem.radio:active:insensitive, .menu .menuitem.radio:checked:insensitive {
color: #8d9091;
background-image: none; }
@ -2638,14 +2643,14 @@ GtkLevelBar.vertical {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
border-color: #a1a1a1;
box-shadow: inset 0 3px #f7f7f7, inset 0 1px #d1d1d1, inset 0 0 0 1px rgba(74, 144, 217, 0), 0 1px white; }
.level-bar.trough:backdrop {
background-color: transparent;
border-style: solid;
border-width: 1px;
background-image: linear-gradient(to bottom, #f7f7f7, white 90%);
background-image: linear-gradient(to bottom, #f7f7f7, #ffffff 90%);
color: #54595a;
border-color: #a8a8a8;
background-image: linear-gradient(to bottom, #fcfcfc);
@ -2683,7 +2688,7 @@ GtkLevelBar.vertical {
.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:backdrop:selected, .entry:selected, .entry:selected:focus, .menuitem.button.flat:selected {
background-color: #4a90d9;
color: white;
color: #ffffff;
outline-color: rgba(255, 255, 255, 0.3); }
.view:backdrop:selected, GtkLabel:backdrop:selected, .entry:backdrop:selected, .menuitem.button.flat:backdrop:selected {
color: #fcfcfc; }
@ -2723,7 +2728,7 @@ GtkScrolledWindow GtkViewport.frame {
* Lists *
*********/
.list, .list-row {
background-color: white;
background-color: #ffffff;
border-color: #a1a1a1; }
.list:backdrop, .list-row:backdrop {
background-color: #fcfcfc;
@ -2748,7 +2753,7 @@ GtkScrolledWindow GtkViewport.frame {
background-color: #4281c3; }
.list-row:selected {
color: white;
color: #ffffff;
background-color: #4a90d9; }
.list-row:selected:backdrop {
color: #fcfcfc; }
@ -2791,7 +2796,7 @@ GtkCalendar {
border: 1px solid #a1a1a1; }
GtkCalendar:selected {
background-color: #4a90d9;
color: white;
color: #ffffff;
border-radius: 3px; }
GtkCalendar:selected:backdrop {
color: #fcfcfc; }
@ -2985,7 +2990,7 @@ GtkCalendar {
border-bottom-left-radius: 7px; }
GtkFileChooserDialog .search-bar {
background-color: white;
background-color: #ffffff;
border-color: #ededed;
box-shadow: none; }
GtkFileChooserDialog .search-bar:backdrop {
@ -3045,7 +3050,7 @@ GtkInfoBar {
.warning,
.error {
background-color: #4a90d9;
color: white;
color: #ffffff;
text-shadow: 0 1px #2a76c6;
border-color: #2a76c6; }
.info .button,
@ -3054,7 +3059,7 @@ GtkInfoBar {
.error .button {
border-style: solid;
border-width: 1px;
color: white;
color: #ffffff;
background-image: linear-gradient(to bottom, #5f9ddd, #4a90d9 40%, #3583d5);
border-color: #1c5187;
text-shadow: 0 -1px rgba(0, 0, 0, 0.54353);
@ -3065,7 +3070,7 @@ GtkInfoBar {
.warning .button:hover,
.error .button:hover {
border-style: solid;
color: white;
color: #ffffff;
border-color: #1c5187;
background-image: linear-gradient(to bottom, #85b4e5, #5b9add 40%, #4a90d9);
text-shadow: 0 -1px rgba(0, 0, 0, 0.51153);
@ -3076,7 +3081,7 @@ GtkInfoBar {
.warning .button:active,
.error .button:active {
border-style: solid;
color: white;
color: #ffffff;
border-color: #1c5187;
background-image: linear-gradient(to bottom, #2b79cb, #3583d5);
text-shadow: 0 -1px rgba(0, 0, 0, 0.62353);
@ -3098,7 +3103,7 @@ GtkInfoBar {
.warning .button:backdrop,
.error .button:backdrop {
border-style: solid;
color: white;
color: #ffffff;
border-color: #4a90d9;
background-image: linear-gradient(to bottom, #4a90d9);
text-shadow: none;
@ -3268,3 +3273,5 @@ GtkCalendar.header .button.titlebutton {
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0);
border-color: transparent;
transition-property: border, box-shadow, color; }
/*# sourceMappingURL=gtk-contained.css.map */