Adwaita: slight color tweaks

This commit is contained in:
Lapo Calamandrei 2015-12-04 18:42:56 +01:00
parent 05bdecb2f8
commit cfc17a0152
5 changed files with 719 additions and 719 deletions

View File

@ -4,14 +4,14 @@
$base_color: if($variant == 'light', #ffffff, #292929);
$text_color: if($variant == 'light', black, white);
$bg_color: if($variant == 'light', #ededed, #393f3f);
$bg_color: if($variant == 'light', #e8e8e7, #393f3f);
$fg_color: if($variant == 'light', #2e3436, #eeeeec);
$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%));
$borders_color: if($variant == 'light', darken($bg_color,30%), darken($bg_color,12%));
$borders_edge: if($variant == 'light', white, transparentize($fg_color, 0.9));
$borders_edge: if($variant == 'light', transparentize(white, 0.2), transparentize($fg_color, 0.93));
$link_color: if($variant == 'light', darken($selected_bg_color,10%), lighten($selected_bg_color,20%));
$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), lighten($selected_bg_color,10%));
$top_hilight: $borders_edge;

View File

@ -53,7 +53,7 @@ $asset_suffix: if($variant=='dark', '-dark', '');
.background {
color: $fg_color;
background-color: if($variant == 'light', darken($bg_color, 1.5%), $bg_color);
background-color: $bg_color;
&:backdrop {
text-shadow: none;

View File

@ -21,7 +21,7 @@
@function entry_focus_border($fc:$selected_bg_color) {
@if $variant == 'light' { @return $fc; }
@else { @return if($fc==$selected_bg_color, $selected_borders_color, darken($fc,35%)); }
@else { @return if($fc==$selected_bg_color, $selected_borders_color, darken($fc, 35%)); }
}
@function entry_focus_shadow($fc:$selected_bg_color) {
@ -52,13 +52,13 @@
background-color: transparent;
background-image: entry_gradient($base_color);
$_blank_edge: if($edge == none, none, 0 1px transparentize($edge,1));
$_blank_edge: if($edge == none, none, 0 1px transparentize($edge, 1));
$_entry_edge: if($edge == none, none, _widget_edge($edge));
@if $t==normal {
color: $text_color;
border-color: $borders_color;
@include _shadows(entry_focus_shadow(transparentize($fc,1)), $_entry_edge);
@include _shadows(entry_focus_shadow(transparentize($fc, 1)), $_entry_edge);
// for the transition to work the number of shadows in different states needs to match, hence the transparent shadow here.
}
@if $t==focus {
@ -124,11 +124,11 @@
// buttons
@function _border_color ($c) { @return darken($c,25%); } // colored buttons want
@function _border_color ($c) { @return darken($c, 25%); } // colored buttons want
// the border form the
// base color
@function _text_shadow_color ($tc:$fg_color, $bg:$bg_color) {
@function _text_shadow_color ($tc: $fg_color, $bg: $bg_color) {
//
// calculate the color of text shadows
//
@ -136,8 +136,8 @@
// $bg is the background color
//
$_lbg: lightness($bg)/100%;
@if lightness($tc)<50% { @return transparentize(white,1-$_lbg/($_lbg*1.3)); }
@else { @return transparentize(black,$_lbg*0.8); }
@if lightness($tc)<50% { @return transparentize(white, 1-$_lbg/($_lbg*1.3)); }
@else { @return transparentize(black, $_lbg*0.8); }
}
@function _button_hilight_color($c) {
@ -202,9 +202,9 @@
outline-color: transparentize($tc, 0.7);
border-color: if($c!=$bg_color, _border_color($c), $borders_color);
background-image: linear-gradient(to bottom,
lighten($c,5%),
$c 40%,
darken($c,5%)
lighten($c, 7%),
lighten($c, 2%) 40%,
darken($c, 3%)
);
@include _button_text_shadow($tc,$c);
@include _shadows(inset 0 1px $_hilight_color, $_button_edge);
@ -218,11 +218,11 @@
outline-color: transparentize($tc, 0.7);
border-color: if($c!=$bg_color, _border_color($c), $borders_color);
background-image: linear-gradient(to bottom,
lighten($c,14%),
lighten($c,4%) 40%,
$c);
lighten($c, 16%),
lighten($c, 6%) 40%,
lighten($c, 2%));
@include _button_text_shadow($tc,lighten($c,4%));
@include _button_text_shadow($tc,lighten($c, 6%));
@include _shadows(inset 0 1px $_hilight_color, $_button_edge);
}
@ -234,9 +234,9 @@
outline-color: transparentize($tc, 0.7);
border-color: if($c!=$bg_color, _border_color($c), $borders_color);
background-image: linear-gradient(to bottom,
darken($c,9%),
darken($c,6.6%) 40%,
darken($c,5%));
darken($c, 9%),
darken($c, 6.6%) 40%,
darken($c, 5%));
@include _button_text_shadow($tc,darken($c,10%));
@include _shadows(inset 0 1px transparentize(black, 0.93),
inset 0 2px 1px -2px transparentize(black,0.4),
@ -246,9 +246,9 @@
//
// insensitive button
//
$_bg: if($c!=$bg_color, mix($c,$base_color,85%), $insensitive_bg_color);
$_bg: if($c!=$bg_color, mix($c, $base_color, 85%), $insensitive_bg_color);
color: if($tc!=$fg_color, mix($tc,$_bg,50%), $insensitive_fg_color);
color: if($tc!=$fg_color, mix($tc, $_bg, 50%), $insensitive_fg_color);
border-color: if($c!=$bg_color, _border_color($c),
$insensitive_borders_color);
background-image: linear-gradient(to bottom, $_bg);
@ -256,23 +256,23 @@
-gtk-icon-shadow: none;
// white with 0 alpha to avoid an ugly transition, since no color means
// black with 0 alpha
@include _shadows(inset 0 1px transparentize(white,1), $_button_edge);
@include _shadows(inset 0 1px transparentize(white, 1), $_button_edge);
> .label { color: inherit; }
}
@else if $t==insensitive-active {
//
// insensitive pushed button
//
$_bg: if($c!=$bg_color, darken(mix($c,$base_color,85%),5%),
$_bg: if($c!=$bg_color, darken(mix($c,$base_color, 85%), 5%),
$insensitive_bg_color);
$_bc: if($c!=$bg_color, _border_color($c), $insensitive_borders_color);
color: if($c!=$bg_color, mix($tc,$_bg,60%), $insensitive_fg_color);
color: if($c!=$bg_color, mix($tc, $_bg, 60%), $insensitive_fg_color);
border-color: $_bc;
background-image: linear-gradient(to bottom, mix($_bc, $_bg, 10%), $_bg);
// white with 0 alpha to avoid an ugly transition, since no color means
// black with 0 alpha
@include _shadows(inset 0 1px transparentize(white,1), $_button_edge);
@include _shadows(inset 0 1px transparentize(white, 1), $_button_edge);
> .label { color: inherit; }
}
@ -288,7 +288,7 @@
background-image: linear-gradient(to bottom, $_bg);
text-shadow: none;
-gtk-icon-shadow: none;
@include _shadows(inset 0 1px transparentize(white,1),
@include _shadows(inset 0 1px transparentize(white, 1),
$_blank_edge);
}
@ -296,13 +296,13 @@
//
// backdrop pushed button FIXME no colors here!
//
$_bg: if($c!=$bg_color, darken($c,10%), $backdrop_dark_fill);
$_bg: if($c!=$bg_color, darken($c, 10%), $backdrop_dark_fill);
$_bc: if($variant=='light',$_bg,_border_color($c));
color: if($tc!=$fg_color, mix($tc,$_bg,80%), $backdrop_fg_color);
color: if($tc!=$fg_color, mix($tc, $_bg, 80%), $backdrop_fg_color);
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
background-image: linear-gradient(to bottom, $_bg);
@include _shadows(inset 0 1px transparentize(white,1),
@include _shadows(inset 0 1px transparentize(white, 1),
$_blank_edge);
}
@ -311,17 +311,17 @@
// backdrop insensitive button
//
$_bg: if($c!=$bg_color, mix($c,$base_color,85%), $insensitive_bg_color);
$_bc: if($variant=='light',$_bg,_border_color($c));
$_bg: if($c!=$bg_color, mix($c, $base_color, 85%), $insensitive_bg_color);
$_bc: if($variant=='light', $_bg,_border_color($c));
color: if($c!=$bg_color, mix($tc,$_bg,35%), $backdrop_insensitive_color);
color: if($c!=$bg_color, mix($tc, $_bg, 35%), $backdrop_insensitive_color);
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
background-image: linear-gradient(to bottom, $_bg);
text-shadow: none;
-gtk-icon-shadow: none;
// white with 0 alpha to avoid an ugly transition, since no color means
// black with 0 alpha
@include _shadows(inset 0 1px transparentize(white,1),
@include _shadows(inset 0 1px transparentize(white, 1),
$_blank_edge);
> .label { color: inherit; }
}
@ -331,14 +331,14 @@
// backdrop insensitive pushed button
//
$_bg: if($c!=$bg_color, darken(mix($c,$base_color,85%),5%),
darken($insensitive_bg_color,5%));
$_bc: if($variant=='light',$_bg,_border_color($c));
$_bg: if($c!=$bg_color, darken(mix($c, $base_color, 85%), 5%),
darken($insensitive_bg_color, 5%));
$_bc: if($variant=='light', $_bg,_border_color($c));
color: if($c!=$bg_color, mix($tc,$_bg,35%), $backdrop_insensitive_color);
color: if($c!=$bg_color, mix($tc, $_bg, 35%), $backdrop_insensitive_color);
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
background-image: linear-gradient(to bottom, $_bg);
@include _shadows(inset 0 1px transparentize(white,1),
@include _shadows(inset 0 1px transparentize(white, 1),
$_blank_edge);
> .label { color: inherit; }
}
@ -434,8 +434,8 @@
}
@mixin trough($flat:false, $c:$bg_color, $tc:$fg_color, $noedge:false) {
color: mix($tc,$bg_color,80%);
@if $flat { background-image: linear-gradient(to bottom,$c); }
color: mix($tc, $bg_color, 80%);
@if $flat { background-image: linear-gradient(to bottom, $c); }
@else {
background-image: linear-gradient(to bottom,
mix(black,$c,15%) 5%,
@ -452,8 +452,8 @@
0 1px $borders_edge;
}
@else {
box-shadow: inset 0 -1px transparentize($borders_edge,0.5),
0 1px transparentize($borders_edge,0.5);
box-shadow: inset 0 -1px transparentize($borders_edge, 0.5),
0 1px transparentize($borders_edge, 0.5);
}
}
@else { box-shadow: none; }
@ -462,20 +462,20 @@
@mixin progressbar_fill($d:horizontal) {
$dir: if($d==vertical,right,bottom);
background-image: linear-gradient(to $dir, $selected_bg_color 2px,
lighten($selected_bg_color,6%));
lighten($selected_bg_color, 6%));
}
@function headerbar_gradient($c, $tc:lighten($c,4%)) {
@function headerbar_gradient($c, $tc:lighten($c, 4%)) {
//
// headerbar gradient helper function
//
// $c: base color
// $tc: top color
//
@return linear-gradient(to bottom, $tc, $c);
@return linear-gradient(to bottom, $tc, lighten($c, 2%));
}
@mixin headerbar_fill($c:$bg_color, $tc:lighten($c,4%), $hc:$top_hilight) {
@mixin headerbar_fill($c:$bg_color, $tc:lighten($c, 6%), $hc:$top_hilight) {
//
// headerbar fill
//

View File

@ -172,7 +172,7 @@ entry, spinbutton {
background-image: linear-gradient(to bottom, #1d2020, #242525 3px, #292929 90%);
color: white;
border-color: #1c1f1f;
box-shadow: inset 0 0 0 1px rgba(33, 93, 156, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 0 0 1px rgba(33, 93, 156, 0), 0 1px rgba(238, 238, 236, 0.07); }
entry image.left, spinbutton image.left {
padding-left: 0;
padding-right: 6px; }
@ -191,7 +191,7 @@ entry, spinbutton {
entry:focus, spinbutton:focus {
background-color: transparent;
background-image: linear-gradient(to bottom, #1d2020, #242525 3px, #292929 90%);
box-shadow: inset 0 0 0 1px #215d9c, 0 1px rgba(238, 238, 236, 0.1);
box-shadow: inset 0 0 0 1px #215d9c, 0 1px rgba(238, 238, 236, 0.07);
border-color: #0f2b48; }
entry:insensitive, spinbutton:insensitive {
background-color: transparent;
@ -199,7 +199,7 @@ entry, spinbutton {
color: #949796;
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #333636);
box-shadow: 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: 0 1px rgba(238, 238, 236, 0.07); }
entry:backdrop, spinbutton:backdrop {
background-color: transparent;
background-image: linear-gradient(to bottom, #1d2020, #242525 3px, #292929 90%);
@ -233,7 +233,7 @@ entry, spinbutton {
entry.error:focus, spinbutton.error:focus {
background-color: transparent;
background-image: linear-gradient(to bottom, #1d2020, #242525 3px, #292929 90%);
box-shadow: inset 0 0 0 1px #cc0000, 0 1px rgba(238, 238, 236, 0.1);
box-shadow: inset 0 0 0 1px #cc0000, 0 1px rgba(238, 238, 236, 0.07);
border-color: #1a0000; }
entry.error:selected, spinbutton.error:selected, entry.error:selected:focus, spinbutton.error:selected:focus {
background-color: #cc0000; }
@ -243,7 +243,7 @@ entry, spinbutton {
entry.warning:focus, spinbutton.warning:focus {
background-color: transparent;
background-image: linear-gradient(to bottom, #1d2020, #242525 3px, #292929 90%);
box-shadow: inset 0 0 0 1px #f57900, 0 1px rgba(238, 238, 236, 0.1);
box-shadow: inset 0 0 0 1px #f57900, 0 1px rgba(238, 238, 236, 0.07);
border-color: #432100; }
entry.warning:selected, spinbutton.warning:selected, entry.warning:selected:focus, spinbutton.warning:selected:focus {
background-color: #f57900; }
@ -337,10 +337,10 @@ button, headerbar button.titlebutton,
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #454c4c, #393f3f 40%, #2d3232);
background-image: linear-gradient(to bottom, #4a5252, #3e4444 40%, #323737);
text-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
button.flat, button.sidebar-button, headerbar button.titlebutton,
.titlebar button.titlebutton {
border-color: transparent;
@ -362,10 +362,10 @@ button, headerbar button.titlebutton,
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1);
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07);
-gtk-icon-effect: highlight; }
button:active, headerbar button.titlebutton:active,
.titlebar button.titlebutton:active, button:checked, headerbar button.titlebutton:checked,
@ -376,7 +376,7 @@ button, headerbar button.titlebutton,
background-image: linear-gradient(to bottom, #232727, #292d2d 40%, #2d3232);
text-shadow: 0 -1px rgba(0, 0, 0, 0.89176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.89176);
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(238, 238, 236, 0.1);
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(238, 238, 236, 0.07);
transition-duration: 50ms; }
button:backdrop, headerbar button.titlebutton:backdrop,
.titlebar button.titlebutton:backdrop, button.flat:backdrop, button.sidebar-button:backdrop, headerbar button.titlebutton:backdrop,
@ -437,7 +437,7 @@ button, headerbar button.titlebutton,
background-image: linear-gradient(to bottom, #333636);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.07); }
button:insensitive > .label, headerbar button.titlebutton:insensitive > .label,
.titlebar button.titlebutton:insensitive > .label {
color: inherit; }
@ -445,7 +445,7 @@ button, headerbar button.titlebutton,
color: #949796;
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #313434, #333636);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.07); }
button:insensitive:active > .label, headerbar button.titlebutton:insensitive:active > .label,
.titlebar button.titlebutton:insensitive:active > .label, button:insensitive:checked > .label, headerbar button.titlebutton:insensitive:checked > .label,
.titlebar button.titlebutton:insensitive:checked > .label {
@ -631,10 +631,10 @@ button, headerbar button.titlebutton,
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #256ab1, #215d9c 40%, #1c5187);
background-image: linear-gradient(to bottom, #276fba, #2362a5 40%, #1e5690);
text-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
button.suggested-action.flat, button.suggested-action.sidebar-button, headerbar button.suggested-action.titlebutton,
.titlebar button.suggested-action.titlebutton {
border-color: transparent;
@ -648,10 +648,10 @@ button, headerbar button.titlebutton,
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #3180d4, #2467ad 40%, #215d9c);
text-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
background-image: linear-gradient(to bottom, #3986d5, #266cb5 40%, #2362a5);
text-shadow: 0 -1px rgba(0, 0, 0, 0.65553);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.65553);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
button.suggested-action:active, button.suggested-action:checked {
color: white;
outline-color: rgba(255, 255, 255, 0.3);
@ -659,7 +659,7 @@ button, headerbar button.titlebutton,
background-image: linear-gradient(to bottom, #194776, #1b4d80 40%, #1c5187);
text-shadow: 0 -1px rgba(0, 0, 0, 0.78353);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.78353);
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(238, 238, 236, 0.07); }
button.suggested-action:backdrop, button.suggested-action.flat:backdrop, button.suggested-action.sidebar-button:backdrop, headerbar button.suggested-action.titlebutton:backdrop,
.titlebar button.suggested-action.titlebutton:backdrop {
color: #d3dfeb;
@ -717,7 +717,7 @@ button, headerbar button.titlebutton,
background-image: linear-gradient(to bottom, #333636);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.07); }
button.suggested-action:insensitive > .label, headerbar button.suggested-action.titlebutton:insensitive > .label,
.titlebar button.suggested-action.titlebutton:insensitive > .label {
color: inherit; }
@ -725,7 +725,7 @@ button, headerbar button.titlebutton,
color: #a5b6c9;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #1b4470, #1d4877);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.07); }
button.suggested-action:insensitive:active > .label, headerbar button.suggested-action.titlebutton:insensitive:active > .label,
.titlebar button.suggested-action.titlebutton:insensitive:active > .label, button.suggested-action:insensitive:checked > .label, headerbar button.suggested-action.titlebutton:insensitive:checked > .label,
.titlebar button.suggested-action.titlebutton:insensitive:checked > .label {
@ -778,10 +778,10 @@ button, headerbar button.titlebutton,
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #5e0707;
background-image: linear-gradient(to bottom, #ed1212, #d51010 40%, #bd0e0e);
background-image: linear-gradient(to bottom, #ee1b1b, #df1111 40%, #c70f0f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.64078);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.64078);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px rgba(238, 238, 236, 0.07); }
button.destructive-action.flat, button.destructive-action.sidebar-button, headerbar button.destructive-action.titlebutton,
.titlebar button.destructive-action.titlebutton {
border-color: transparent;
@ -795,10 +795,10 @@ button, headerbar button.titlebutton,
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #5e0707;
background-image: linear-gradient(to bottom, #f03c3c, #e81111 40%, #d51010);
text-shadow: 0 -1px rgba(0, 0, 0, 0.60878);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.60878);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px rgba(238, 238, 236, 0.1); }
background-image: linear-gradient(to bottom, #f14545, #ee1616 40%, #df1111);
text-shadow: 0 -1px rgba(0, 0, 0, 0.59278);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.59278);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px rgba(238, 238, 236, 0.07); }
button.destructive-action:active, button.destructive-action:checked {
color: white;
outline-color: rgba(255, 255, 255, 0.3);
@ -806,7 +806,7 @@ button, headerbar button.titlebutton,
background-image: linear-gradient(to bottom, #aa0d0d, #b60e0e 40%, #bd0e0e);
text-shadow: 0 -1px rgba(0, 0, 0, 0.72078);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.72078);
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(238, 238, 236, 0.07); }
button.destructive-action:backdrop, button.destructive-action.flat:backdrop, button.destructive-action.sidebar-button:backdrop, headerbar button.destructive-action.titlebutton:backdrop,
.titlebar button.destructive-action.titlebutton:backdrop {
color: #f7cfcf;
@ -864,7 +864,7 @@ button, headerbar button.titlebutton,
background-image: linear-gradient(to bottom, #333636);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.07); }
button.destructive-action:insensitive > .label, headerbar button.destructive-action.titlebutton:insensitive > .label,
.titlebar button.destructive-action.titlebutton:insensitive > .label {
color: inherit; }
@ -872,7 +872,7 @@ button, headerbar button.titlebutton,
color: #dba0a0;
border-color: #5e0707;
background-image: linear-gradient(to bottom, #9d1111, #a41212);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.07); }
button.destructive-action:insensitive:active > .label, headerbar button.destructive-action.titlebutton:insensitive:active > .label,
.titlebar button.destructive-action.titlebutton:insensitive:active > .label, button.destructive-action:insensitive:checked > .label, headerbar button.destructive-action.titlebutton:insensitive:checked > .label,
.titlebar button.destructive-action.titlebutton:insensitive:checked > .label {
@ -993,19 +993,19 @@ button, headerbar button.titlebutton,
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #454c4c, #393f3f 40%, #2d3232);
background-image: linear-gradient(to bottom, #4a5252, #3e4444 40%, #323737);
text-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
.inline-toolbar toolbutton > button:hover, .inline-toolbar headerbar toolbutton > button.titlebutton:hover,
.inline-toolbar .titlebar toolbutton > button.titlebutton:hover {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
.inline-toolbar toolbutton > button:active, .inline-toolbar headerbar toolbutton > button.titlebutton:active,
.inline-toolbar .titlebar toolbutton > button.titlebutton:active, .inline-toolbar toolbutton > button:checked, .inline-toolbar headerbar toolbutton > button.titlebutton:checked,
.inline-toolbar .titlebar toolbutton > button.titlebutton:checked {
@ -1015,7 +1015,7 @@ button, headerbar button.titlebutton,
background-image: linear-gradient(to bottom, #232727, #292d2d 40%, #2d3232);
text-shadow: 0 -1px rgba(0, 0, 0, 0.89176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.89176);
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(238, 238, 236, 0.07); }
.inline-toolbar toolbutton > button:insensitive, .inline-toolbar headerbar toolbutton > button.titlebutton:insensitive,
.inline-toolbar .titlebar toolbutton > button.titlebutton:insensitive {
color: #949796;
@ -1023,7 +1023,7 @@ button, headerbar button.titlebutton,
background-image: linear-gradient(to bottom, #333636);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.07); }
.inline-toolbar toolbutton > button:insensitive > .label {
color: inherit; }
.inline-toolbar toolbutton > button:insensitive:active, .inline-toolbar headerbar toolbutton > button.titlebutton:insensitive:active,
@ -1032,7 +1032,7 @@ button, headerbar button.titlebutton,
color: #949796;
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #313434, #333636);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.07); }
.inline-toolbar toolbutton > button:insensitive:active > .label, .inline-toolbar toolbutton > button:insensitive:checked > .label {
color: inherit; }
.inline-toolbar toolbutton > button:backdrop, .inline-toolbar headerbar toolbutton > button.titlebutton:backdrop,
@ -1201,7 +1201,7 @@ button.color, headerbar button.color.titlebutton,
padding: 5px; }
button.color > colorswatch:first-child:last-child, headerbar button.color.titlebutton > colorswatch:first-child:last-child,
.titlebar button.color.titlebutton > colorswatch:first-child:last-child {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
button.color > colorswatch:first-child:last-child > overlay, button.color > colorswatch:first-child:last-child, headerbar button.color.titlebutton > colorswatch:first-child:last-child,
.titlebar button.color.titlebutton > colorswatch:first-child:last-child {
border-radius: 0; }
@ -1348,7 +1348,7 @@ spinbutton.vertical {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #454c4c, #393f3f 40%, #2d3232);
background-image: linear-gradient(to bottom, #4a5252, #3e4444 40%, #323737);
text-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
@ -1364,9 +1364,9 @@ spinbutton.vertical {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
spinbutton.vertical button:first-child:insensitive {
color: #949796;
@ -1533,7 +1533,7 @@ searchbar,
border-style: solid;
border-color: #1c1f1f;
background-color: #303535;
box-shadow: inset 0 2px 3px -1px #242828, 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 2px 3px -1px #242828, 0 1px rgba(238, 238, 236, 0.07); }
.inline-toolbar:backdrop, searchbar:backdrop,
.location-bar:backdrop {
border-color: #1f2222;
@ -1551,14 +1551,14 @@ headerbar {
border-color: #1c1f1f;
border-radius: 7px 7px 0 0;
background-color: transparent;
background-image: linear-gradient(to bottom, #434a4a, #393f3f);
box-shadow: inset 0 -1px #2e3232, inset 0 1px rgba(238, 238, 236, 0.1); }
background-image: linear-gradient(to bottom, #484f4f, #3e4444);
box-shadow: inset 0 -1px #2e3232, inset 0 1px rgba(238, 238, 236, 0.07); }
.titlebar:backdrop,
headerbar:backdrop {
border-color: #1f2222;
background-color: #393f3f;
background-image: none;
box-shadow: inset 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(238, 238, 236, 0.07); }
.titlebar .title,
headerbar .title {
font-weight: bold;
@ -1586,11 +1586,11 @@ headerbar {
text-shadow: 0 -1px rgba(0, 0, 0, 0.5);
border-color: #0f2b48;
background-image: linear-gradient(to bottom, #256ab1, #215d9c);
box-shadow: inset 0 -1px #1b4c7f, inset 0 1px rgba(43, 100, 160, 0.55); }
box-shadow: inset 0 -1px #1b4c7f, inset 0 1px rgba(40, 98, 159, 0.535); }
.titlebar.selection-mode:backdrop,
headerbar.selection-mode:backdrop {
background-image: linear-gradient(to bottom, #215d9c);
box-shadow: inset 0 1px rgba(48, 104, 162, 0.46); }
box-shadow: inset 0 1px rgba(44, 100, 160, 0.442); }
.titlebar.selection-mode button,
headerbar.selection-mode button,
headerbar.selection-mode .titlebar button.titlebutton,
@ -1598,10 +1598,10 @@ headerbar {
color: #ffffff;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #256ab1, #215d9c 40%, #1c5187);
background-image: linear-gradient(to bottom, #276fba, #2362a5 40%, #1e5690);
text-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(43, 100, 160, 0.55); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(40, 98, 159, 0.535); }
.titlebar.selection-mode button.flat, .titlebar.selection-mode button.sidebar-button,
.titlebar.selection-mode button.titlebutton,
headerbar.selection-mode button.flat,
@ -1618,10 +1618,10 @@ headerbar {
color: #ffffff;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #3180d4, #2467ad 40%, #215d9c);
text-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(43, 100, 160, 0.55); }
background-image: linear-gradient(to bottom, #3986d5, #266cb5 40%, #2362a5);
text-shadow: 0 -1px rgba(0, 0, 0, 0.65553);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.65553);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(40, 98, 159, 0.535); }
.titlebar.selection-mode button:active, .titlebar.selection-mode button:checked,
headerbar.selection-mode button:active,
headerbar.selection-mode button:checked {
@ -1631,7 +1631,7 @@ headerbar {
background-image: linear-gradient(to bottom, #194776, #1b4d80 40%, #1c5187);
text-shadow: 0 -1px rgba(0, 0, 0, 0.78353);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.78353);
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(43, 100, 160, 0.55); }
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(40, 98, 159, 0.535); }
.titlebar.selection-mode button:backdrop, .titlebar.selection-mode button.flat:backdrop, .titlebar.selection-mode button.sidebar-button:backdrop,
.titlebar.selection-mode button.titlebutton:backdrop,
headerbar.selection-mode button:backdrop,
@ -1643,7 +1643,7 @@ headerbar {
background-image: linear-gradient(to bottom, #215d9c);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(43, 100, 160, 0);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(40, 98, 159, 0);
-gtk-icon-effect: none;
border-color: #0f2b48; }
.titlebar.selection-mode button:backdrop:active, .titlebar.selection-mode button:backdrop:checked, .titlebar.selection-mode button.flat:backdrop:active, .titlebar.selection-mode button.sidebar-button:backdrop:active,
@ -1660,7 +1660,7 @@ headerbar {
color: #d1dae3;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #184472);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(43, 100, 160, 0);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(40, 98, 159, 0);
border-color: #0f2b48; }
.titlebar.selection-mode button:backdrop:insensitive, .titlebar.selection-mode button.flat:backdrop:insensitive, .titlebar.selection-mode button.sidebar-button:backdrop:insensitive,
.titlebar.selection-mode button.titlebutton:backdrop:insensitive,
@ -1673,7 +1673,7 @@ headerbar {
background-image: linear-gradient(to bottom, #22558b);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(43, 100, 160, 0);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(40, 98, 159, 0);
border-color: #0f2b48; }
.titlebar.selection-mode button:backdrop:insensitive > .label, .titlebar.selection-mode headerbar button.titlebutton:backdrop:insensitive > .label, .titlebar.selection-mode button.flat:backdrop:insensitive > .label, .titlebar.selection-mode button.sidebar-button:backdrop:insensitive > .label, .titlebar.selection-mode headerbar button.titlebutton:backdrop:insensitive > .label,
.titlebar.selection-mode button.titlebutton:backdrop:insensitive > .label,
@ -1698,7 +1698,7 @@ headerbar {
color: #6c88a7;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #1d4877);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(43, 100, 160, 0);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(40, 98, 159, 0);
border-color: #0f2b48; }
.titlebar.selection-mode button:backdrop:insensitive:active > .label, .titlebar.selection-mode headerbar button.titlebutton:backdrop:insensitive:active > .label, .titlebar.selection-mode button:backdrop:insensitive:checked > .label, .titlebar.selection-mode headerbar button.titlebutton:backdrop:insensitive:checked > .label, .titlebar.selection-mode button.flat:backdrop:insensitive:active > .label, .titlebar.selection-mode button.sidebar-button:backdrop:insensitive:active > .label, .titlebar.selection-mode headerbar button.titlebutton:backdrop:insensitive:active > .label,
.titlebar.selection-mode button.titlebutton:backdrop:insensitive:active > .label, .titlebar.selection-mode button.flat:backdrop:insensitive:checked > .label, .titlebar.selection-mode button.sidebar-button:backdrop:insensitive:checked > .label, .titlebar.selection-mode headerbar button.titlebutton:backdrop:insensitive:checked > .label,
@ -1742,7 +1742,7 @@ headerbar {
background-image: linear-gradient(to bottom, #22558b);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(43, 100, 160, 0.55); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(40, 98, 159, 0.535); }
.titlebar.selection-mode button:insensitive > .label, .titlebar.selection-mode headerbar button.titlebutton:insensitive > .label,
headerbar.selection-mode button:insensitive > .label,
headerbar.selection-mode .titlebar button.titlebutton:insensitive > .label {
@ -1753,7 +1753,7 @@ headerbar {
color: #a5b6c9;
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #1b4470, #1d4877);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(43, 100, 160, 0.55); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(40, 98, 159, 0.535); }
.titlebar.selection-mode button:insensitive:active > .label, .titlebar.selection-mode headerbar button.titlebutton:insensitive:active > .label, .titlebar.selection-mode button:insensitive:checked > .label, .titlebar.selection-mode headerbar button.titlebutton:insensitive:checked > .label,
headerbar.selection-mode button:insensitive:active > .label,
headerbar.selection-mode .titlebar button.titlebutton:insensitive:active > .label,
@ -1765,20 +1765,20 @@ headerbar {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #454c4c, #393f3f 40%, #2d3232);
background-image: linear-gradient(to bottom, #4a5252, #3e4444 40%, #323737);
text-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(43, 100, 160, 0.55);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(40, 98, 159, 0.535);
border-color: #0f2b48; }
.titlebar.selection-mode button.suggested-action:hover,
headerbar.selection-mode button.suggested-action:hover {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(43, 100, 160, 0.55);
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(40, 98, 159, 0.535);
border-color: #0f2b48; }
.titlebar.selection-mode button.suggested-action:active,
headerbar.selection-mode button.suggested-action:active {
@ -1788,7 +1788,7 @@ headerbar {
background-image: linear-gradient(to bottom, #232727, #292d2d 40%, #2d3232);
text-shadow: 0 -1px rgba(0, 0, 0, 0.89176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.89176);
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(43, 100, 160, 0.55);
box-shadow: inset 0 1px rgba(0, 0, 0, 0.07), inset 0 2px 1px -2px rgba(0, 0, 0, 0.6), 0 1px rgba(40, 98, 159, 0.535);
border-color: #0f2b48; }
.titlebar.selection-mode button.suggested-action:insensitive,
headerbar.selection-mode button.suggested-action:insensitive {
@ -1797,7 +1797,7 @@ headerbar {
background-image: linear-gradient(to bottom, #333636);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(43, 100, 160, 0.55);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(40, 98, 159, 0.535);
border-color: #0f2b48; }
.titlebar.selection-mode button.suggested-action:insensitive > .label, .titlebar.selection-mode headerbar button.suggested-action.titlebutton:insensitive > .label,
headerbar.selection-mode button.suggested-action:insensitive > .label,
@ -1810,7 +1810,7 @@ headerbar {
background-image: linear-gradient(to bottom, #393f3f);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(43, 100, 160, 0);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(40, 98, 159, 0);
border-color: #0f2b48; }
.titlebar.selection-mode button.suggested-action:backdrop:insensitive,
headerbar.selection-mode button.suggested-action:backdrop:insensitive {
@ -1819,7 +1819,7 @@ headerbar {
background-image: linear-gradient(to bottom, #333636);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(43, 100, 160, 0);
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(40, 98, 159, 0);
border-color: #0f2b48; }
.titlebar.selection-mode button.suggested-action:backdrop:insensitive > .label, .titlebar.selection-mode headerbar button.suggested-action.titlebutton:backdrop:insensitive > .label,
headerbar.selection-mode button.suggested-action:backdrop:insensitive > .label,
@ -2326,9 +2326,9 @@ notebook {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
background-image: none;
box-shadow: none; }
@ -2436,7 +2436,7 @@ switch {
font-weight: bold;
font-size: smaller;
outline-offset: -4px;
box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.1);
box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.07);
border: 1px solid #1c1f1f;
border-radius: 3px;
color: #eeeeec;
@ -2449,14 +2449,14 @@ switch {
background-image: linear-gradient(to bottom, #215d9c 2px, #266cb5);
color: white;
border-color: #0f2b48;
box-shadow: 0 1px rgba(238, 238, 236, 0.1);
box-shadow: 0 1px rgba(238, 238, 236, 0.07);
text-shadow: 0 1px rgba(15, 43, 72, 0.5), 0 0 2px rgba(255, 255, 255, 0.6); }
switch:insensitive {
color: #949796;
border-color: #1c1f1f;
background-image: none;
background-color: #333636;
box-shadow: 0 1px rgba(238, 238, 236, 0.1);
box-shadow: 0 1px rgba(238, 238, 236, 0.07);
text-shadow: none; }
switch:backdrop {
color: #949796;
@ -2479,19 +2479,19 @@ switch {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #454c4c, #393f3f 40%, #2d3232);
background-image: linear-gradient(to bottom, #4a5252, #3e4444 40%, #323737);
text-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), inset 0 -2px rgba(57, 63, 63, 0.6), inset 0 -1px #2b2f2f; }
switch:hover slider {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1);
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.15), inset 0 -2px rgba(57, 63, 63, 0.6), inset 0 -1px #2b2f2f; }
switch:active slider {
border: 1px solid #0f2b48; }
@ -2530,7 +2530,7 @@ switch {
*************************/
check {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check button.flat, check button.sidebar-button, check headerbar button.titlebutton, headerbar check button.titlebutton,
check .titlebar button.titlebutton,
.titlebar check button.titlebutton {
@ -2538,7 +2538,7 @@ check {
check:hover {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-hover-dark.png"), url("assets/checkbox-unchecked-hover-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:hover button.flat, check:hover button.sidebar-button, check:hover headerbar button.titlebutton, headerbar check:hover button.titlebutton,
check:hover .titlebar button.titlebutton,
.titlebar check:hover button.titlebutton {
@ -2546,7 +2546,7 @@ check:hover {
check:active {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-active-dark.png"), url("assets/checkbox-unchecked-active-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:active button.flat, check:active button.sidebar-button, check:active headerbar button.titlebutton, headerbar check:active button.titlebutton,
check:active .titlebar button.titlebutton,
.titlebar check:active button.titlebutton {
@ -2554,7 +2554,7 @@ check:active {
check:insensitive {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:insensitive button.flat, check:insensitive button.sidebar-button, check:insensitive headerbar button.titlebutton, headerbar check:insensitive button.titlebutton,
check:insensitive .titlebar button.titlebutton,
.titlebar check:insensitive button.titlebutton {
@ -2578,7 +2578,7 @@ check:backdrop:insensitive {
check:inconsistent {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:inconsistent button.flat, check:inconsistent button.sidebar-button, check:inconsistent headerbar button.titlebutton, headerbar check:inconsistent button.titlebutton,
check:inconsistent .titlebar button.titlebutton,
.titlebar check:inconsistent button.titlebutton {
@ -2586,7 +2586,7 @@ check:inconsistent {
check:inconsistent:hover {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-hover-dark.png"), url("assets/checkbox-mixed-hover-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:inconsistent:hover button.flat, check:inconsistent:hover button.sidebar-button, check:inconsistent:hover headerbar button.titlebutton, headerbar check:inconsistent:hover button.titlebutton,
check:inconsistent:hover .titlebar button.titlebutton,
.titlebar check:inconsistent:hover button.titlebutton {
@ -2594,7 +2594,7 @@ check:inconsistent:hover {
check:inconsistent:selected {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-active-dark.png"), url("assets/checkbox-mixed-active-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:inconsistent:selected button.flat, check:inconsistent:selected button.sidebar-button, check:inconsistent:selected headerbar button.titlebutton, headerbar check:inconsistent:selected button.titlebutton,
check:inconsistent:selected .titlebar button.titlebutton,
.titlebar check:inconsistent:selected button.titlebutton {
@ -2610,7 +2610,7 @@ check:inconsistent:backdrop {
check:inconsistent:insensitive {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:inconsistent:insensitive button.flat, check:inconsistent:insensitive button.sidebar-button, check:inconsistent:insensitive headerbar button.titlebutton, headerbar check:inconsistent:insensitive button.titlebutton,
check:inconsistent:insensitive .titlebar button.titlebutton,
.titlebar check:inconsistent:insensitive button.titlebutton {
@ -2626,7 +2626,7 @@ check:inconsistent:insensitive:backdrop {
check:checked {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:checked button.flat, check:checked button.sidebar-button, check:checked headerbar button.titlebutton, headerbar check:checked button.titlebutton,
check:checked .titlebar button.titlebutton,
.titlebar check:checked button.titlebutton {
@ -2634,7 +2634,7 @@ check:checked {
check:checked:insensitive {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:checked:insensitive button.flat, check:checked:insensitive button.sidebar-button, check:checked:insensitive headerbar button.titlebutton, headerbar check:checked:insensitive button.titlebutton,
check:checked:insensitive .titlebar button.titlebutton,
.titlebar check:checked:insensitive button.titlebutton {
@ -2642,7 +2642,7 @@ check:checked:insensitive {
check:checked:hover {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-hover-dark.png"), url("assets/checkbox-checked-hover-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:checked:hover button.flat, check:checked:hover button.sidebar-button, check:checked:hover headerbar button.titlebutton, headerbar check:checked:hover button.titlebutton,
check:checked:hover .titlebar button.titlebutton,
.titlebar check:checked:hover button.titlebutton {
@ -2650,7 +2650,7 @@ check:checked:hover {
check:checked:active {
-gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-active-dark.png"), url("assets/checkbox-checked-active-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
check:checked:active button.flat, check:checked:active button.sidebar-button, check:checked:active headerbar button.titlebutton, headerbar check:checked:active button.titlebutton,
check:checked:active .titlebar button.titlebutton,
.titlebar check:checked:active button.titlebutton {
@ -2687,7 +2687,7 @@ menu menuitem.check {
radio {
-gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio button.flat, radio button.sidebar-button, radio headerbar button.titlebutton, headerbar radio button.titlebutton,
radio .titlebar button.titlebutton,
.titlebar radio button.titlebutton {
@ -2695,7 +2695,7 @@ radio {
radio:hover {
-gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-hover-dark.png"), url("assets/radio-unchecked-hover-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:hover button.flat, radio:hover button.sidebar-button, radio:hover headerbar button.titlebutton, headerbar radio:hover button.titlebutton,
radio:hover .titlebar button.titlebutton,
.titlebar radio:hover button.titlebutton {
@ -2703,7 +2703,7 @@ radio:hover {
radio:active {
-gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-active-dark.png"), url("assets/radio-unchecked-active-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:active button.flat, radio:active button.sidebar-button, radio:active headerbar button.titlebutton, headerbar radio:active button.titlebutton,
radio:active .titlebar button.titlebutton,
.titlebar radio:active button.titlebutton {
@ -2711,7 +2711,7 @@ radio:active {
radio:insensitive {
-gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:insensitive button.flat, radio:insensitive button.sidebar-button, radio:insensitive headerbar button.titlebutton, headerbar radio:insensitive button.titlebutton,
radio:insensitive .titlebar button.titlebutton,
.titlebar radio:insensitive button.titlebutton {
@ -2735,7 +2735,7 @@ radio:backdrop:insensitive {
radio:inconsistent {
-gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:inconsistent button.flat, radio:inconsistent button.sidebar-button, radio:inconsistent headerbar button.titlebutton, headerbar radio:inconsistent button.titlebutton,
radio:inconsistent .titlebar button.titlebutton,
.titlebar radio:inconsistent button.titlebutton {
@ -2743,7 +2743,7 @@ radio:inconsistent {
radio:inconsistent:hover {
-gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-hover-dark.png"), url("assets/radio-mixed-hover-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:inconsistent:hover button.flat, radio:inconsistent:hover button.sidebar-button, radio:inconsistent:hover headerbar button.titlebutton, headerbar radio:inconsistent:hover button.titlebutton,
radio:inconsistent:hover .titlebar button.titlebutton,
.titlebar radio:inconsistent:hover button.titlebutton {
@ -2751,7 +2751,7 @@ radio:inconsistent:hover {
radio:inconsistent:selected {
-gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-active-dark.png"), url("assets/radio-mixed-active-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:inconsistent:selected button.flat, radio:inconsistent:selected button.sidebar-button, radio:inconsistent:selected headerbar button.titlebutton, headerbar radio:inconsistent:selected button.titlebutton,
radio:inconsistent:selected .titlebar button.titlebutton,
.titlebar radio:inconsistent:selected button.titlebutton {
@ -2767,7 +2767,7 @@ radio:inconsistent:backdrop {
radio:inconsistent:insensitive {
-gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:inconsistent:insensitive button.flat, radio:inconsistent:insensitive button.sidebar-button, radio:inconsistent:insensitive headerbar button.titlebutton, headerbar radio:inconsistent:insensitive button.titlebutton,
radio:inconsistent:insensitive .titlebar button.titlebutton,
.titlebar radio:inconsistent:insensitive button.titlebutton {
@ -2783,7 +2783,7 @@ radio:inconsistent:insensitive:backdrop {
radio:checked {
-gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:checked button.flat, radio:checked button.sidebar-button, radio:checked headerbar button.titlebutton, headerbar radio:checked button.titlebutton,
radio:checked .titlebar button.titlebutton,
.titlebar radio:checked button.titlebutton {
@ -2791,7 +2791,7 @@ radio:checked {
radio:checked:insensitive {
-gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:checked:insensitive button.flat, radio:checked:insensitive button.sidebar-button, radio:checked:insensitive headerbar button.titlebutton, headerbar radio:checked:insensitive button.titlebutton,
radio:checked:insensitive .titlebar button.titlebutton,
.titlebar radio:checked:insensitive button.titlebutton {
@ -2799,7 +2799,7 @@ radio:checked:insensitive {
radio:checked:hover {
-gtk-icon-source: -gtk-scaled(url("assets/radio-checked-hover-dark.png"), url("assets/radio-checked-hover-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:checked:hover button.flat, radio:checked:hover button.sidebar-button, radio:checked:hover headerbar button.titlebutton, headerbar radio:checked:hover button.titlebutton,
radio:checked:hover .titlebar button.titlebutton,
.titlebar radio:checked:hover button.titlebutton {
@ -2807,7 +2807,7 @@ radio:checked:hover {
radio:checked:active {
-gtk-icon-source: -gtk-scaled(url("assets/radio-checked-active-dark.png"), url("assets/radio-checked-active-dark@2.png"));
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.1); }
-gtk-icon-shadow: 0 1px 0 rgba(238, 238, 236, 0.07); }
radio:checked:active button.flat, radio:checked:active button.sidebar-button, radio:checked:active headerbar button.titlebutton, headerbar radio:checked:active button.titlebutton,
radio:checked:active .titlebar button.titlebutton,
.titlebar radio:checked:active button.titlebutton {
@ -2905,10 +2905,10 @@ scale trough, scale fill, progressbar trough {
border: 1px solid #1c1f1f;
border-radius: 3px;
background-color: #2f3434;
box-shadow: inset 1px 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 1px 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
scale trough:insensitive, scale fill:insensitive, progressbar trough:insensitive {
background-color: #333636;
box-shadow: 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: 0 1px rgba(238, 238, 236, 0.07); }
scale trough:backdrop, scale fill:backdrop, progressbar trough:backdrop, progressbar:backdrop trough {
background-color: #303535;
border-color: #1f2222;
@ -2980,7 +2980,7 @@ scale {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #454c4c, #393f3f 40%, #2d3232);
background-image: linear-gradient(to bottom, #4a5252, #3e4444 40%, #323737);
text-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(0, 0, 0, 0.1);
@ -2990,9 +2990,9 @@ scale {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(0, 0, 0, 0.1); }
scale slider:active {
border-color: #0f2b48; }
@ -3002,7 +3002,7 @@ scale {
background-image: linear-gradient(to bottom, #333636);
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(238, 238, 236, 0.07); }
scale slider:insensitive > .label {
color: inherit; }
scale slider:backdrop {
@ -3294,7 +3294,7 @@ progressbar {
padding: 0;
font-size: smaller;
color: rgba(238, 238, 236, 0.4);
box-shadow: 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: 0 1px rgba(238, 238, 236, 0.07); }
progressbar:backdrop {
box-shadow: none; }
progressbar progress {
@ -3316,7 +3316,7 @@ progressbar {
* Level Bar *
*************/
levelbar {
box-shadow: 0 1px rgba(238, 238, 236, 0.1);
box-shadow: 0 1px rgba(238, 238, 236, 0.07);
-GtkLevelBar-min-block-width: 34;
-GtkLevelBar-min-block-height: 3; }
levelbar.vertical {
@ -3330,7 +3330,7 @@ levelbar {
background-image: linear-gradient(to bottom, #1d2020, #242525 3px, #292929 90%);
color: white;
border-color: #1c1f1f;
box-shadow: inset 0 0 0 1px rgba(33, 93, 156, 0), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 0 0 1px rgba(33, 93, 156, 0), 0 1px rgba(238, 238, 236, 0.07); }
levelbar trough:backdrop {
background-color: transparent;
background-image: linear-gradient(to bottom, #1d2020, #242525 3px, #292929 90%);
@ -3567,7 +3567,7 @@ row:selected .titlebar button.titlebutton,
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #454c4c, #393f3f 40%, #2d3232);
background-image: linear-gradient(to bottom, #4a5252, #3e4444 40%, #323737);
text-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
@ -3585,9 +3585,9 @@ row:selected .titlebar button.titlebutton,
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
row:selected button:active, row:selected button:checked {
color: #eeeeec;
@ -3746,7 +3746,7 @@ messagedialog .dialog-action-area .titlebar button.titlebutton,
messagedialog .titlebar {
border-style: none;
box-shadow: inset 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(238, 238, 236, 0.07); }
messagedialog.csd.background {
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px; }
@ -3756,7 +3756,7 @@ messagedialog.csd .dialog-action-area button {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #454c4c, #393f3f 40%, #2d3232);
background-image: linear-gradient(to bottom, #4a5252, #3e4444 40%, #323737);
text-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
@ -3764,9 +3764,9 @@ messagedialog.csd .dialog-action-area button {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
messagedialog.csd .dialog-action-area button:active {
color: #eeeeec;
@ -3807,7 +3807,7 @@ messagedialog.csd .dialog-action-area button {
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #256ab1, #215d9c 40%, #1c5187);
background-image: linear-gradient(to bottom, #276fba, #2362a5 40%, #1e5690);
text-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
@ -3815,9 +3815,9 @@ messagedialog.csd .dialog-action-area button {
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #3180d4, #2467ad 40%, #215d9c);
text-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
background-image: linear-gradient(to bottom, #3986d5, #266cb5 40%, #2362a5);
text-shadow: 0 -1px rgba(0, 0, 0, 0.65553);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.65553);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
messagedialog.csd .dialog-action-area button.suggested-action:active {
color: white;
@ -3858,7 +3858,7 @@ messagedialog.csd .dialog-action-area button {
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #5e0707;
background-image: linear-gradient(to bottom, #ed1212, #d51010 40%, #bd0e0e);
background-image: linear-gradient(to bottom, #ee1b1b, #df1111 40%, #c70f0f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.64078);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.64078);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3); }
@ -3866,9 +3866,9 @@ messagedialog.csd .dialog-action-area button {
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #5e0707;
background-image: linear-gradient(to bottom, #f03c3c, #e81111 40%, #d51010);
text-shadow: 0 -1px rgba(0, 0, 0, 0.60878);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.60878);
background-image: linear-gradient(to bottom, #f14545, #ee1616 40%, #df1111);
text-shadow: 0 -1px rgba(0, 0, 0, 0.59278);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.59278);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3); }
messagedialog.csd .dialog-action-area button.destructive-action:active {
color: white;
@ -4046,7 +4046,7 @@ infobar {
color: #ffffff;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #256ab1, #215d9c 40%, #1c5187);
background-image: linear-gradient(to bottom, #276fba, #2362a5 40%, #1e5690);
text-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.70353);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
@ -4057,9 +4057,9 @@ infobar {
color: #ffffff;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0b1e33;
background-image: linear-gradient(to bottom, #3180d4, #2467ad 40%, #215d9c);
text-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.67153);
background-image: linear-gradient(to bottom, #3986d5, #266cb5 40%, #2362a5);
text-shadow: 0 -1px rgba(0, 0, 0, 0.65553);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.65553);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1); }
.info button:active,
.question button:active,
@ -4164,13 +4164,13 @@ tooltip {
* Color Chooser *
*****************/
colorswatch {
box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
:selected colorswatch {
box-shadow: none; }
:selected colorswatch overlay, :selected colorswatch overlay:hover {
border-color: #ffffff; }
colorswatch:selected {
box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
colorswatch.top {
border-top-left-radius: 6px;
border-top-right-radius: 6px; }
@ -4228,18 +4228,18 @@ colorswatch {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #454c4c, #393f3f 40%, #2d3232);
background-image: linear-gradient(to bottom, #4a5252, #3e4444 40%, #323737);
text-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.81176);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
colorswatch#add-color-button:hover {
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #1c1f1f;
background-image: linear-gradient(to bottom, #5b6464, #434a4a 40%, #393f3f);
text-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.77976);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.1); }
background-image: linear-gradient(to bottom, #606a6a, #484f4f 40%, #3e4444);
text-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.76376);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 1px rgba(238, 238, 236, 0.07); }
colorswatch#add-color-button:backdrop {
color: #949796;
border-color: #1f2222;
@ -4614,7 +4614,7 @@ read if you used those and something break with a version upgrade you're on your
@define-color wm_title shade(#eeeeec, 1.8);
@define-color wm_unfocused_title #949796;
@define-color wm_highlight transparent;
@define-color wm_borders_edge rgba(238, 238, 236, 0.1);
@define-color wm_borders_edge rgba(238, 238, 236, 0.07);
@define-color wm_bg_a shade(#393f3f, 1.2);
@define-color wm_bg_b #393f3f;
@define-color wm_shadow alpha(black, 0.35);

File diff suppressed because it is too large Load Diff