mirror of
https://github.com/horst3180/arc-theme.git
synced 2024-10-27 19:04:02 +00:00
selection-mode and infobar tweaks
This commit is contained in:
parent
ebe25db1b3
commit
51af4307b5
@ -1054,7 +1054,8 @@ GtkComboBox {
|
||||
}
|
||||
|
||||
// Selectionmode
|
||||
&.selection-mode {
|
||||
&.selection-mode,
|
||||
&.titlebar.selection-mode {
|
||||
color: $selected_fg_color;
|
||||
background-color: $selection_mode_bg;
|
||||
border-color: darken($selection_mode_bg, 4%);
|
||||
@ -1085,10 +1086,10 @@ GtkComboBox {
|
||||
border-color: transparentize($selected_fg_color, 0.5);
|
||||
}
|
||||
&:active, &:checked {
|
||||
color: $selected_fg_color;
|
||||
outline-color: transparentize($selected_fg_color, 0.7);
|
||||
background-color: transparentize(black, 0.8);
|
||||
border-color: transparentize(black, 0.8);
|
||||
color: $selection_mode_bg;
|
||||
outline-color: transparentize($selection_mode_bg, 0.7);
|
||||
background-color: $selected_fg_color;
|
||||
border-color: $selected_fg_color;
|
||||
}
|
||||
&:insensitive {
|
||||
color: transparentize($selected_fg_color, 0.6);
|
||||
@ -1096,9 +1097,9 @@ GtkComboBox {
|
||||
border-color: transparentize($selected_fg_color, 1);
|
||||
|
||||
&:active, &:checked {
|
||||
color: transparentize($selected_fg_color, 0.6);
|
||||
background-color: transparentize(black, 0.85);
|
||||
border-color: transparentize(black, 0.85);
|
||||
color: transparentize($selection_mode_bg, 0.6);
|
||||
background-color: transparentize($selected_fg_color, 0.85);
|
||||
border-color: transparentize($selected_fg_color, 0.85);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1184,7 +1185,6 @@ GtkComboBox {
|
||||
|
||||
&:focus {
|
||||
@include entry(header-focus);
|
||||
background-clip: border-box;
|
||||
|
||||
&.image { color: $selected_fg_color; }
|
||||
}
|
||||
@ -2420,10 +2420,10 @@ GtkInfoBar {
|
||||
border-color: transparentize($selected_fg_color, 0.2);
|
||||
}
|
||||
&:active, &:checked {
|
||||
color: $selected_fg_color;
|
||||
outline-color: transparentize($selected_fg_color, 0.7);
|
||||
background-color: transparentize(black, 0.8);
|
||||
border-color: transparentize($selected_fg_color, 0.2);
|
||||
color: $selected_bg_color;
|
||||
outline-color: transparentize($selected_bg_color, 0.7);
|
||||
background-color: $selected_fg_color;
|
||||
border-color: $selected_fg_color;
|
||||
}
|
||||
&:insensitive {
|
||||
color: transparentize($selected_fg_color, 0.6);
|
||||
@ -2431,8 +2431,8 @@ GtkInfoBar {
|
||||
border-color: transparentize($selected_fg_color, 0.8);
|
||||
|
||||
&:active, &:checked {
|
||||
color: transparentize($selected_fg_color, 0.6);
|
||||
background-color: transparentize(black, 0.9);
|
||||
color: transparentize($selected_bg_color, 0.6);
|
||||
background-color: transparentize($selected_fg_color, 0.8);
|
||||
border-color: transparentize($selected_fg_color, 0.8);
|
||||
}
|
||||
}
|
||||
|
@ -615,7 +615,7 @@ GtkFlowBox .grid-child {
|
||||
color: #a9caf1; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
border-color: rgba(65, 137, 223, 0.95);
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: rgba(82, 148, 226, 0.95);
|
||||
outline-color: rgba(82, 148, 226, 0.25);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.35);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -894,8 +894,7 @@ GtkComboBox {
|
||||
.primary-toolbar .entry:focus, .header-bar .entry:focus {
|
||||
color: #ffffff;
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2);
|
||||
background-clip: border-box; }
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
.primary-toolbar .entry:focus.image, .header-bar .entry:focus.image {
|
||||
color: #ffffff; }
|
||||
.primary-toolbar .entry:insensitive, .header-bar .entry:insensitive {
|
||||
@ -2007,17 +2006,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
|
@ -615,7 +615,7 @@ GtkFlowBox .grid-child {
|
||||
color: #2679db; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
border-color: rgba(65, 137, 223, 0.95);
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: rgba(82, 148, 226, 0.95);
|
||||
outline-color: rgba(82, 148, 226, 0.25);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.35);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -894,8 +894,7 @@ GtkComboBox {
|
||||
.primary-toolbar .entry:focus, .header-bar .entry:focus {
|
||||
color: #ffffff;
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2);
|
||||
background-clip: border-box; }
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
.primary-toolbar .entry:focus.image, .header-bar .entry:focus.image {
|
||||
color: #ffffff; }
|
||||
.primary-toolbar .entry:insensitive, .header-bar .entry:insensitive {
|
||||
@ -2008,17 +2007,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
|
@ -615,7 +615,7 @@ GtkFlowBox .grid-child {
|
||||
color: #a9caf1; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2;
|
||||
border-color: #4189df;
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: #5294E2;
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -894,8 +894,7 @@ GtkComboBox {
|
||||
.primary-toolbar .entry:focus, .header-bar .entry:focus {
|
||||
color: #ffffff;
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2);
|
||||
background-clip: border-box; }
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
.primary-toolbar .entry:focus.image, .header-bar .entry:focus.image {
|
||||
color: #ffffff; }
|
||||
.primary-toolbar .entry:insensitive, .header-bar .entry:insensitive {
|
||||
@ -2007,17 +2006,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
|
@ -615,7 +615,7 @@ GtkFlowBox .grid-child {
|
||||
color: #2679db; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2;
|
||||
border-color: #4189df;
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: #5294E2;
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -894,8 +894,7 @@ GtkComboBox {
|
||||
.primary-toolbar .entry:focus, .header-bar .entry:focus {
|
||||
color: #ffffff;
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2);
|
||||
background-clip: border-box; }
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
.primary-toolbar .entry:focus.image, .header-bar .entry:focus.image {
|
||||
color: #ffffff; }
|
||||
.primary-toolbar .entry:insensitive, .header-bar .entry:insensitive {
|
||||
@ -2008,17 +2007,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
|
@ -615,7 +615,7 @@ GtkFlowBox .grid-child {
|
||||
color: #2679db; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2;
|
||||
border-color: #4189df;
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: #5294E2;
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -894,8 +894,7 @@ GtkComboBox {
|
||||
.primary-toolbar .entry:focus, .header-bar .entry:focus {
|
||||
color: #ffffff;
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2);
|
||||
background-clip: border-box; }
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
.primary-toolbar .entry:focus.image, .header-bar .entry:focus.image {
|
||||
color: #ffffff; }
|
||||
.primary-toolbar .entry:insensitive, .header-bar .entry:insensitive {
|
||||
@ -2007,17 +2006,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
|
@ -615,7 +615,7 @@ GtkFlowBox .grid-child {
|
||||
color: #2679db; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
border-color: rgba(65, 137, 223, 0.95);
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: rgba(82, 148, 226, 0.95);
|
||||
outline-color: rgba(82, 148, 226, 0.25);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.35);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -894,8 +894,7 @@ GtkComboBox {
|
||||
.primary-toolbar .entry:focus, .header-bar .entry:focus {
|
||||
color: #ffffff;
|
||||
border-color: #5294E2;
|
||||
background-image: linear-gradient(to bottom, #5294E2);
|
||||
background-clip: border-box; }
|
||||
background-image: linear-gradient(to bottom, #5294E2); }
|
||||
.primary-toolbar .entry:focus.image, .header-bar .entry:focus.image {
|
||||
color: #ffffff; }
|
||||
.primary-toolbar .entry:insensitive, .header-bar .entry:insensitive {
|
||||
@ -2007,17 +2006,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
|
@ -1054,7 +1054,8 @@ GtkComboBox {
|
||||
}
|
||||
|
||||
// Selectionmode
|
||||
&.selection-mode {
|
||||
&.selection-mode,
|
||||
&.titlebar.selection-mode {
|
||||
color: $selected_fg_color;
|
||||
background-color: $selection_mode_bg;
|
||||
border-color: darken($selection_mode_bg, 4%);
|
||||
@ -1085,10 +1086,10 @@ GtkComboBox {
|
||||
border-color: transparentize($selected_fg_color, 0.5);
|
||||
}
|
||||
&:active, &:checked {
|
||||
color: $selected_fg_color;
|
||||
outline-color: transparentize($selected_fg_color, 0.7);
|
||||
background-color: transparentize(black, 0.8);
|
||||
border-color: transparentize(black, 0.8);
|
||||
color: $selection_mode_bg;
|
||||
outline-color: transparentize($selection_mode_bg, 0.7);
|
||||
background-color: $selected_fg_color;
|
||||
border-color: $selected_fg_color;
|
||||
}
|
||||
&:insensitive {
|
||||
color: transparentize($selected_fg_color, 0.6);
|
||||
@ -1096,9 +1097,9 @@ GtkComboBox {
|
||||
border-color: transparentize($selected_fg_color, 1);
|
||||
|
||||
&:active, &:checked {
|
||||
color: transparentize($selected_fg_color, 0.6);
|
||||
background-color: transparentize(black, 0.85);
|
||||
border-color: transparentize(black, 0.85);
|
||||
color: transparentize($selection_mode_bg, 0.6);
|
||||
background-color: transparentize($selected_fg_color, 0.85);
|
||||
border-color: transparentize($selected_fg_color, 0.85);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2537,10 +2538,10 @@ GtkInfoBar {
|
||||
border-color: transparentize($selected_fg_color, 0.2);
|
||||
}
|
||||
&:active, &:checked {
|
||||
color: $selected_fg_color;
|
||||
outline-color: transparentize($selected_fg_color, 0.7);
|
||||
background-color: transparentize(black, 0.8);
|
||||
border-color: transparentize($selected_fg_color, 0.2);
|
||||
color: $selected_bg_color;
|
||||
outline-color: transparentize($selected_bg_color, 0.7);
|
||||
background-color: $selected_fg_color;
|
||||
border-color: $selected_fg_color;
|
||||
}
|
||||
&:insensitive {
|
||||
color: transparentize($selected_fg_color, 0.6);
|
||||
@ -2548,8 +2549,8 @@ GtkInfoBar {
|
||||
border-color: transparentize($selected_fg_color, 0.8);
|
||||
|
||||
&:active, &:checked {
|
||||
color: transparentize($selected_fg_color, 0.6);
|
||||
background-color: transparentize(black, 0.9);
|
||||
color: transparentize($selected_bg_color, 0.6);
|
||||
background-color: transparentize($selected_fg_color, 0.8);
|
||||
border-color: transparentize($selected_fg_color, 0.8);
|
||||
}
|
||||
}
|
||||
|
@ -615,7 +615,7 @@ GtkTextView {
|
||||
color: #a9caf1; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
border-color: rgba(65, 137, 223, 0.95);
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: rgba(82, 148, 226, 0.95);
|
||||
outline-color: rgba(82, 148, 226, 0.25);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.35);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -2071,17 +2071,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
@ -3212,7 +3212,8 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: rgba(36, 39, 45, 0.97); }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
GtkFileChooserDialog .dialog-action-box,
|
||||
GtkFileChooserDialog .dialog-vbox {
|
||||
background-color: #444852; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
|
@ -615,7 +615,7 @@ GtkTextView {
|
||||
color: #2679db; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
border-color: rgba(65, 137, 223, 0.95);
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: rgba(82, 148, 226, 0.95);
|
||||
outline-color: rgba(82, 148, 226, 0.25);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.35);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -2072,17 +2072,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
@ -3213,7 +3213,8 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: rgba(31, 34, 39, 0.97); }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
GtkFileChooserDialog .dialog-action-box,
|
||||
GtkFileChooserDialog .dialog-vbox {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
|
@ -615,7 +615,7 @@ GtkTextView {
|
||||
color: #a9caf1; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2;
|
||||
border-color: #4189df;
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: #5294E2;
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -2071,17 +2071,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
@ -3212,7 +3212,8 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: #24272d; }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
GtkFileChooserDialog .dialog-action-box,
|
||||
GtkFileChooserDialog .dialog-vbox {
|
||||
background-color: #444852; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
|
@ -615,7 +615,7 @@ GtkTextView {
|
||||
color: #2679db; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2;
|
||||
border-color: #4189df;
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: #5294E2;
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -2072,17 +2072,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
@ -3213,7 +3213,8 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: #1f2227; }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
GtkFileChooserDialog .dialog-action-box,
|
||||
GtkFileChooserDialog .dialog-vbox {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
|
@ -615,7 +615,7 @@ GtkTextView {
|
||||
color: #2679db; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: #5294E2;
|
||||
border-color: #4189df;
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: #5294E2;
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -2071,17 +2071,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
@ -3212,7 +3212,8 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: #d4d5db; }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
GtkFileChooserDialog .dialog-action-box,
|
||||
GtkFileChooserDialog .dialog-vbox {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
|
@ -615,7 +615,7 @@ GtkTextView {
|
||||
color: #2679db; }
|
||||
*:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited {
|
||||
color: #dce9f9; }
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
*:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited {
|
||||
color: #dce9f9; }
|
||||
|
||||
/*****************
|
||||
@ -797,52 +797,52 @@ GtkComboBox {
|
||||
.header-bar .subtitle {
|
||||
font-size: smaller;
|
||||
padding: 0 12px; }
|
||||
.header-bar.selection-mode {
|
||||
.header-bar.selection-mode, .header-bar.titlebar.selection-mode {
|
||||
color: #ffffff;
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
border-color: rgba(65, 137, 223, 0.95);
|
||||
box-shadow: none; }
|
||||
.header-bar.selection-mode:backdrop {
|
||||
.header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop {
|
||||
background-color: rgba(82, 148, 226, 0.95);
|
||||
color: rgba(255, 255, 255, 0.6); }
|
||||
.header-bar.selection-mode .button {
|
||||
.header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button.flat {
|
||||
.header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
background-image: none;
|
||||
color: #ffffff;
|
||||
background-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:hover {
|
||||
.header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
border-color: rgba(255, 255, 255, 0.5); }
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(0, 0, 0, 0.2); }
|
||||
.header-bar.selection-mode .button:insensitive {
|
||||
.header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked {
|
||||
color: rgba(82, 148, 226, 0.95);
|
||||
outline-color: rgba(82, 148, 226, 0.25);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0); }
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
border-color: rgba(0, 0, 0, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu {
|
||||
.header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked {
|
||||
color: rgba(82, 148, 226, 0.35);
|
||||
background-color: rgba(255, 255, 255, 0.15);
|
||||
border-color: rgba(255, 255, 255, 0.15); }
|
||||
.header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu {
|
||||
box-shadow: none;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px; }
|
||||
.header-bar.selection-mode .selection-menu GtkArrow {
|
||||
.header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow {
|
||||
-GtkArrow-arrow-scaling: 1; }
|
||||
.header-bar.selection-mode .selection-menu .arrow {
|
||||
.header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow {
|
||||
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
||||
.maximized .header-bar.selection-mode {
|
||||
.maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode {
|
||||
background-color: #5294e2; }
|
||||
.tiled .header-bar, .tiled .header-bar:backdrop, .maximized .header-bar, .maximized .header-bar:backdrop {
|
||||
border-radius: 0; }
|
||||
@ -2071,17 +2071,17 @@ GtkInfoBar {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
.list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:checked, GtkInfoBar .button:checked {
|
||||
color: #ffffff;
|
||||
outline-color: rgba(255, 255, 255, 0.3);
|
||||
background-color: rgba(0, 0, 0, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.8); }
|
||||
color: #5294E2;
|
||||
outline-color: rgba(82, 148, 226, 0.3);
|
||||
background-color: #ffffff;
|
||||
border-color: #ffffff; }
|
||||
.list-row:selected .button:insensitive, GtkInfoBar .button:insensitive {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
.list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
background-color: rgba(0, 0, 0, 0.1);
|
||||
color: rgba(82, 148, 226, 0.4);
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
border-color: rgba(255, 255, 255, 0.2); }
|
||||
|
||||
/************
|
||||
@ -3212,7 +3212,8 @@ GtkListBox .h4 {
|
||||
.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator {
|
||||
color: rgba(212, 213, 219, 0.95); }
|
||||
|
||||
GtkFileChooserDialog .dialog-action-box {
|
||||
GtkFileChooserDialog .dialog-action-box,
|
||||
GtkFileChooserDialog .dialog-vbox {
|
||||
background-color: #F5F6F7; }
|
||||
|
||||
NemoWindow GtkEventBox {
|
||||
|
Loading…
Reference in New Issue
Block a user