forked from AuroraMiddleware/gtk
10d260ec71
Fix up the paper drawing.
1633 lines
120 KiB
CSS
1633 lines
120 KiB
CSS
/* GTK NAMED COLORS */
|
|
@define-color theme_fg_color #fff;
|
|
@define-color theme_bg_color #000;
|
|
@define-color theme_base_color #111;
|
|
@define-color theme_selected_bg_color #ddd;
|
|
@define-color theme_selected_fg_color #000;
|
|
@define-color insensitive_bg_color #070707;
|
|
@define-color insensitive_fg_color gray;
|
|
@define-color insensitive_base_color #111;
|
|
@define-color theme_unfocused_fg_color #fff;
|
|
@define-color theme_unfocused_bg_color #000;
|
|
@define-color theme_unfocused_base_color #111;
|
|
@define-color theme_unfocused_selected_bg_color #ddd;
|
|
@define-color theme_unfocused_selected_fg_color #000;
|
|
@define-color unfocused_insensitive_color gray;
|
|
@define-color borders gray;
|
|
@define-color unfocused_borders #737373;
|
|
@define-color warning_color #f57900;
|
|
@define-color error_color #cc0000;
|
|
@define-color success_color #73d216;
|
|
@define-color wm_title shade(#fff, 1.8);
|
|
@define-color wm_unfocused_title #fff;
|
|
@define-color wm_highlight #000;
|
|
@define-color wm_borders_edge #000;
|
|
@define-color wm_bg_a shade(#000, 1.2);
|
|
@define-color wm_bg_b #000;
|
|
@define-color wm_shadow alpha(black, 0.35);
|
|
@define-color wm_border alpha(black, 0.18);
|
|
@define-color wm_button_hover_color_a shade(#000, 1.3);
|
|
@define-color wm_button_hover_color_b #000;
|
|
@define-color wm_button_active_color_a shade(#000, 0.85);
|
|
@define-color wm_button_active_color_b shade(#000, 0.89);
|
|
@define-color wm_button_active_color_c shade(#000, 0.9);
|
|
@define-color content_view_bg #111;
|
|
* { padding: 0; -gtk-icon-style: symbolic; outline-style: none; }
|
|
|
|
button:focus, checkbutton:focus, radiobutton:focus, switch:focus, scale:focus, label:focus, row:focus, flowboxchild:focus { outline-color: currentColor; outline-style: dashed; outline-offset: -4px; outline-width: 2px; -gtk-outline-radius: 2px; }
|
|
|
|
/*************** Base States * */
|
|
.background { color: #fff; background-color: #000; }
|
|
|
|
.background:backdrop { text-shadow: none; -gtk-icon-shadow: none; color: white; background-color: #000; }
|
|
|
|
/* These wildcard seems unavoidable, need to investigate. Wildcards are bad and troublesome, use them with care, or better, just don't. Everytime a wildcard is used a kitten dies, painfully. */
|
|
*:disabled { -gtk-icon-filter: opacity(0.5); }
|
|
|
|
.gtkstyle-fallback { background-color: #000; color: #fff; }
|
|
|
|
.gtkstyle-fallback:hover { background-color: #1a1a1a; color: #fff; }
|
|
|
|
.gtkstyle-fallback:active { background-color: black; color: #fff; }
|
|
|
|
.gtkstyle-fallback:disabled { background-color: #070707; color: gray; }
|
|
|
|
.gtkstyle-fallback:selected { background-color: #ddd; color: #000; }
|
|
|
|
.normal-icons { -gtk-icon-size: 16px; }
|
|
|
|
.large-icons { -gtk-icon-size: 32px; }
|
|
|
|
.view, textview text, iconview { color: #fff; background-color: #111; }
|
|
|
|
.view:backdrop, textview text:backdrop, iconview:backdrop { color: #fff; background-color: #111; }
|
|
|
|
.view:disabled, textview text:disabled, iconview:disabled { color: gray; background-color: #070707; }
|
|
|
|
.rubberband, rubberband, flowbox rubberband, treeview.view rubberband { border: 1px solid #ddd; background-color: rgba(221, 221, 221, 0.2); }
|
|
|
|
flowbox flowboxchild { padding: 3px; border-radius: 3px; }
|
|
|
|
flowbox flowboxchild:selected { outline-offset: -2px; }
|
|
|
|
label:disabled, label:backdrop:disabled { color: gray; }
|
|
|
|
popover.background.touch-selection, popover.background.magnifier, .csd popover.background.touch-selection, .csd popover.background.magnifier, popover.background.osd, .csd popover.background.osd, .osd { color: #fff; border: none; background-color: rgba(0, 0, 0, 0.8); background-clip: padding-box; }
|
|
|
|
popover.background.touch-selection:backdrop, popover.background.magnifier:backdrop, popover.background.osd:backdrop, .osd:backdrop { text-shadow: none; -gtk-icon-shadow: none; }
|
|
|
|
/********************* Spinner Animation * */
|
|
@keyframes spin { to { -gtk-icon-transform: rotate(1turn); } }
|
|
|
|
spinner { background-image: none; opacity: 0; -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); }
|
|
|
|
spinner:checked { opacity: 1; animation: spin 1s linear infinite; }
|
|
|
|
spinner:checked:disabled { opacity: 0.5; }
|
|
|
|
/**************** Text Entries * */
|
|
spinbutton:not(.vertical), spinbutton.vertical text, entry { min-height: 32px; padding-left: 8px; padding-right: 8px; border: 1px solid; border-radius: 3px; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); color: #fff; border-color: gray; box-shadow: inset 0 2px 2px -2px #090909; }
|
|
|
|
spinbutton:not(.vertical) image.left, spinbutton.vertical text image.left, entry image.left { padding-left: 0; padding-right: 6px; }
|
|
|
|
spinbutton:not(.vertical) image.right, spinbutton.vertical text image.right, entry image.right { padding-left: 6px; padding-right: 0; }
|
|
|
|
spinbutton:not(.vertical) undershoot.left, spinbutton.vertical text undershoot.left, entry undershoot.left { background-color: transparent; background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); padding-left: 1px; background-size: 1px 10px; background-repeat: repeat-y; background-origin: content-box; background-position: left center; border: none; box-shadow: none; }
|
|
|
|
spinbutton:not(.vertical) undershoot.right, spinbutton.vertical text undershoot.right, entry undershoot.right { background-color: transparent; background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); padding-right: 1px; background-size: 1px 10px; background-repeat: repeat-y; background-origin: content-box; background-position: right center; border: none; box-shadow: none; }
|
|
|
|
spinbutton.flat:focus:not(.vertical), spinbutton.vertical text.flat:focus, spinbutton.flat:backdrop:not(.vertical), spinbutton.vertical text.flat:backdrop, spinbutton.flat:disabled:not(.vertical), spinbutton.vertical text.flat:disabled, spinbutton.flat:not(.vertical), spinbutton.vertical text.flat, entry.flat:focus, entry.flat:backdrop, entry.flat:disabled, entry.flat { min-height: 0; padding: 2px; background-image: none; border-color: transparent; border-radius: 0; box-shadow: none; }
|
|
|
|
treeview spinbutton.flat:focus:not(.vertical), treeview spinbutton.vertical text.flat:focus, spinbutton.vertical treeview text.flat:focus, treeview entry.flat:focus { background-color: #111; }
|
|
|
|
spinbutton:focus:not(.vertical), spinbutton.vertical text:focus, entry:focus { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); border-color: #ddd; box-shadow: inset 0 2px 2px -2px #090909, inset 0 0 0 1px #ddd; }
|
|
|
|
spinbutton:disabled:not(.vertical), spinbutton.vertical text:disabled, entry:disabled { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); color: gray; border-color: gray; background-image: linear-gradient(to bottom, #070707, #070707); box-shadow: none; }
|
|
|
|
spinbutton:backdrop:not(.vertical), spinbutton.vertical text:backdrop, entry:backdrop { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); color: #fff; background-image: linear-gradient(to bottom, #111, #111); box-shadow: 0 1px rgba(255, 255, 255, 0); }
|
|
|
|
spinbutton:backdrop:disabled:not(.vertical), spinbutton.vertical text:backdrop:disabled, entry:backdrop:disabled { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); color: gray; background-image: linear-gradient(to bottom, #000, #000); box-shadow: 0 1px rgba(255, 255, 255, 0); }
|
|
|
|
spinbutton.error:not(.vertical), spinbutton.vertical text.error, entry.error { color: #cc0000; border-color: #1a0000; }
|
|
|
|
spinbutton.error:focus:not(.vertical), spinbutton.vertical text.error:focus, entry.error:focus { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); border-color: #cc0000; box-shadow: inset 0 2px 2px -2px #090909, inset 0 0 0 1px #cc0000; }
|
|
|
|
spinbutton.error:selected:focus:not(.vertical), spinbutton.vertical text.error:selected:focus, spinbutton.error:selected:not(.vertical), spinbutton.vertical text.error:selected, entry.error:selected:focus, entry.error:selected { background-color: #cc0000; }
|
|
|
|
spinbutton.warning:not(.vertical), spinbutton.vertical text.warning, entry.warning { color: #f57900; border-color: #432100; }
|
|
|
|
spinbutton.warning:focus:not(.vertical), spinbutton.vertical text.warning:focus, entry.warning:focus { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); border-color: #f57900; box-shadow: inset 0 2px 2px -2px #090909, inset 0 0 0 1px #f57900; }
|
|
|
|
spinbutton.warning:selected:focus:not(.vertical), spinbutton.vertical text.warning:selected:focus, spinbutton.warning:selected:not(.vertical), spinbutton.vertical text.warning:selected, entry.warning:selected:focus, entry.warning:selected { background-color: #f57900; }
|
|
|
|
spinbutton:not(.vertical) image, spinbutton.vertical text image, entry image { color: #cfcfcf; }
|
|
|
|
spinbutton:not(.vertical) image:hover, spinbutton.vertical text image:hover, entry image:hover { color: #fff; }
|
|
|
|
spinbutton:not(.vertical) image:active, spinbutton.vertical text image:active, entry image:active { color: #ddd; }
|
|
|
|
spinbutton:not(.vertical) image:backdrop, spinbutton.vertical text image:backdrop, entry image:backdrop { color: #cfcfcf; }
|
|
|
|
spinbutton:drop(active):focus:not(.vertical), spinbutton.vertical text:drop(active):focus, spinbutton:drop(active):not(.vertical), spinbutton.vertical text:drop(active), entry:drop(active):focus, entry:drop(active) { border-color: #fff; box-shadow: inset 0 0 0 1px #fff; }
|
|
|
|
.osd spinbutton:not(.vertical), .osd spinbutton.vertical text, spinbutton.vertical .osd text, .osd entry { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); }
|
|
|
|
.osd spinbutton:focus:not(.vertical), .osd spinbutton.vertical text:focus, spinbutton.vertical .osd text:focus, .osd entry:focus { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); }
|
|
|
|
.osd spinbutton:backdrop:not(.vertical), .osd spinbutton.vertical text:backdrop, spinbutton.vertical .osd text:backdrop, .osd entry:backdrop { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); }
|
|
|
|
.osd spinbutton:disabled:not(.vertical), .osd spinbutton.vertical text:disabled, spinbutton.vertical .osd text:disabled, .osd entry:disabled { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); }
|
|
|
|
spinbutton:not(.vertical) progress, spinbutton.vertical text progress, entry progress { margin: 2px -6px; background-color: transparent; background-image: none; border-radius: 0; border-width: 0 0 2px; border-color: #ddd; border-style: solid; box-shadow: none; }
|
|
|
|
spinbutton:not(.vertical) progress:backdrop, spinbutton.vertical text progress:backdrop, entry progress:backdrop { background-color: transparent; }
|
|
|
|
.linked:not(.vertical) > spinbutton:focus:not(.vertical) + spinbutton:not(.vertical), spinbutton.vertical .linked:not(.vertical) > text:focus + spinbutton:not(.vertical), spinbutton.vertical .linked:not(.vertical) > spinbutton:focus:not(.vertical) + text, spinbutton.vertical .linked:not(.vertical) > text:focus + text, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + button, spinbutton.vertical .linked:not(.vertical) > text:focus + button, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + combobox > box > button.combo, spinbutton.vertical .linked:not(.vertical) > text:focus + combobox > box > button.combo, .linked:not(.vertical) > entry:focus + spinbutton:not(.vertical), spinbutton.vertical .linked:not(.vertical) > entry:focus + text, .linked:not(.vertical) > entry:focus + button, .linked:not(.vertical) > entry:focus + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus:not(.vertical) + entry, spinbutton.vertical .linked:not(.vertical) > text:focus + entry, .linked:not(.vertical) > entry:focus + entry { border-left-color: #aaa; }
|
|
|
|
.linked:not(.vertical) > spinbutton:focus.error:not(.vertical) + spinbutton:not(.vertical), spinbutton.vertical .linked:not(.vertical) > text:focus.error + spinbutton:not(.vertical), spinbutton.vertical .linked:not(.vertical) > spinbutton:focus.error:not(.vertical) + text, spinbutton.vertical .linked:not(.vertical) > text:focus.error + text, .linked:not(.vertical) > spinbutton:focus.error:not(.vertical) + button, spinbutton.vertical .linked:not(.vertical) > text:focus.error + button, .linked:not(.vertical) > spinbutton:focus.error:not(.vertical) + combobox > box > button.combo, spinbutton.vertical .linked:not(.vertical) > text:focus.error + combobox > box > button.combo, .linked:not(.vertical) > entry:focus.error + spinbutton:not(.vertical), spinbutton.vertical .linked:not(.vertical) > entry:focus.error + text, .linked:not(.vertical) > entry:focus.error + button, .linked:not(.vertical) > entry:focus.error + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:focus.error:not(.vertical) + entry, spinbutton.vertical .linked:not(.vertical) > text:focus.error + entry, .linked:not(.vertical) > entry:focus.error + entry { border-left-color: #cc0000; }
|
|
|
|
.linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + spinbutton:not(.vertical), spinbutton.vertical .linked:not(.vertical) > text:drop(active) + spinbutton:not(.vertical), spinbutton.vertical .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + text, spinbutton.vertical .linked:not(.vertical) > text:drop(active) + text, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + button, spinbutton.vertical .linked:not(.vertical) > text:drop(active) + button, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + combobox > box > button.combo, spinbutton.vertical .linked:not(.vertical) > text:drop(active) + combobox > box > button.combo, .linked:not(.vertical) > entry:drop(active) + spinbutton:not(.vertical), spinbutton.vertical .linked:not(.vertical) > entry:drop(active) + text, .linked:not(.vertical) > entry:drop(active) + button, .linked:not(.vertical) > entry:drop(active) + combobox > box > button.combo, .linked:not(.vertical) > spinbutton:drop(active):not(.vertical) + entry, spinbutton.vertical .linked:not(.vertical) > text:drop(active) + entry, .linked:not(.vertical) > entry:drop(active) + entry { border-left-color: #fff; }
|
|
|
|
.linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled), spinbutton.vertical .linked.vertical > text:not(:disabled) + entry:not(:disabled), .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):not(.vertical), spinbutton.vertical .linked.vertical > text:not(:disabled) + spinbutton:not(:disabled):not(.vertical), spinbutton.vertical .linked.vertical > spinbutton:not(:disabled):not(.vertical) + text:not(:disabled), spinbutton.vertical .linked.vertical > text:not(:disabled) + text:not(:disabled), .linked.vertical > entry:not(:disabled) + entry:not(:disabled), .linked.vertical > entry:not(:disabled) + spinbutton:not(:disabled):not(.vertical), spinbutton.vertical .linked.vertical > entry:not(:disabled) + text:not(:disabled) { border-top-color: #323232; background-image: linear-gradient(to bottom, #111, #111); }
|
|
|
|
.linked.vertical > spinbutton:not(:disabled):not(.vertical) + entry:not(:disabled):backdrop, spinbutton.vertical .linked.vertical > text:not(:disabled) + entry:not(:disabled):backdrop, .linked.vertical > spinbutton:not(:disabled):not(.vertical) + spinbutton:not(:disabled):backdrop:not(.vertical), spinbutton.vertical .linked.vertical > text:not(:disabled) + spinbutton:not(:disabled):backdrop:not(.vertical), spinbutton.vertical .linked.vertical > spinbutton:not(:disabled):not(.vertical) + text:not(:disabled):backdrop, spinbutton.vertical .linked.vertical > text:not(:disabled) + text:not(:disabled):backdrop, .linked.vertical > entry:not(:disabled) + entry:not(:disabled):backdrop, .linked.vertical > entry:not(:disabled) + spinbutton:not(:disabled):backdrop:not(.vertical), spinbutton.vertical .linked.vertical > entry:not(:disabled) + text:not(:disabled):backdrop { border-top-color: #2e2e2e; background-image: linear-gradient(to bottom, #111, #111); }
|
|
|
|
.linked.vertical > spinbutton:disabled:not(.vertical) + spinbutton:disabled:not(.vertical), spinbutton.vertical .linked.vertical > text:disabled + spinbutton:disabled:not(.vertical), spinbutton.vertical .linked.vertical > spinbutton:disabled:not(.vertical) + text:disabled, spinbutton.vertical .linked.vertical > text:disabled + text:disabled, .linked.vertical > spinbutton:disabled:not(.vertical) + entry:disabled, spinbutton.vertical .linked.vertical > text:disabled + entry:disabled, .linked.vertical > entry:disabled + spinbutton:disabled:not(.vertical), spinbutton.vertical .linked.vertical > entry:disabled + text:disabled, .linked.vertical > entry:disabled + entry:disabled { border-top-color: #323232; }
|
|
|
|
.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus:not(:only-child):not(.vertical), spinbutton.vertical .linked.vertical > text + spinbutton:focus:not(:only-child):not(.vertical), spinbutton.vertical .linked.vertical > spinbutton:not(.vertical) + text:focus:not(:only-child), spinbutton.vertical .linked.vertical > text + text:focus:not(:only-child), .linked.vertical > spinbutton:not(.vertical) + entry:focus:not(:only-child), spinbutton.vertical .linked.vertical > text + entry:focus:not(:only-child), .linked.vertical > entry + spinbutton:focus:not(:only-child):not(.vertical), spinbutton.vertical .linked.vertical > entry + text:focus:not(:only-child), .linked.vertical > entry + entry:focus:not(:only-child) { border-top-color: #aaa; }
|
|
|
|
.linked.vertical > spinbutton:not(.vertical) + spinbutton:focus.error:not(:only-child):not(.vertical), spinbutton.vertical .linked.vertical > text + spinbutton:focus.error:not(:only-child):not(.vertical), spinbutton.vertical .linked.vertical > spinbutton:not(.vertical) + text:focus.error:not(:only-child), spinbutton.vertical .linked.vertical > text + text:focus.error:not(:only-child), .linked.vertical > spinbutton:not(.vertical) + entry:focus.error:not(:only-child), spinbutton.vertical .linked.vertical > text + entry:focus.error:not(:only-child), .linked.vertical > entry + spinbutton:focus.error:not(:only-child):not(.vertical), spinbutton.vertical .linked.vertical > entry + text:focus.error:not(:only-child), .linked.vertical > entry + entry:focus.error:not(:only-child) { border-top-color: #cc0000; }
|
|
|
|
.linked.vertical > spinbutton:not(.vertical) + spinbutton:drop(active):not(:only-child):not(.vertical), spinbutton.vertical .linked.vertical > text + spinbutton:drop(active):not(:only-child):not(.vertical), spinbutton.vertical .linked.vertical > spinbutton:not(.vertical) + text:drop(active):not(:only-child), spinbutton.vertical .linked.vertical > text + text:drop(active):not(:only-child), .linked.vertical > spinbutton:not(.vertical) + entry:drop(active):not(:only-child), spinbutton.vertical .linked.vertical > text + entry:drop(active):not(:only-child), .linked.vertical > entry + spinbutton:drop(active):not(:only-child):not(.vertical), spinbutton.vertical .linked.vertical > entry + text:drop(active):not(:only-child), .linked.vertical > entry + entry:drop(active):not(:only-child) { border-top-color: #fff; }
|
|
|
|
.linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + spinbutton:not(.vertical), spinbutton.vertical .linked.vertical > text:focus:not(:only-child) + spinbutton:not(.vertical), spinbutton.vertical .linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + text, spinbutton.vertical .linked.vertical > text:focus:not(:only-child) + text, .linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + entry, spinbutton.vertical .linked.vertical > text:focus:not(:only-child) + entry, .linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + button, spinbutton.vertical .linked.vertical > text:focus:not(:only-child) + button, .linked.vertical > spinbutton:focus:not(:only-child):not(.vertical) + combobox > box > button.combo, spinbutton.vertical .linked.vertical > text:focus:not(:only-child) + combobox > box > button.combo, .linked.vertical > entry:focus:not(:only-child) + spinbutton:not(.vertical), spinbutton.vertical .linked.vertical > entry:focus:not(:only-child) + text, .linked.vertical > entry:focus:not(:only-child) + entry, .linked.vertical > entry:focus:not(:only-child) + button, .linked.vertical > entry:focus:not(:only-child) + combobox > box > button.combo { border-top-color: #aaa; }
|
|
|
|
.linked.vertical > spinbutton:focus.error:not(:only-child):not(.vertical) + spinbutton:not(.vertical), spinbutton.vertical .linked.vertical > text:focus.error:not(:only-child) + spinbutton:not(.vertical), spinbutton.vertical .linked.vertical > spinbutton:focus.error:not(:only-child):not(.vertical) + text, spinbutton.vertical .linked.vertical > text:focus.error:not(:only-child) + text, .linked.vertical > spinbutton:focus.error:not(:only-child):not(.vertical) + entry, spinbutton.vertical .linked.vertical > text:focus.error:not(:only-child) + entry, .linked.vertical > spinbutton:focus.error:not(:only-child):not(.vertical) + button, spinbutton.vertical .linked.vertical > text:focus.error:not(:only-child) + button, .linked.vertical > spinbutton:focus.error:not(:only-child):not(.vertical) + combobox > box > button.combo, spinbutton.vertical .linked.vertical > text:focus.error:not(:only-child) + combobox > box > button.combo, .linked.vertical > entry:focus.error:not(:only-child) + spinbutton:not(.vertical), spinbutton.vertical .linked.vertical > entry:focus.error:not(:only-child) + text, .linked.vertical > entry:focus.error:not(:only-child) + entry, .linked.vertical > entry:focus.error:not(:only-child) + button, .linked.vertical > entry:focus.error:not(:only-child) + combobox > box > button.combo { border-top-color: #cc0000; }
|
|
|
|
.linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + spinbutton:not(.vertical), spinbutton.vertical .linked.vertical > text:drop(active):not(:only-child) + spinbutton:not(.vertical), spinbutton.vertical .linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + text, spinbutton.vertical .linked.vertical > text:drop(active):not(:only-child) + text, .linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + entry, spinbutton.vertical .linked.vertical > text:drop(active):not(:only-child) + entry, .linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + button, spinbutton.vertical .linked.vertical > text:drop(active):not(:only-child) + button, .linked.vertical > spinbutton:drop(active):not(:only-child):not(.vertical) + combobox > box > button.combo, spinbutton.vertical .linked.vertical > text:drop(active):not(:only-child) + combobox > box > button.combo, .linked.vertical > entry:drop(active):not(:only-child) + spinbutton:not(.vertical), spinbutton.vertical .linked.vertical > entry:drop(active):not(:only-child) + text, .linked.vertical > entry:drop(active):not(:only-child) + entry, .linked.vertical > entry:drop(active):not(:only-child) + button, .linked.vertical > entry:drop(active):not(:only-child) + combobox > box > button.combo { border-top-color: #fff; }
|
|
|
|
/*********** Buttons * */
|
|
@keyframes needs_attention { from { background-image: radial-gradient(#ddd 0%, rgba(221, 221, 221, 0) 0%); }
|
|
to { background-image: radial-gradient(#ddd 68%, rgba(221, 221, 221, 0) 70%); } }
|
|
|
|
button.titlebutton, button { min-height: 24px; min-width: 16px; padding: 4px 8px; border: 1px solid; border-radius: 3px; transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: #000; border-color: gray; }
|
|
|
|
button.titlebutton:disabled, button:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
button.titlebutton:disabled:active, button.titlebutton:disabled:checked, button:disabled:active, button:disabled:checked { border-width: 2px; border-style: solid; color: gray; border-color: #494949; background-image: none; background-color: #070707; }
|
|
|
|
button.titlebutton:backdrop, button:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: #737373; background-image: none; -gtk-icon-filter: none; }
|
|
|
|
button.titlebutton:backdrop:active, button.titlebutton:backdrop:checked, button:backdrop:active, button:backdrop:checked { border-width: 2px; border-style: solid; color: black; background-color: #737373; border-color: #737373; background-image: none; }
|
|
|
|
button.titlebutton:backdrop:disabled, button:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
button.titlebutton:backdrop:disabled:active, button.titlebutton:backdrop:disabled:checked, button:backdrop:disabled:active, button:backdrop:disabled:checked { border-width: 2px; border-style: solid; color: gray; border-color: #494949; background-image: none; background-color: #090909; }
|
|
|
|
button.sidebar-button, button.titlebutton, button.flat.titlebutton, button.flat { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; transition: none; }
|
|
|
|
button.sidebar-button:hover, button.titlebutton:hover, button.flat.titlebutton:hover, button.flat:hover { transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); transition-duration: 500ms; }
|
|
|
|
button.sidebar-button:hover:active, button.titlebutton:hover:active, button.flat.titlebutton:hover:active, button.flat:hover:active { transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
|
|
|
|
button.sidebar-button:backdrop, button.titlebutton:backdrop, button.sidebar-button:disabled, button.titlebutton:disabled, button.sidebar-button:backdrop:disabled, button.titlebutton:backdrop:disabled, button.flat.titlebutton:backdrop, button.flat.titlebutton:disabled, button.flat.titlebutton:backdrop:disabled, button.flat:backdrop, button.flat:disabled, button.flat:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: transparent; background-image: none; border-color: transparent; }
|
|
|
|
button.titlebutton:hover, button.flat.titlebutton:hover, button:hover, button.flat:hover { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: gray; background-image: none; -gtk-icon-filter: brightness(1.2); }
|
|
|
|
button.titlebutton:active, button.titlebutton:checked, button:active, button:checked { border-width: 2px; border-style: solid; background-image: none; color: black; background-color: white; border-color: gray; transition-duration: 50ms; }
|
|
|
|
button.image-button.titlebutton, button.image-button { min-width: 24px; padding-left: 4px; padding-right: 4px; }
|
|
|
|
button.text-button.titlebutton, button.text-button { padding-left: 16px; padding-right: 16px; }
|
|
|
|
button.text-button.image-button.titlebutton, button.text-button.image-button { padding-left: 8px; padding-right: 8px; }
|
|
|
|
button.text-button.image-button.titlebutton label, button.text-button.image-button label { padding-left: 8px; padding-right: 8px; }
|
|
|
|
combobox:drop(active) button.combo, button.titlebutton:drop(active), button:drop(active) { color: #fff; border-color: #fff; box-shadow: inset 0 0 0 1px #fff; }
|
|
|
|
row:selected button.sidebar-button:not(:active):not(:checked):not(:hover):not(disabled), row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled) { color: #000; border-color: transparent; }
|
|
|
|
row:selected button.sidebar-button:not(:active):not(:checked):not(:hover):not(disabled):backdrop, row:selected button.flat:not(:active):not(:checked):not(:hover):not(disabled):backdrop { color: #fff; }
|
|
|
|
button.osd { color: #fff; border-radius: 5px; border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.2); border: none; box-shadow: none; }
|
|
|
|
button.osd.image-button { min-height: 48px; min-width: 48px; }
|
|
|
|
button.osd:hover { border-width: 2px; border-style: solid; color: #fff; background-color: rgba(77, 77, 77, 0.8); border-color: rgba(255, 255, 255, 0.2); border: none; box-shadow: none; }
|
|
|
|
button.osd:active, button.osd:checked { border-width: 2px; border-style: solid; color: rgba(0, 0, 0, 0.8); background-color: #fff; border-color: rgba(255, 255, 255, 0.2); box-shadow: none; border: none; box-shadow: none; }
|
|
|
|
button.osd:disabled:backdrop, button.osd:disabled { border-width: 2px; border-style: solid; border-color: rgba(255, 255, 255, 0.2); color: gray; border: none; }
|
|
|
|
button.osd:backdrop { border-width: 2px; border-style: solid; border: none; }
|
|
|
|
popover.background.touch-selection button, popover.background.magnifier button, .csd popover.background.touch-selection button, .csd popover.background.magnifier button, .osd button { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
popover.background.touch-selection button:hover, popover.background.magnifier button:hover, .osd button:hover { border-width: 2px; border-style: solid; color: #fff; background-color: rgba(77, 77, 77, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
popover.background.touch-selection button:active:backdrop, popover.background.magnifier button:active:backdrop, popover.background.touch-selection button:active, popover.background.magnifier button:active, popover.background.touch-selection button:checked:backdrop, popover.background.magnifier button:checked:backdrop, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, .osd button:active:backdrop, .osd button:active, .osd button:checked:backdrop, .osd button:checked { border-width: 2px; border-style: solid; color: rgba(0, 0, 0, 0.8); background-color: #fff; border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
|
|
|
|
popover.background.touch-selection button:disabled:backdrop, popover.background.magnifier button:disabled:backdrop, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, .osd button:disabled:backdrop, .osd button:disabled { border-width: 2px; border-style: solid; border-color: rgba(255, 255, 255, 0.2); color: gray; }
|
|
|
|
popover.background.touch-selection button:backdrop, popover.background.magnifier button:backdrop, .osd button:backdrop { border-width: 2px; border-style: solid; }
|
|
|
|
popover.background.touch-selection button.flat, popover.background.magnifier button.flat, .osd button.flat { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; box-shadow: none; text-shadow: 0 1px black; -gtk-icon-shadow: 0 1px black; }
|
|
|
|
popover.background.touch-selection button.flat:hover, popover.background.magnifier button.flat:hover, .osd button.flat:hover { border-width: 2px; border-style: solid; color: #fff; background-color: rgba(77, 77, 77, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
popover.background.touch-selection button.flat:disabled, popover.background.magnifier button.flat:disabled, .osd button.flat:disabled { border-width: 2px; border-style: solid; border-color: rgba(255, 255, 255, 0.2); color: gray; background-image: none; border-color: transparent; box-shadow: none; }
|
|
|
|
popover.background.touch-selection button.flat:backdrop, popover.background.magnifier button.flat:backdrop, .osd button.flat:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; }
|
|
|
|
popover.background.touch-selection button.flat:active, popover.background.magnifier button.flat:active, popover.background.touch-selection button.flat:checked, popover.background.magnifier button.flat:checked, .osd button.flat:active, .osd button.flat:checked { border-width: 2px; border-style: solid; color: rgba(0, 0, 0, 0.8); background-color: #fff; border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
|
|
|
|
button.suggested-action { border-width: 2px; border-style: solid; color: #000; background-image: none; background-color: #ddd; border-color: #9d9d9d; }
|
|
|
|
button.suggested-action.flat { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: #ddd; }
|
|
|
|
button.suggested-action:hover { border-width: 2px; border-style: solid; color: #000; background-color: #ddd; border-color: #9d9d9d; background-image: none; }
|
|
|
|
button.suggested-action:active, button.suggested-action:checked { border-width: 2px; border-style: solid; background-image: none; color: white; background-color: #222222; border-color: #9d9d9d; }
|
|
|
|
button.suggested-action:backdrop, button.suggested-action.flat:backdrop { border-width: 2px; border-style: solid; color: #000; background-color: #ddd; border-color: #ddd; background-image: none; }
|
|
|
|
button.suggested-action:backdrop:active, button.suggested-action:backdrop:checked, button.suggested-action.flat:backdrop:active, button.suggested-action.flat:backdrop:checked { border-width: 2px; border-style: solid; color: black; background-color: #737373; border-color: #737373; background-image: none; }
|
|
|
|
button.suggested-action:backdrop:disabled, button.suggested-action.flat:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
button.suggested-action:backdrop:disabled:active, button.suggested-action:backdrop:disabled:checked, button.suggested-action.flat:backdrop:disabled:active, button.suggested-action.flat:backdrop:disabled:checked { border-width: 2px; border-style: solid; color: gray; border-color: #494949; background-image: none; background-color: #090909; }
|
|
|
|
button.suggested-action.flat:backdrop, button.suggested-action.flat:disabled, button.suggested-action.flat:backdrop:disabled { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: rgba(221, 221, 221, 0.8); }
|
|
|
|
button.suggested-action:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
button.suggested-action:disabled:active, button.suggested-action:disabled:checked { border-width: 2px; border-style: solid; color: gray; border-color: #494949; background-image: none; background-color: #070707; }
|
|
|
|
.osd button.suggested-action { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd button.suggested-action:hover { border-width: 2px; border-style: solid; color: #fff; background-color: rgba(77, 77, 77, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd button.suggested-action:active:backdrop, .osd button.suggested-action:active, .osd button.suggested-action:checked:backdrop, .osd button.suggested-action:checked { border-width: 2px; border-style: solid; color: rgba(0, 0, 0, 0.8); background-color: #fff; border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
|
|
|
|
.osd button.suggested-action:disabled:backdrop, .osd button.suggested-action:disabled { border-width: 2px; border-style: solid; border-color: rgba(255, 255, 255, 0.2); color: gray; }
|
|
|
|
.osd button.suggested-action:backdrop { border-width: 2px; border-style: solid; }
|
|
|
|
button.destructive-action { border-width: 2px; border-style: solid; color: white; background-image: none; background-color: #ef2929; border-color: #8e0b0b; }
|
|
|
|
button.destructive-action.flat { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: #ef2929; }
|
|
|
|
button.destructive-action:hover { border-width: 2px; border-style: solid; color: white; background-color: #ef2929; border-color: #8e0b0b; background-image: none; }
|
|
|
|
button.destructive-action:active, button.destructive-action:checked { border-width: 2px; border-style: solid; background-image: none; color: black; background-color: #10d6d6; border-color: #8e0b0b; }
|
|
|
|
button.destructive-action:backdrop, button.destructive-action.flat:backdrop { border-width: 2px; border-style: solid; color: white; background-color: #ef2929; border-color: #ef2929; background-image: none; }
|
|
|
|
button.destructive-action:backdrop:active, button.destructive-action:backdrop:checked, button.destructive-action.flat:backdrop:active, button.destructive-action.flat:backdrop:checked { border-width: 2px; border-style: solid; color: black; background-color: #737373; border-color: #737373; background-image: none; }
|
|
|
|
button.destructive-action:backdrop:disabled, button.destructive-action.flat:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
button.destructive-action:backdrop:disabled:active, button.destructive-action:backdrop:disabled:checked, button.destructive-action.flat:backdrop:disabled:active, button.destructive-action.flat:backdrop:disabled:checked { border-width: 2px; border-style: solid; color: gray; border-color: #494949; background-image: none; background-color: #090909; }
|
|
|
|
button.destructive-action.flat:backdrop, button.destructive-action.flat:disabled, button.destructive-action.flat:backdrop:disabled { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: rgba(239, 41, 41, 0.8); }
|
|
|
|
button.destructive-action:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
button.destructive-action:disabled:active, button.destructive-action:disabled:checked { border-width: 2px; border-style: solid; color: gray; border-color: #494949; background-image: none; background-color: #070707; }
|
|
|
|
.osd button.destructive-action { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd button.destructive-action:hover { border-width: 2px; border-style: solid; color: #fff; background-color: rgba(77, 77, 77, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd button.destructive-action:active:backdrop, .osd button.destructive-action:active, .osd button.destructive-action:checked:backdrop, .osd button.destructive-action:checked { border-width: 2px; border-style: solid; color: rgba(0, 0, 0, 0.8); background-color: #fff; border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
|
|
|
|
.osd button.destructive-action:disabled:backdrop, .osd button.destructive-action:disabled { border-width: 2px; border-style: solid; border-color: rgba(255, 255, 255, 0.2); color: gray; }
|
|
|
|
.osd button.destructive-action:backdrop { border-width: 2px; border-style: solid; }
|
|
|
|
.stack-switcher > button { outline-offset: -3px; }
|
|
|
|
.stack-switcher > button > label { padding-left: 6px; padding-right: 6px; }
|
|
|
|
.stack-switcher > button > image { padding-left: 6px; padding-right: 6px; padding-top: 3px; padding-bottom: 3px; }
|
|
|
|
.stack-switcher > button.text-button { padding-left: 10px; padding-right: 10px; }
|
|
|
|
.stack-switcher > button.image-button { padding-left: 2px; padding-right: 2px; }
|
|
|
|
.stack-switcher > button.needs-attention:active > label, .stack-switcher > button.needs-attention:active > image, .stack-switcher > button.needs-attention:checked > label, .stack-switcher > button.needs-attention:checked > image { animation: none; background-image: none; }
|
|
|
|
.primary-toolbar button { -gtk-icon-shadow: none; }
|
|
|
|
.stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image, stacksidebar row.needs-attention > label { animation: needs_attention 150ms ease-in; background-image: radial-gradient(#ddd 68%, rgba(221, 221, 221, 0) 70%); background-size: 6px 6px; background-repeat: no-repeat; background-position: right 3px; }
|
|
|
|
.stack-switcher > button.needs-attention > label:backdrop, .stack-switcher > button.needs-attention > image:backdrop, stacksidebar row.needs-attention > label:backdrop { background-size: 6px 6px; }
|
|
|
|
.stack-switcher > button.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > image:dir(rtl), stacksidebar row.needs-attention > label:dir(rtl) { background-position: left 3px; }
|
|
|
|
.inline-toolbar toolbutton > button { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: #000; border-color: gray; }
|
|
|
|
.inline-toolbar toolbutton > button:hover { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: gray; background-image: none; }
|
|
|
|
.inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { border-width: 2px; border-style: solid; background-image: none; color: black; background-color: white; border-color: gray; }
|
|
|
|
.inline-toolbar toolbutton > button:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
.inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { border-width: 2px; border-style: solid; color: gray; border-color: #494949; background-image: none; background-color: #070707; }
|
|
|
|
.inline-toolbar toolbutton > button:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: #737373; background-image: none; }
|
|
|
|
.inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked { border-width: 2px; border-style: solid; color: black; background-color: #737373; border-color: #737373; background-image: none; }
|
|
|
|
.inline-toolbar toolbutton > button:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
.inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked { border-width: 2px; border-style: solid; color: gray; border-color: #494949; background-image: none; background-color: #090909; }
|
|
|
|
toolbar.inline-toolbar toolbutton:dir(ltr):not(:first-child) > button.flat, searchbar.inline-toolbar toolbutton:dir(ltr):not(:first-child) > button.flat, toolbar.inline-toolbar toolbutton:dir(rtl):not(:last-child) > button.flat, searchbar.inline-toolbar toolbutton:dir(rtl):not(:last-child) > button.flat, .linked:not(.vertical) > spinbutton:dir(ltr):not(:first-child):not(.vertical), spinbutton.vertical .linked:not(.vertical) > text:dir(ltr):not(:first-child), .linked:not(.vertical) > entry:dir(ltr):not(:first-child), .inline-toolbar button:dir(ltr):not(:first-child), .linked:not(.vertical) > button:dir(ltr):not(:first-child), .linked:not(.vertical) > spinbutton:dir(rtl):not(:last-child):not(.vertical), spinbutton.vertical .linked:not(.vertical) > text:dir(rtl):not(:last-child), .linked:not(.vertical) > entry:dir(rtl):not(:last-child), .inline-toolbar button:dir(rtl):not(:last-child), .linked:not(.vertical) > button:dir(rtl):not(:last-child), combobox.linked button:nth-child(2):dir(ltr), .linked:not(.vertical) > combobox:dir(ltr):not(:first-child) > box > button.combo, .linked:not(.vertical) > combobox:dir(rtl):not(:last-child) > box > button.combo { border-top-left-radius: 0; border-bottom-left-radius: 0; }
|
|
|
|
toolbar.inline-toolbar toolbutton:dir(ltr):not(:last-child) > button.flat, searchbar.inline-toolbar toolbutton:dir(ltr):not(:last-child) > button.flat, toolbar.inline-toolbar toolbutton:dir(rtl):not(:first-child) > button.flat, searchbar.inline-toolbar toolbutton:dir(rtl):not(:first-child) > button.flat, .linked:not(.vertical) > spinbutton:dir(ltr):not(:last-child):not(.vertical), spinbutton.vertical .linked:not(.vertical) > text:dir(ltr):not(:last-child), .linked:not(.vertical) > entry:dir(ltr):not(:last-child), .inline-toolbar button:dir(ltr):not(:last-child), .linked:not(.vertical) > button:dir(ltr):not(:last-child), .linked:not(.vertical) > spinbutton:dir(rtl):not(:first-child):not(.vertical), spinbutton.vertical .linked:not(.vertical) > text:dir(rtl):not(:first-child), .linked:not(.vertical) > entry:dir(rtl):not(:first-child), .inline-toolbar button:dir(rtl):not(:first-child), .linked:not(.vertical) > button:dir(rtl):not(:first-child), combobox.linked button:nth-child(2):dir(rtl), .linked:not(.vertical) > combobox:dir(ltr):not(:last-child) > box > button.combo, .linked:not(.vertical) > combobox:dir(rtl):not(:first-child) > box > button.combo { border-right-style: none; border-top-right-radius: 0; border-bottom-right-radius: 0; }
|
|
|
|
.linked.vertical > spinbutton:not(:first-child):not(.vertical), spinbutton.vertical .linked.vertical > text:not(:first-child), .linked.vertical > entry:not(:first-child), .linked.vertical > button:not(:first-child), .linked.vertical > combobox:not(:first-child) > box > button.combo { border-top-left-radius: 0; border-top-right-radius: 0; }
|
|
|
|
.linked.vertical > spinbutton:not(:last-child):not(.vertical), spinbutton.vertical .linked.vertical > text:not(:last-child), .linked.vertical > entry:not(:last-child), .linked.vertical > button:not(:last-child), .linked.vertical > combobox:not(:last-child) > box > button.combo { border-bottom-style: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
|
|
|
|
popover.background checkbutton, popover.background radiobutton, modelbutton.flat, .menuitem.button.flat, popover.background checkbutton:backdrop, popover.background radiobutton:backdrop, popover.background checkbutton:backdrop:hover, popover.background radiobutton:backdrop:hover, modelbutton.flat:backdrop, modelbutton.flat:backdrop:hover, .menuitem.button.flat:backdrop, .menuitem.button.flat:backdrop:hover, button:link, button:visited, button:link:hover, button:link:active, button:visited:hover, button:visited:active, button:link:backdrop, button:visited:backdrop, notebook tab button, row.activatable, row.activatable:backdrop, row.activatable:backdrop:active, row.activatable:backdrop:checked, row.activatable:backdrop:disabled, row.activatable:backdrop:disabled:active, row.activatable:backdrop:disabled:checked, row.activatable:disabled:active, row.activatable:disabled:checked, calendar.button, calendar.button:hover, calendar.button:backdrop, calendar.button:backdrop:hover { background-color: transparent; background-image: none; border-color: transparent; box-shadow: inset 0 1px rgba(255, 255, 255, 0), 0 1px rgba(255, 255, 255, 0); text-shadow: none; -gtk-icon-shadow: none; }
|
|
|
|
/* menu buttons */
|
|
popover.background checkbutton, popover.background radiobutton, modelbutton.flat, .menuitem.button.flat { min-height: 26px; padding-left: 5px; padding-right: 5px; border-radius: 3px; outline-offset: -2px; }
|
|
|
|
popover.background checkbutton:hover, popover.background radiobutton:hover, modelbutton.flat:hover, .menuitem.button.flat:hover { background-color: #0d0d0d; }
|
|
|
|
popover.background checkbutton check:last-child, popover.background radiobutton check:last-child, popover.background checkbutton radio:last-child, popover.background radiobutton radio:last-child, modelbutton.flat check:last-child, modelbutton.flat radio:last-child, .menuitem.button.flat check:last-child, .menuitem.button.flat radio:last-child { margin-left: 8px; }
|
|
|
|
popover.background checkbutton check:first-child, popover.background radiobutton check:first-child, popover.background checkbutton radio:first-child, popover.background radiobutton radio:first-child, modelbutton.flat check:first-child, modelbutton.flat radio:first-child, .menuitem.button.flat check:first-child, .menuitem.button.flat radio:first-child { margin-right: 8px; }
|
|
|
|
modelbutton.flat arrow { background: none; }
|
|
|
|
modelbutton.flat arrow:hover { background: none; }
|
|
|
|
modelbutton.flat arrow.left { -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
|
|
|
|
modelbutton.flat arrow.right { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
|
|
|
|
button.color { padding: 4px; }
|
|
|
|
button.color colorswatch:only-child, button.color colorswatch:only-child overlay { border-radius: 0; }
|
|
|
|
/********* Links * */
|
|
*:link { color: #ddd; }
|
|
|
|
*:link:hover, *:link:active, *:link:visited { color: #ebebeb; }
|
|
|
|
*:link:backdrop, *:link:backdrop:hover { color: #ddd; }
|
|
|
|
button:link, button:visited { color: #4a90d9; font-weight: bold; text-shadow: none; }
|
|
|
|
button:link:hover, button:link:active, button:visited:hover, button:visited:active { color: #ebebeb; text-shadow: none; }
|
|
|
|
button:link:backdrop, button:visited:backdrop { color: #ddd; }
|
|
|
|
/***************** GtkSpinButton * */
|
|
spinbutton:not(.vertical) { border-width: 2px; border-color: gray; box-shadow: none; padding: 0; }
|
|
|
|
spinbutton:not(.vertical) text { min-width: 28px; margin: 0; background: none; border: none; box-shadow: none; }
|
|
|
|
spinbutton:not(.vertical) button { min-height: 16px; margin: 0; padding-bottom: 0; padding-top: 0; color: #e7e7e7; background-image: none; border-style: none none none solid; border-radius: 0; }
|
|
|
|
spinbutton:not(.vertical) button:dir(rtl) { border-style: none solid none none; }
|
|
|
|
spinbutton:not(.vertical) button:hover { color: #fff; background-color: #000; }
|
|
|
|
spinbutton:not(.vertical) button:disabled { color: rgba(128, 128, 128, 0.3); }
|
|
|
|
spinbutton:not(.vertical) button:active { background-color: rgba(0, 0, 0, 0.8); color: #fff; }
|
|
|
|
spinbutton:not(.vertical) button:backdrop { color: #fff; background-color: transparent; border-color: rgba(115, 115, 115, 0.3); }
|
|
|
|
spinbutton:not(.vertical) button:backdrop:disabled { color: #070707; background-image: none; border-style: none none none solid; }
|
|
|
|
spinbutton:not(.vertical) button:backdrop:disabled:dir(rtl) { border-style: none solid none none; }
|
|
|
|
.osd spinbutton:not(.vertical) { border-color: rgba(255, 255, 255, 0.2); color: #fff; box-shadow: none; }
|
|
|
|
.osd spinbutton:not(.vertical):focus, .osd spinbutton:not(.vertical):active { border-color: rgba(255, 255, 255, 0.7); box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); }
|
|
|
|
.osd spinbutton:not(.vertical) text { box-shadow: none; color: #fff; text-shadow: none; }
|
|
|
|
.osd spinbutton:not(.vertical) text:focus, .osd spinbutton:not(.vertical) text:active { box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.2); }
|
|
|
|
.osd spinbutton:not(.vertical) button { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: #fff; border-style: none none none solid; border-color: rgba(128, 128, 128, 0.2); border-radius: 0; box-shadow: none; }
|
|
|
|
.osd spinbutton:not(.vertical) button:dir(rtl) { border-style: none solid none none; }
|
|
|
|
.osd spinbutton:not(.vertical) button:active { background-color: rgba(0, 0, 0, 0.8); color: #fff; }
|
|
|
|
.osd spinbutton:not(.vertical) button:hover { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; border-style: none none none solid; border-color: rgba(128, 128, 128, 0.2); background-color: rgba(255, 255, 255, 0.1); box-shadow: none; }
|
|
|
|
.osd spinbutton:not(.vertical) button:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: gray; border-color: rgba(128, 128, 128, 0.1); box-shadow: none; border-style: none none none solid; }
|
|
|
|
.osd spinbutton:not(.vertical) button:disabled { color: gray; border-color: rgba(128, 128, 128, 0.1); border-style: none none none solid; box-shadow: none; }
|
|
|
|
.osd spinbutton:not(.vertical) button:last-child { border-radius: 0 3px 3px 0; }
|
|
|
|
.osd spinbutton:not(.vertical) button:dir(rtl):first-child { border-radius: 3px 0 0 3px; }
|
|
|
|
spinbutton.vertical { border-width: 2px; border-color: gray; }
|
|
|
|
spinbutton.vertical:disabled { color: gray; }
|
|
|
|
spinbutton.vertical:backdrop:disabled { color: gray; }
|
|
|
|
spinbutton.vertical:drop(active) { border-color: transparent; box-shadow: none; }
|
|
|
|
spinbutton.vertical text { min-height: 32px; min-width: 32px; padding: 0; border-radius: 0; border-color: gray; }
|
|
|
|
spinbutton.vertical button { min-height: 32px; min-width: 32px; padding: 0; }
|
|
|
|
spinbutton.vertical button.up { border-bottom-style: none; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
|
|
|
|
spinbutton.vertical button.down { border-top-style: none; border-top-left-radius: 0; border-top-right-radius: 0; }
|
|
|
|
.osd spinbutton.vertical button:first-child { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd spinbutton.vertical button:first-child:hover { border-width: 2px; border-style: solid; color: #fff; background-color: rgba(77, 77, 77, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd spinbutton.vertical button:first-child:active { border-width: 2px; border-style: solid; color: rgba(0, 0, 0, 0.8); background-color: #fff; border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
|
|
|
|
.osd spinbutton.vertical button:first-child:disabled { border-width: 2px; border-style: solid; border-color: rgba(255, 255, 255, 0.2); color: gray; }
|
|
|
|
.osd spinbutton.vertical button:first-child:backdrop { border-width: 2px; border-style: solid; }
|
|
|
|
treeview spinbutton entry, treeview spinbutton entry:focus { padding: 1px; border-width: 1px 0; border-color: #ddd; border-radius: 0; box-shadow: none; }
|
|
|
|
/************** ComboBoxes * */
|
|
combobox arrow { -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); min-height: 16px; min-width: 16px; }
|
|
|
|
combobox:drop(active) { box-shadow: none; }
|
|
|
|
/************ Toolbars * */
|
|
toolbar, searchbar { padding: 6px; background-color: #000; }
|
|
|
|
toolbar.osd, searchbar.osd { background-color: rgba(0, 0, 0, 0.8); border-radius: 6px; padding: 12px; }
|
|
|
|
toolbar.osd label, searchbar.osd label { color: #fff; }
|
|
|
|
toolbar.inline-toolbar, searchbar.inline-toolbar { border-width: 0 1px 1px; padding: 3px; border-radius: 0 0 4px 4px; }
|
|
|
|
toolbar.vertical, searchbar.vertical { border-right: 1px solid gray; }
|
|
|
|
toolbar.vertical:dir(rtl), searchbar.vertical:dir(rtl) { border-right: none; border-left: 1px solid gray; }
|
|
|
|
searchbar { border-width: 0 0 1px; border-color: gray; border-style: none none solid none; padding: 3px; }
|
|
|
|
toolbar.inline-toolbar, searchbar.inline-toolbar { border-style: solid; border-color: gray; background-color: #262626; box-shadow: inset 0 2px 3px -1px #5c5c5c; }
|
|
|
|
toolbar.inline-toolbar:backdrop, searchbar.inline-toolbar:backdrop { border-color: #737373; background-color: #282828; box-shadow: none; }
|
|
|
|
/*************** Header bars * */
|
|
.titlebar:not(headerbar), headerbar { min-height: 46px; border-width: 0 0 1px; border-style: solid; border-color: gray; border-radius: 7px 7px 0 0; background-color: transparent; background-image: linear-gradient(to bottom, #0a0a0a, #000); box-shadow: inset 0 -1px #262626, inset 0 1px #000; padding: 6px; }
|
|
|
|
.titlebar:backdrop:not(headerbar), headerbar:backdrop { border-color: #737373; background-color: #000; background-image: none; box-shadow: none; }
|
|
|
|
.titlebar:not(headerbar) .title, headerbar .title { font-weight: bold; padding: 0px 12px; }
|
|
|
|
.titlebar:not(headerbar) .subtitle, headerbar .subtitle { font-size: 80%; padding: 0 12px; }
|
|
|
|
.selection-mode.titlebar:not(headerbar), headerbar.selection-mode { color: #b7b7b7; text-shadow: 0 1px rgba(0, 0, 0, 0.5); background-image: linear-gradient(to bottom, #eaeaea, #e2e2e2); box-shadow: inset 0 -1px #262626, inset 0 1px #6f6f6f; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button, headerbar.selection-mode button { border-width: 2px; border-style: solid; color: #000; background-image: none; background-color: #ddd; border-color: #9d9d9d; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button:hover, headerbar.selection-mode button:hover { border-width: 2px; border-style: solid; color: #000; background-color: #ddd; border-color: #9d9d9d; background-image: none; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button:active, headerbar.selection-mode button:active { border-width: 2px; border-style: solid; background-image: none; color: white; background-color: #222222; border-color: #9d9d9d; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button:disabled, headerbar.selection-mode button:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button:backdrop, headerbar.selection-mode button:backdrop { border-width: 2px; border-style: solid; color: #000; background-color: #ddd; border-color: #ddd; background-image: none; border-color: #b7b7b7; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button:backdrop:disabled, headerbar.selection-mode button:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button.suggested-action, headerbar.selection-mode button.suggested-action { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: #000; border-color: gray; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button.suggested-action:hover, headerbar.selection-mode button.suggested-action:hover { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: gray; background-image: none; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button.suggested-action:active, headerbar.selection-mode button.suggested-action:active { border-width: 2px; border-style: solid; background-image: none; color: black; background-color: white; border-color: gray; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button.suggested-action:disabled, headerbar.selection-mode button.suggested-action:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button.suggested-action:backdrop, headerbar.selection-mode button.suggested-action:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: #737373; background-image: none; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) button.suggested-action:backdrop:disabled, headerbar.selection-mode button.suggested-action:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
.selection-mode.titlebar:not(headerbar) .selection-menu, headerbar.selection-mode .selection-menu { border-width: 0; background-image: none; box-shadow: none; }
|
|
|
|
.tiled .titlebar:not(headerbar), .maximized .titlebar:not(headerbar), .fullscreen .titlebar:not(headerbar), .tiled headerbar, .maximized headerbar, .fullscreen headerbar { border-radius: 0; }
|
|
|
|
.default-decoration.titlebar:not(headerbar), headerbar.default-decoration { min-height: 28px; padding: 4px; }
|
|
|
|
.default-decoration.titlebar:not(headerbar) button.titlebutton, headerbar.default-decoration button.titlebutton { min-height: 26px; min-width: 26px; margin: 0; padding: 0; }
|
|
|
|
window.csd > .titlebar:not(headerbar) { padding: 0; background-color: transparent; background-image: none; border-style: none; border-color: transparent; box-shadow: none; }
|
|
|
|
/************ Pathbars * */
|
|
.path-bar button { padding: 5px 6px 6px; }
|
|
|
|
.path-bar button:first-child { padding-left: 8px; }
|
|
|
|
.path-bar button:last-child { padding-right: 8px; }
|
|
|
|
.path-bar button:only-child { padding-left: 12px; padding-right: 12px; }
|
|
|
|
.path-bar button label:last-child { padding-left: 2px; }
|
|
|
|
.path-bar button label:first-child { padding-right: 2px; }
|
|
|
|
.path-bar button label:only-child { padding-right: 0; padding-left: 0; }
|
|
|
|
.path-bar button image { padding-top: 1px; }
|
|
|
|
/************** Tree Views * */
|
|
treeview.view { border-left-color: #888888; border-top-color: #000; }
|
|
|
|
treeview.view:selected { border-radius: 0; }
|
|
|
|
treeview.view:selected, treeview.view:backdrop:selected { border-left-color: #6f6f6f; border-top-color: rgba(255, 255, 255, 0.1); }
|
|
|
|
treeview.view:disabled { color: gray; }
|
|
|
|
treeview.view:disabled:selected { color: #858585; }
|
|
|
|
treeview.view:disabled:selected:backdrop { color: #6f6f6f; }
|
|
|
|
treeview.view:disabled:backdrop { color: gray; }
|
|
|
|
treeview.view.separator:backdrop { min-height: 2px; color: rgba(0, 0, 0, 0.1); }
|
|
|
|
treeview.view:backdrop { color: #fff; border-left-color: gray; border-top: #000; }
|
|
|
|
treeview.view.dnd { border-style: solid none; border-width: 1px; border-color: #eeeeee; }
|
|
|
|
treeview.view.expander { min-width: 24px; min-height: 24px; -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); color: #b8b8b8; }
|
|
|
|
treeview.view.expander:dir(rtl) { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
|
|
|
|
treeview.view.expander:hover { color: #fff; }
|
|
|
|
treeview.view.expander:selected { color: #424242; }
|
|
|
|
treeview.view.expander:selected:hover { color: #000; }
|
|
|
|
treeview.view.expander:selected:backdrop { color: #424242; }
|
|
|
|
treeview.view.expander:checked { -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
|
|
|
treeview.view.expander:backdrop { color: #b8b8b8; }
|
|
|
|
treeview.view.progressbar { color: #111; border: 1px solid #aaa; border-radius: 4px; background-color: #fff; }
|
|
|
|
treeview.view.progressbar:selected { color: #ddd; }
|
|
|
|
treeview.view.progressbar:backdrop { color: #ddd; border-color: #aaa; background-color: #111; }
|
|
|
|
treeview.view.trough { background-color: rgba(255, 255, 255, 0.1); border-radius: 4px; }
|
|
|
|
treeview.view.trough:selected { background-color: rgba(0, 0, 0, 0.3); border-width: 1px 0; border-style: solid; border-color: #ddd; }
|
|
|
|
treeview.view header button { color: #888888; font-weight: bold; text-shadow: none; box-shadow: none; }
|
|
|
|
treeview.view header button:hover { color: #c4c4c4; box-shadow: none; }
|
|
|
|
treeview.view header button:active { color: #000; }
|
|
|
|
treeview.view header button:last-child, treeview.view header button:last-child:hover, treeview.view header button:last-child:backdrop { border-right-style: none; }
|
|
|
|
treeview.view header button, treeview.view header button:hover, treeview.view header button:active { padding: 3px 6px; border-style: none solid solid none; border-radius: 0; border-width: 1px; background-image: none; border-color: gray; text-shadow: none; }
|
|
|
|
treeview.view header button:disabled { border-color: #000; background-image: none; }
|
|
|
|
treeview.view header button:backdrop { border-color: gray; border-style: none solid solid none; color: gray; background-image: none; background-color: #111; }
|
|
|
|
treeview.view header button:backdrop:disabled { border-color: #000; background-image: none; }
|
|
|
|
treeview.view.progressbar { color: #111; border-radius: 4px; background-image: linear-gradient(to bottom, #ddd, #c4c4c4); }
|
|
|
|
treeview.view.progressbar:selected { color: #ddd; background-image: linear-gradient(to bottom, #111, black); }
|
|
|
|
treeview.view.progressbar:selected:backdrop { color: #ddd; background-image: none; background-color: #111; }
|
|
|
|
treeview.view.progressbar:backdrop { color: #111; background-image: none; }
|
|
|
|
/********* Menus * */
|
|
menubar, .menubar { padding: 0px; box-shadow: inset 0 -1px gray; }
|
|
|
|
menubar > menuitem, .menubar > menuitem { padding: 4px 8px; }
|
|
|
|
menubar > menuitem:hover, .menubar > menuitem:hover { box-shadow: inset 0 -3px #ddd; color: #ddd; }
|
|
|
|
menubar > menuitem:disabled, .menubar > menuitem:disabled { color: gray; box-shadow: none; }
|
|
|
|
menu, .menu { margin: 4px; padding: 0px; background-color: #111; border: 1px solid gray; }
|
|
|
|
menu menuitem, .menu menuitem { text-shadow: none; padding: 4px; min-width: 40px; }
|
|
|
|
menu menuitem:hover, .menu menuitem:hover { color: #000; background-color: #ddd; }
|
|
|
|
menu menuitem:disabled, .menu menuitem:disabled { color: gray; }
|
|
|
|
menu menuitem:disabled:backdrop, .menu menuitem:disabled:backdrop { color: gray; }
|
|
|
|
menu menuitem:backdrop, menu menuitem:backdrop:hover, .menu menuitem:backdrop, .menu menuitem:backdrop:hover { color: #fff; background-color: #111; }
|
|
|
|
menu menuitem arrow, .menu menuitem arrow { min-height: 16px; min-width: 16px; }
|
|
|
|
menu menuitem arrow:dir(ltr), .menu menuitem arrow:dir(ltr) { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); margin-left: 10px; }
|
|
|
|
menu menuitem arrow:dir(rtl), .menu menuitem arrow:dir(rtl) { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); margin-right: 10px; }
|
|
|
|
menuitem check, menuitem radio { min-height: 16px; min-width: 16px; }
|
|
|
|
menuitem check:dir(ltr), menuitem radio:dir(ltr) { margin-right: 7px; }
|
|
|
|
menuitem check:dir(rtl), menuitem radio:dir(rtl) { margin-left: 7px; }
|
|
|
|
/*************** Popovers * */
|
|
popover.background { padding: 2px; border-radius: 5px; background-color: #000; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }
|
|
|
|
popover.background, .csd popover.background { border: 1px solid gray; }
|
|
|
|
popover.background:backdrop { background-color: #000; box-shadow: none; }
|
|
|
|
popover.background > list, popover.background > .view, textview popover.background > text, popover.background > iconview, popover.background > toolbar, popover.background > searchbar { border-style: none; background-color: transparent; }
|
|
|
|
popover.background.touch-selection, popover.background.magnifier, .csd popover.background.touch-selection, .csd popover.background.magnifier { border: 1px solid rgba(255, 255, 255, 0.1); }
|
|
|
|
popover.background separator { margin: 3px; }
|
|
|
|
popover.background list separator { margin: 0px; }
|
|
|
|
/***************** Notebooks and * Tabs * */
|
|
notebook { padding: 0; background-color: #111; transition: all 200ms ease-out; }
|
|
|
|
notebook:backdrop { background-color: #111; }
|
|
|
|
notebook.frame { border: 1px solid gray; }
|
|
|
|
notebook.frame:backdrop { border-color: #737373; }
|
|
|
|
notebook header { background-color: #131313; }
|
|
|
|
.frame notebook header { border: 1px solid gray; }
|
|
|
|
.frame notebook header.top { border-bottom-width: 0; }
|
|
|
|
.frame notebook header.bottom { border-top-width: 0; }
|
|
|
|
.frame notebook header.right { border-left-width: 0; }
|
|
|
|
.frame notebook header.left { border-right-width: 0; }
|
|
|
|
.frame notebook header:backdrop { border-color: #737373; }
|
|
|
|
notebook header.top { box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.15), inset 0 -1px gray; }
|
|
|
|
notebook header.top:backdrop { box-shadow: inset 0 -1px #737373; }
|
|
|
|
notebook header.bottom { box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.15), inset 0 1px gray; }
|
|
|
|
notebook header.bottom:backdrop { box-shadow: inset 0 1px #737373; }
|
|
|
|
notebook header.right { box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.15), inset 1px 0 gray; }
|
|
|
|
notebook header.right:backdrop { box-shadow: inset 1px 0 #737373; }
|
|
|
|
notebook header.left { box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.15), inset -1px 0 gray; }
|
|
|
|
notebook header.left:backdrop { box-shadow: inset -1px 0 #737373; }
|
|
|
|
notebook header:backdrop { background-color: #282828; box-shadow: none; }
|
|
|
|
notebook header tabs arrow { color: gray; }
|
|
|
|
notebook header tabs arrow:hover { color: silver; }
|
|
|
|
notebook header tabs arrow:checked { color: #fff; }
|
|
|
|
notebook header tabs arrow:disabled { color: rgba(128, 128, 128, 0.3); }
|
|
|
|
notebook header tabs arrow:backdrop { color: rgba(255, 255, 255, 0.4); }
|
|
|
|
notebook header.top tab { padding: 8px 20px; border-bottom-width: 3px; }
|
|
|
|
notebook header.top tab.reorderable-page { padding-left: 12px; padding-right: 12px; border-left-width: 1px; border-right-width: 1px; }
|
|
|
|
notebook header.bottom tab { padding: 8px 20px; border-top-width: 3px; }
|
|
|
|
notebook header.bottom tab.reorderable-page { padding-left: 12px; padding-right: 12px; border-left-width: 1px; border-right-width: 1px; }
|
|
|
|
notebook header.left tab { padding: 5px 20px; border-right-width: 3px; }
|
|
|
|
notebook header.left tab.reorderable-page { border-bottom-width: 1px; border-top-width: 1px; }
|
|
|
|
notebook header.right tab { padding: 5px 20px; border-left-width: 3px; }
|
|
|
|
notebook header.right tab.reorderable-page { border-bottom-width: 1px; border-top-width: 1px; }
|
|
|
|
notebook tab { border-width: 0; border-style: solid; border-color: transparent; background-color: transparent; outline-offset: 0; }
|
|
|
|
notebook tab:hover { border-color: gray; }
|
|
|
|
notebook tab:checked, notebook tab:backdrop:checked { border-color: #ddd; }
|
|
|
|
notebook tab:backdrop { background-color: transparent; border-color: transparent; }
|
|
|
|
.top notebook tab.reorderable-page { border-color: transparent; }
|
|
|
|
.top notebook tab.reorderable-page:hover { border-color: rgba(128, 128, 128, 0.3); border-bottom-color: gray; background-color: rgba(0, 0, 0, 0.2); }
|
|
|
|
.top notebook tab.reorderable-page:checked { background-color: rgba(0, 0, 0, 0.5); border-color: rgba(128, 128, 128, 0.5); border-bottom-color: #ddd; }
|
|
|
|
.top notebook tab.reorderable-page:checked:hover { background-color: rgba(0, 0, 0, 0.7); }
|
|
|
|
.top notebook tab.reorderable-page:checked:backdrop { border-color: #737373; background-color: #000; border-bottom-color: #ddd; }
|
|
|
|
.top notebook tab.reorderable-page:backdrop { border-color: transparent; background-color: transparent; }
|
|
|
|
.bottom notebook tab.reorderable-page { border-color: transparent; }
|
|
|
|
.bottom notebook tab.reorderable-page:hover { border-color: rgba(128, 128, 128, 0.3); border-top-color: gray; background-color: rgba(0, 0, 0, 0.2); }
|
|
|
|
.bottom notebook tab.reorderable-page:checked { background-color: rgba(0, 0, 0, 0.5); border-color: rgba(128, 128, 128, 0.5); border-top-color: #ddd; }
|
|
|
|
.bottom notebook tab.reorderable-page:checked:hover { background-color: rgba(0, 0, 0, 0.7); }
|
|
|
|
.bottom notebook tab.reorderable-page:checked:backdrop { border-color: #737373; background-color: #000; border-top-color: #ddd; }
|
|
|
|
.bottom notebook tab.reorderable-page:backdrop { border-color: transparent; background-color: transparent; }
|
|
|
|
.left notebook tab.reorderable-page { border-color: transparent; }
|
|
|
|
.left notebook tab.reorderable-page:hover { border-color: rgba(128, 128, 128, 0.3); border-right-color: gray; background-color: rgba(0, 0, 0, 0.2); }
|
|
|
|
.left notebook tab.reorderable-page:checked { background-color: rgba(0, 0, 0, 0.5); border-color: rgba(128, 128, 128, 0.5); border-right-color: #ddd; }
|
|
|
|
.left notebook tab.reorderable-page:checked:hover { background-color: rgba(0, 0, 0, 0.7); }
|
|
|
|
.left notebook tab.reorderable-page:checked:backdrop { border-color: #737373; background-color: #000; border-right-color: #ddd; }
|
|
|
|
.left notebook tab.reorderable-page:backdrop { border-color: transparent; background-color: transparent; }
|
|
|
|
.right notebook tab.reorderable-page { border-color: transparent; }
|
|
|
|
.right notebook tab.reorderable-page:hover { border-color: rgba(128, 128, 128, 0.3); border-left-color: gray; background-color: rgba(0, 0, 0, 0.2); }
|
|
|
|
.right notebook tab.reorderable-page:checked { background-color: rgba(0, 0, 0, 0.5); border-color: rgba(128, 128, 128, 0.5); border-left-color: #ddd; }
|
|
|
|
.right notebook tab.reorderable-page:checked:hover { background-color: rgba(0, 0, 0, 0.7); }
|
|
|
|
.right notebook tab.reorderable-page:checked:backdrop { border-color: #737373; background-color: #000; border-left-color: #ddd; }
|
|
|
|
.right notebook tab.reorderable-page:backdrop { border-color: transparent; background-color: transparent; }
|
|
|
|
notebook tab label { padding: 0 2px; font-weight: bold; color: silver; /* color: inherit doesn't work here */ }
|
|
|
|
notebook tab label:backdrop { color: gray; }
|
|
|
|
notebook tab:hover label { color: #dfdfdf; }
|
|
|
|
notebook tab:checked label { color: #fff; }
|
|
|
|
notebook tab:checked label:backdrop { color: #fff; }
|
|
|
|
notebook tab button { border: 2px solid transparent; -gtk-icon-shadow: none; transition: none; color: rgba(255, 255, 255, 0.3); }
|
|
|
|
notebook tab button:hover { color: #fff; border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: gray; background-image: none; border-width: 2px; background-image: none; box-shadow: none; }
|
|
|
|
notebook tab button:checked { border-width: 2px; border-style: solid; background-image: none; color: black; background-color: white; border-color: gray; border-width: 2px; }
|
|
|
|
notebook tab button:backdrop, notebook tab button:backdrop:hover { color: rgba(255, 255, 255, 0.3); border-color: transparent; border-width: 2px; }
|
|
|
|
notebook tab button > image { padding: 2px; }
|
|
|
|
/************** Scrollbars * */
|
|
scrollbar { background-color: #0a0a0a; transition: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
|
|
|
|
scrollbar.top { border-bottom: 1px solid gray; }
|
|
|
|
scrollbar.bottom { border-top: 1px solid gray; }
|
|
|
|
scrollbar.left { border-right: 1px solid gray; }
|
|
|
|
scrollbar.right { border-left: 1px solid gray; }
|
|
|
|
scrollbar:backdrop { background-color: black; border-color: #737373; }
|
|
|
|
scrollbar slider { min-width: 14px; min-height: 14px; margin: -1px; border: 4px solid transparent; border-radius: 12px; background-clip: padding-box; background-color: #999999; }
|
|
|
|
scrollbar slider:hover { background-color: #cccccc; }
|
|
|
|
scrollbar slider:hover:active { background-color: #f7f7f7; }
|
|
|
|
scrollbar slider:backdrop { background-color: #666666; }
|
|
|
|
scrollbar slider:disabled { background-color: transparent; }
|
|
|
|
scrollbar.fine-tune slider { min-width: 4px; min-height: 4px; }
|
|
|
|
scrollbar.fine-tune.horizontal slider { border-width: 5px 4px; }
|
|
|
|
scrollbar.fine-tune.vertical slider { border-width: 4px 5px; }
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering) { border-color: transparent; opacity: 0.4; background-color: transparent; }
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { margin: 0; min-width: 3px; min-height: 3px; background-color: #fff; border: 1px solid black; }
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button { min-width: 5px; min-height: 5px; background-color: #fff; background-clip: padding-box; border-radius: 100%; border: 1px solid black; -gtk-icon-source: none; }
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { margin: 0 2px; min-width: 40px; }
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button { margin: 1px 2px; min-width: 5px; }
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { margin: 2px 0; min-height: 40px; }
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button { margin: 2px 1px; min-height: 5px; }
|
|
|
|
scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { opacity: 0.8; }
|
|
|
|
scrollbar.horizontal slider { min-width: 40px; }
|
|
|
|
scrollbar.vertical slider { min-height: 40px; }
|
|
|
|
scrollbar button { padding: 0; min-width: 12px; min-height: 12px; border-style: none; border-radius: 0; transition-property: min-height, min-width, color; border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: #999999; }
|
|
|
|
scrollbar button:hover { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: #cccccc; }
|
|
|
|
scrollbar button:active, scrollbar button:checked { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: #f7f7f7; }
|
|
|
|
scrollbar button:disabled { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: rgba(153, 153, 153, 0.2); }
|
|
|
|
scrollbar button:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: #666666; }
|
|
|
|
scrollbar button:backdrop:disabled { border-width: 2px; border-style: solid; color: #fff; background-color: transparent; background-image: none; border-color: transparent; color: rgba(102, 102, 102, 0.2); }
|
|
|
|
scrollbar.vertical button.down { -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
|
|
|
scrollbar.vertical button.up { -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); }
|
|
|
|
scrollbar.horizontal button.down { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
|
|
|
|
scrollbar.horizontal button.up { -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); }
|
|
|
|
treeview ~ scrollbar.vertical { border-top: 1px solid gray; margin-top: -1px; }
|
|
|
|
/********** Switch * */
|
|
switch { font-size: smaller; font-stretch: condensed; font-weight: bold; outline-offset: -4px; border-width: 1px; border-style: solid; border-radius: 3px; border-color: gray; background-color: #1a1a1a; box-shadow: inset 0 1px rgba(0, 0, 0, 0.1); /*outset not working*/ text-shadow: 0 1px rgba(0, 0, 0, 0.1); }
|
|
|
|
switch:active { color: #000; border-color: #aaa; background-color: #ddd; text-shadow: 0 0 2px white; }
|
|
|
|
switch:disabled { color: gray; border-color: gray; background-color: #070707; text-shadow: none; }
|
|
|
|
switch:backdrop { color: #fff; border-color: #737373; background-color: #000; box-shadow: none; text-shadow: none; }
|
|
|
|
switch:backdrop:checked { color: #000; border-color: #737373; background-color: #737373; box-shadow: none; }
|
|
|
|
switch:backdrop:disabled, switch:backdrop:disabled:checked { background-color: #070707; color: gray; border-color: gray; }
|
|
|
|
switch slider { margin: -1px; min-width: 45px; min-height: 27px; border: 2px solid; border-radius: 3px; border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: #000; border-color: gray; }
|
|
|
|
switch:hover slider { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: gray; background-image: none; }
|
|
|
|
switch:checked slider { border: 2px solid #aaa; }
|
|
|
|
switch:disabled slider { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
switch:backdrop slider { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: #737373; background-image: none; }
|
|
|
|
switch:backdrop:checked slider { border-color: #aaa; }
|
|
|
|
switch:backdrop:disabled slider { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
/************************* Check and Radio items * */
|
|
checkbutton.text-button, radiobutton.text-button { padding: 2px 0; outline-offset: 0; }
|
|
|
|
checkbutton.text-button label:not(:only-child):first-child, radiobutton.text-button label:not(:only-child):first-child { margin-left: 4px; }
|
|
|
|
checkbutton.text-button label:not(:only-child):last-child, radiobutton.text-button label:not(:only-child):last-child { margin-right: 4px; }
|
|
|
|
checkbutton.text-button:disabled:active, checkbutton.text-button:disabled:indeterminate, checkbutton.text-button:disabled, radiobutton.text-button:disabled:active, radiobutton.text-button:disabled:indeterminate, radiobutton.text-button:disabled { color: gray; }
|
|
|
|
checkbutton.text-button:disabled:active:backdrop, checkbutton.text-button:disabled:indeterminate:backdrop, checkbutton.text-button:disabled:backdrop, radiobutton.text-button:disabled:active:backdrop, radiobutton.text-button:disabled:indeterminate:backdrop, radiobutton.text-button:disabled:backdrop { color: gray; }
|
|
|
|
check, radio { margin: 0 4px; min-height: 14px; min-width: 14px; border: 1px solid; -gtk-icon-source: none; -gtk-icon-size: 14px; border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: #000; border-color: gray; }
|
|
|
|
check:only-child, radio:only-child { margin: 0; }
|
|
|
|
check:hover, radio:hover { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: gray; background-image: none; }
|
|
|
|
check:active, radio:active { border-width: 2px; border-style: solid; background-image: none; color: black; background-color: white; border-color: gray; }
|
|
|
|
check:disabled, radio:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
check:backdrop, radio:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: #737373; background-image: none; }
|
|
|
|
check:backdrop:disabled, radio:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
.osd check, .osd radio { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd check:hover, .osd radio:hover { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd check:active, .osd radio:active { border-width: 2px; border-style: solid; color: rgba(0, 0, 0, 0.8); background-color: #fff; border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
|
|
|
|
.osd check:backdrop, .osd radio:backdrop { border-width: 2px; border-style: solid; }
|
|
|
|
.osd check:disabled, .osd radio:disabled { border-width: 2px; border-style: solid; border-color: rgba(255, 255, 255, 0.2); color: gray; }
|
|
|
|
menu menuitem check, menu menuitem radio { margin: 0; }
|
|
|
|
menu menuitem check, menu menuitem check:hover, menu menuitem check:disabled, menu menuitem radio, menu menuitem radio:hover, menu menuitem radio:disabled { min-height: 14px; min-width: 14px; background-image: none; background-color: transparent; box-shadow: none; -gtk-icon-shadow: none; color: inherit; border-color: currentColor; animation: none; }
|
|
|
|
treeview.view check:selected:focus:disabled, treeview.view check:selected:focus, treeview.view check:selected:backdrop:disabled, treeview.view check:selected:backdrop, treeview.view check:selected:disabled, treeview.view check:selected, check { border-radius: 3px; }
|
|
|
|
treeview.view check:checked:selected, check:checked { -gtk-icon-source: image(-gtk-recolor(url("assets/check-symbolic.svg")), -gtk-recolor(url("assets/check-symbolic.symbolic.png"))); }
|
|
|
|
treeview.view check:indeterminate:selected, check:indeterminate { -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
|
|
|
|
treeview.view radio:selected:focus:disabled, treeview.view radio:selected:focus, treeview.view radio:selected:backdrop:disabled, treeview.view radio:selected:backdrop, treeview.view radio:selected:disabled, treeview.view radio:selected, radio { border-radius: 100%; }
|
|
|
|
treeview.view radio:checked:selected, radio:checked { -gtk-icon-source: image(-gtk-recolor(url("assets/bullet-symbolic.svg")), -gtk-recolor(url("assets/bullet-symbolic.symbolic.png"))); }
|
|
|
|
treeview.view radio:indeterminate:selected, radio:indeterminate { -gtk-icon-source: image(-gtk-recolor(url("assets/dash-symbolic.svg")), -gtk-recolor(url("assets/dash-symbolic.symbolic.png"))); }
|
|
|
|
@keyframes check_check { from { -gtk-icon-transform: translate(6px, -3px) rotate(-45deg) scaleY(0.2) rotate(45deg) scaleX(0); }
|
|
to { -gtk-icon-transform: unset; } }
|
|
|
|
@keyframes check_radio { from { -gtk-icon-transform: scale(0); }
|
|
to { -gtk-icon-transform: unset; } }
|
|
|
|
@keyframes check_indeterminate { from { -gtk-icon-transform: scale(0, 1); }
|
|
to { -gtk-icon-transform: unset; } }
|
|
|
|
check:not(:indeterminate):checked { animation: check_check 400ms; }
|
|
|
|
radio:not(:indeterminate):checked { animation: check_radio 400ms; }
|
|
|
|
check:indeterminate:checked, radio:indeterminate:checked { animation: check_indeterminate 400ms; }
|
|
|
|
menu menuitem check:not(:indeterminate):checked, menu menuitem radio:not(:indeterminate):checked, menu menuitem check:indeterminate:checked:active, menu menuitem radio:indeterminate:checked { animation: none; }
|
|
|
|
treeview.view check:selected:focus, treeview.view check:selected:hover, treeview.view check:selected, treeview.view radio:selected:focus, treeview.view radio:selected:hover, treeview.view radio:selected { color: #000; }
|
|
|
|
treeview.view check:selected:backdrop:hover, treeview.view check:selected:backdrop, treeview.view radio:selected:backdrop:hover, treeview.view radio:selected:backdrop { color: #000; border-color: #000; }
|
|
|
|
treeview.view check:selected:backdrop:disabled, treeview.view radio:selected:backdrop:disabled { color: gray; border-color: gray; }
|
|
|
|
treeview.view check:selected:disabled, treeview.view radio:selected:disabled { color: gray; }
|
|
|
|
/************ GtkScale * */
|
|
scale trough, scale fill { border: 2px solid gray; border-radius: 4px; background-color: #1a1a1a; box-shadow: none; }
|
|
|
|
scale trough:disabled, scale fill:disabled { border-color: #494949; background-color: #070707; }
|
|
|
|
scale trough:backdrop, scale fill:backdrop { background-color: #4d4d4d; border-color: #737373; }
|
|
|
|
scale trough:backdrop:disabled, scale fill:backdrop:disabled { background-color: #070707; border-color: #494949; }
|
|
|
|
row:selected scale trough, scale row:selected trough, row:selected scale fill, scale row:selected fill, row:selected scale trough:disabled, scale row:selected trough:disabled, row:selected scale fill:disabled, scale row:selected fill:disabled { border-color: #aaa; }
|
|
|
|
.osd scale trough, scale .osd trough, .osd scale fill, scale .osd fill { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(255, 255, 255, 0); box-shadow: none; }
|
|
|
|
.osd scale trough:disabled, scale .osd trough:disabled, .osd scale fill:disabled, scale .osd fill:disabled { background-color: #070707; }
|
|
|
|
scale highlight { border: 2px solid #aaa; border-radius: 4px; background-color: #ddd; }
|
|
|
|
scale highlight:disabled { background-color: transparent; border-color: transparent; }
|
|
|
|
scale highlight:backdrop { border-color: #4d4d4d; }
|
|
|
|
scale highlight:backdrop:disabled { background-color: transparent; border-color: transparent; }
|
|
|
|
row:selected scale highlight, scale row:selected highlight, row:selected scale highlight:disabled, scale row:selected highlight:disabled { border-color: #aaa; }
|
|
|
|
.osd scale highlight, scale .osd highlight { border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd scale highlight:disabled, scale .osd highlight:disabled { border-color: transparent; }
|
|
|
|
scale { min-height: 10px; min-width: 10px; padding: 12px; }
|
|
|
|
scale fill, scale highlight { margin: -1px; }
|
|
|
|
scale slider { min-height: 18px; min-width: 18px; margin: -9px; }
|
|
|
|
scale.fine-tune.horizontal { padding-top: 9px; padding-bottom: 9px; min-height: 16px; }
|
|
|
|
scale.fine-tune.vertical { padding-left: 9px; padding-right: 9px; min-width: 16px; }
|
|
|
|
scale.fine-tune slider { margin: -6px; }
|
|
|
|
scale.fine-tune fill, scale.fine-tune highlight, scale.fine-tune trough { border-radius: 5px; -gtk-outline-radius: 7px; }
|
|
|
|
scale trough { outline-offset: 2px; -gtk-outline-radius: 5px; }
|
|
|
|
scale fill, scale fill:backdrop { background-color: gray; box-shadow: none; }
|
|
|
|
scale fill:disabled, scale fill:disabled:backdrop { border-color: transparent; background-color: transparent; }
|
|
|
|
.osd scale fill { background-color: rgba(255, 255, 255, 0.4); }
|
|
|
|
.osd scale fill:disabled, .osd scale fill:disabled:backdrop { border-color: transparent; background-color: transparent; }
|
|
|
|
scale slider { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: #000; border-color: gray; border: 2px solid gray; border-radius: 100%; }
|
|
|
|
scale slider:hover { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: gray; background-image: none; }
|
|
|
|
scale slider:active { border-color: #aaa; }
|
|
|
|
scale slider:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
scale slider:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: #737373; background-image: none; }
|
|
|
|
scale slider:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
row:selected scale slider, row:selected scale slider:disabled { border-color: #aaa; }
|
|
|
|
.osd scale slider { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.2); background-color: black; }
|
|
|
|
.osd scale slider:hover { border-width: 2px; border-style: solid; color: #fff; background-color: rgba(77, 77, 77, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.osd scale slider:active { border-width: 2px; border-style: solid; color: rgba(0, 0, 0, 0.8); background-color: #fff; border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
|
|
|
|
.osd scale slider:disabled { border-width: 2px; border-style: solid; border-color: rgba(255, 255, 255, 0.2); color: gray; }
|
|
|
|
.osd scale slider:backdrop { border-width: 2px; border-style: solid; }
|
|
|
|
.osd scale slider:backdrop:disabled { border-width: 2px; border-style: solid; }
|
|
|
|
scale value { color: alpha(currentColor,0.4); }
|
|
|
|
scale marks { color: alpha(currentColor,0.4); }
|
|
|
|
scale marks.top { margin-bottom: 6px; margin-top: -12px; }
|
|
|
|
scale marks.bottom { margin-top: 6px; margin-bottom: -12px; }
|
|
|
|
scale marks.top { margin-right: 6px; margin-left: -12px; }
|
|
|
|
scale marks.bottom { margin-left: 6px; margin-right: -12px; }
|
|
|
|
scale.fine-tune marks.top { margin-bottom: 6px; margin-top: -9px; }
|
|
|
|
scale.fine-tune marks.bottom { margin-top: 6px; margin-bottom: -9px; }
|
|
|
|
scale.fine-tune marks.top { margin-right: 6px; margin-left: -9px; }
|
|
|
|
scale.fine-tune marks.bottom { margin-left: 6px; margin-right: -9px; }
|
|
|
|
scale.horizontal indicator { min-height: 6px; min-width: 1px; }
|
|
|
|
scale.horizontal.fine-tune indicator { min-height: 3px; }
|
|
|
|
scale.vertical indicator { min-height: 1px; min-width: 6px; }
|
|
|
|
scale.vertical.fine-tune indicator { min-width: 3px; }
|
|
|
|
/***************** Progress bars * */
|
|
progressbar { padding: 0; font-size: 83%; color: #fff; }
|
|
|
|
progressbar:backdrop { color: gray; }
|
|
|
|
progressbar trough { border-width: 1px; border-style: solid; border-radius: 3px; border-color: gray; background-color: #2d2d2d; box-shadow: inset 1px 1px rgba(0, 0, 0, 0.1); }
|
|
|
|
progressbar trough:backdrop { border-color: #737373; background-color: #282828; box-shadow: 0 1px rgba(255, 255, 255, 0); }
|
|
|
|
progressbar.osd trough { background-color: transparent; box-shadow: none; border-width: 0; }
|
|
|
|
progressbar.horizontal trough { min-width: 150px; }
|
|
|
|
progressbar.horizontal trough, progressbar.horizontal progress { min-height: 2px; }
|
|
|
|
progressbar.vertical trough { min-height: 80px; }
|
|
|
|
progressbar.vertical trough, progressbar.vertical progress { min-width: 2px; }
|
|
|
|
progressbar progress { border-width: 1px; border-style: solid; border-radius: 3px; border-color: #aaa; background-color: #ddd; box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2); }
|
|
|
|
progressbar progress.vertical { box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.2); }
|
|
|
|
progressbar progress:backdrop { border-color: #ddd; background-color: #ddd; box-shadow: none; }
|
|
|
|
progressbar progress.osd { border-width: 0; border-radius: 0; }
|
|
|
|
progressbar trough.empty progress { all: unset; }
|
|
|
|
/************* Level Bar * */
|
|
levelbar trough { padding: 2px; border-radius: 3px; background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); color: #fff; border-color: gray; box-shadow: inset 0 2px 2px -2px #090909; }
|
|
|
|
levelbar trough:backdrop { background-color: transparent; border-style: solid; background-image: linear-gradient(to bottom, #090909, #111 90%); color: #fff; background-image: linear-gradient(to bottom, #111, #111); box-shadow: 0 1px rgba(255, 255, 255, 0); }
|
|
|
|
levelbar.horizontal block { min-height: 1px; }
|
|
|
|
levelbar.horizontal.discrete block { margin: 0 1px; min-width: 32px; }
|
|
|
|
levelbar.vertical block { min-width: 1px; }
|
|
|
|
levelbar.vertical.discrete block { margin: 1px 0; min-height: 32px; }
|
|
|
|
levelbar block.filled.low { border-color: #c26000; background-color: #f57900; }
|
|
|
|
levelbar block.filled.low:backdrop { border-color: #f57900; }
|
|
|
|
levelbar block.filled.high { border-width: 1px; border-style: solid; border-color: #c4c4c4; background-color: #ddd; box-shadow: 0 1px rgba(0, 0, 0, 0.1); border-radius: 1px; }
|
|
|
|
levelbar block.filled.high:backdrop { border-color: #ddd; box-shadow: none; }
|
|
|
|
levelbar block.filled.full { border-color: #5aa411; background-color: #73d216; }
|
|
|
|
levelbar block.filled.full:backdrop { border-color: #73d216; }
|
|
|
|
levelbar block.empty { border-width: 1px; border-style: solid; background-color: transparent; border-color: rgba(255, 255, 255, 0.2); border-radius: 1px; box-shadow: none; }
|
|
|
|
levelbar block.empty:backdrop { border-color: rgba(255, 255, 255, 0.15); }
|
|
|
|
calendar:selected, .view:selected, textview text:selected, iconview:selected, .view:selected:focus, textview text:selected:focus, iconview:selected:focus, .view:selected:hover, textview text:selected:hover, iconview:selected:hover, textview text selection, textview text selection:focus, textview text selection:hover, flowbox flowboxchild:selected, label selection, label selection:focus, label selection:hover, label selection:backdrop, spinbutton:not(.vertical) selection:focus, spinbutton.vertical text selection:focus, spinbutton:not(.vertical) selection, spinbutton.vertical text selection, entry selection:focus, entry selection, popover.background checkbutton:selected, popover.background radiobutton:selected, modelbutton.flat:selected, .menuitem.button.flat:selected, treeview.view:selected, row.activatable:selected, .sidebar:selected { background-color: #ddd; color: #000; }
|
|
|
|
calendar:backdrop:selected, .view:backdrop:selected, textview text:backdrop:selected, iconview:backdrop:selected, textview text:backdrop:selected:focus, iconview:backdrop:selected:focus, textview text:backdrop:selected:hover, iconview:backdrop:selected:hover, textview text selection:backdrop, flowbox flowboxchild:backdrop:selected, label selection:backdrop, spinbutton:not(.vertical) selection:backdrop, spinbutton.vertical text selection:backdrop, entry selection:backdrop, popover.background checkbutton:backdrop:selected, popover.background radiobutton:backdrop:selected, modelbutton.flat:backdrop:selected, .menuitem.button.flat:backdrop:selected, row.activatable:backdrop:selected, .sidebar:backdrop:selected { background-color: gray; color: #000; }
|
|
|
|
.monospace { font-family: monospace; }
|
|
|
|
/********** frames * */
|
|
frame, .frame { border: 1px solid gray; padding: 0; }
|
|
|
|
frame.flat, .frame.flat { border-style: none; }
|
|
|
|
frame:backdrop, .frame:backdrop { border-color: #737373; }
|
|
|
|
actionbar > revealer > box { padding: 6px; border-width: 1px 0 0; border-color: gray; border-style: solid none none; }
|
|
|
|
placessidebar .frame, scrolledwindow .frame { border-radius: 2px; }
|
|
|
|
placessidebar viewport.frame, scrolledwindow viewport.frame { border-style: none; }
|
|
|
|
placessidebar overshoot.top, scrolledwindow overshoot.top { background-image: radial-gradient(ellipse farthest-side at top, #010101 85%, rgba(1, 1, 1, 0)), radial-gradient(ellipse farthest-side at top, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)); background-size: 100% 5%, 100% 100%; background-repeat: no-repeat; background-position: top; background-color: transparent; border: none; box-shadow: none; }
|
|
|
|
placessidebar overshoot.top:backdrop, scrolledwindow overshoot.top:backdrop { background-image: radial-gradient(ellipse farthest-side at top, #737373 85%, rgba(115, 115, 115, 0)); background-size: 100% 5%; background-repeat: no-repeat; background-position: top; background-color: transparent; border: none; box-shadow: none; }
|
|
|
|
placessidebar overshoot.bottom, scrolledwindow overshoot.bottom { background-image: radial-gradient(ellipse farthest-side at bottom, #010101 85%, rgba(1, 1, 1, 0)), radial-gradient(ellipse farthest-side at bottom, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)); background-size: 100% 5%, 100% 100%; background-repeat: no-repeat; background-position: bottom; background-color: transparent; border: none; box-shadow: none; }
|
|
|
|
placessidebar overshoot.bottom:backdrop, scrolledwindow overshoot.bottom:backdrop { background-image: radial-gradient(ellipse farthest-side at bottom, #737373 85%, rgba(115, 115, 115, 0)); background-size: 100% 5%; background-repeat: no-repeat; background-position: bottom; background-color: transparent; border: none; box-shadow: none; }
|
|
|
|
placessidebar overshoot.left, scrolledwindow overshoot.left { background-image: radial-gradient(ellipse farthest-side at left, #010101 85%, rgba(1, 1, 1, 0)), radial-gradient(ellipse farthest-side at left, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)); background-size: 5% 100%, 100% 100%; background-repeat: no-repeat; background-position: left; background-color: transparent; border: none; box-shadow: none; }
|
|
|
|
placessidebar overshoot.left:backdrop, scrolledwindow overshoot.left:backdrop { background-image: radial-gradient(ellipse farthest-side at left, #737373 85%, rgba(115, 115, 115, 0)); background-size: 5% 100%; background-repeat: no-repeat; background-position: left; background-color: transparent; border: none; box-shadow: none; }
|
|
|
|
placessidebar overshoot.right, scrolledwindow overshoot.right { background-image: radial-gradient(ellipse farthest-side at right, #010101 85%, rgba(1, 1, 1, 0)), radial-gradient(ellipse farthest-side at right, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)); background-size: 5% 100%, 100% 100%; background-repeat: no-repeat; background-position: right; background-color: transparent; border: none; box-shadow: none; }
|
|
|
|
placessidebar overshoot.right:backdrop, scrolledwindow overshoot.right:backdrop { background-image: radial-gradient(ellipse farthest-side at right, #737373 85%, rgba(115, 115, 115, 0)); background-size: 5% 100%; background-repeat: no-repeat; background-position: right; background-color: transparent; border: none; box-shadow: none; }
|
|
|
|
placessidebar undershoot.top, scrolledwindow undershoot.top { background-color: transparent; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); padding-top: 1px; background-size: 10px 1px; background-repeat: repeat-x; background-origin: content-box; background-position: center top; border: none; box-shadow: none; }
|
|
|
|
placessidebar undershoot.bottom, scrolledwindow undershoot.bottom { background-color: transparent; background-image: linear-gradient(to left, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); padding-bottom: 1px; background-size: 10px 1px; background-repeat: repeat-x; background-origin: content-box; background-position: center bottom; border: none; box-shadow: none; }
|
|
|
|
placessidebar undershoot.left, scrolledwindow undershoot.left { background-color: transparent; background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); padding-left: 1px; background-size: 1px 10px; background-repeat: repeat-y; background-origin: content-box; background-position: left center; border: none; box-shadow: none; }
|
|
|
|
placessidebar undershoot.right, scrolledwindow undershoot.right { background-color: transparent; background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2) 50%, rgba(0, 0, 0, 0.2) 50%); padding-right: 1px; background-size: 1px 10px; background-repeat: repeat-y; background-origin: content-box; background-position: right center; border: none; box-shadow: none; }
|
|
|
|
placessidebar junction, scrolledwindow junction { border-color: transparent; background-color: black; }
|
|
|
|
placessidebar junction:backdrop, scrolledwindow junction:backdrop { background-color: transparent; }
|
|
|
|
separator { background: gray; min-width: 1px; min-height: 1px; }
|
|
|
|
/********* Lists * */
|
|
list { background-color: #111; border-color: gray; }
|
|
|
|
list:backdrop { background-color: #111; border-color: #737373; }
|
|
|
|
list row { padding: 2px; }
|
|
|
|
row.activatable, row.activatable:backdrop, row.activatable:backdrop:active, row.activatable:backdrop:checked, row.activatable:backdrop:disabled, row.activatable:backdrop:disabled:active, row.activatable:backdrop:disabled:checked, row.activatable:disabled:active, row.activatable:disabled:checked { background-color: rgba(17, 17, 17, 0); border-style: none; border-radius: 0; box-shadow: none; }
|
|
|
|
row.activatable { color: #fff; }
|
|
|
|
row.activatable:hover { background-color: #1d1d1d; }
|
|
|
|
row.activatable:active { box-shadow: inset 0 2px 2px -2px rgba(0, 0, 0, 0.2); }
|
|
|
|
row.activatable:selected { background-color: #ddd; color: #000; }
|
|
|
|
row.activatable:selected:active { box-shadow: inset 0 2px 3px -1px rgba(0, 0, 0, 0.5); }
|
|
|
|
row.activatable:selected:hover { background-color: #e0e0e0; }
|
|
|
|
row.activatable:selected:backdrop { background-color: gray; }
|
|
|
|
row.activatable:selected .button.flat { color: #000; }
|
|
|
|
row.activatable:selected .button.flat:hover { color: #fff; }
|
|
|
|
row.activatable:selected .button.flat:active { color: #000; }
|
|
|
|
row .button.flat { color: #fff; }
|
|
|
|
row .button.flat:active { color: #000; }
|
|
|
|
row, row.activatable { transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
|
|
|
|
row:hover, row.activatable:hover { transition: none; }
|
|
|
|
/********************* App Notifications * */
|
|
.app-notification, .app-notification.frame { padding: 10px; border-width: 0 1px 1px; border-style: solid; border-color: gray; border-radius: 0 0 6px 6px; background-image: linear-gradient(to bottom, black 5%, black); }
|
|
|
|
.app-notification .button, .app-notification.frame .button { padding: 6px; }
|
|
|
|
.app-notification border, .app-notification.frame border { border-width: 0; }
|
|
|
|
/************* Expanders * */
|
|
expander { min-width: 24px; min-height: 24px; -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); }
|
|
|
|
expander:dir(rtl) { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); }
|
|
|
|
expander:checked { -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); }
|
|
|
|
expander:disabled { color: gray; }
|
|
|
|
expander-widget title:hover > expander { color: white; }
|
|
|
|
/************ Calendar * */
|
|
calendar { border: 1px solid gray; }
|
|
|
|
calendar.button { padding: 0 4px; color: #707070; }
|
|
|
|
calendar.button:hover { color: #fff; }
|
|
|
|
calendar.button:backdrop, calendar.button:backdrop:hover { color: #888888; }
|
|
|
|
calendar.view { border-radius: 2px; }
|
|
|
|
calendar.header { background: linear-gradient(to bottom, #050505, black); border-bottom-color: #404040; }
|
|
|
|
calendar.header:backdrop { background-image: linear-gradient(to bottom, #000, #000); border-bottom-color: #3a3a3a; }
|
|
|
|
calendar:indeterminate, calendar:indeterminate:backdrop { color: alpha(currentColor,0.55); }
|
|
|
|
calendar.highlight, calendar.highlight:backdrop { color: #fff; }
|
|
|
|
/*********** Dialogs * */
|
|
messagedialog .dialog-action-area button { padding: 8px; }
|
|
|
|
messagedialog .titlebar { border-style: none; box-shadow: inset 0 1px #000; }
|
|
|
|
messagedialog.csd.background { border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; }
|
|
|
|
messagedialog.csd .dialog-action-area button { padding: 12px; border-radius: 0; border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: #000; border-color: gray; }
|
|
|
|
messagedialog.csd .dialog-action-area button:hover { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: gray; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button:active { border-width: 2px; border-style: solid; background-image: none; color: black; background-color: white; border-color: gray; }
|
|
|
|
messagedialog.csd .dialog-action-area button:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: #737373; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button.suggested-action { border-width: 2px; border-style: solid; color: white; background-image: none; background-color: #4a90d9; border-color: #1c5187; }
|
|
|
|
messagedialog.csd .dialog-action-area button.suggested-action:hover { border-width: 2px; border-style: solid; color: white; background-color: #4a90d9; border-color: #1c5187; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button.suggested-action:active { border-width: 2px; border-style: solid; background-image: none; color: black; background-color: #b56f26; border-color: #1c5187; }
|
|
|
|
messagedialog.csd .dialog-action-area button.suggested-action:backdrop { border-width: 2px; border-style: solid; color: white; background-color: #4a90d9; border-color: #4a90d9; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button.suggested-action:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button.suggested-action:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button.destructive-action { border-width: 2px; border-style: solid; color: white; background-image: none; background-color: #ef2929; border-color: #8e0b0b; }
|
|
|
|
messagedialog.csd .dialog-action-area button.destructive-action:hover { border-width: 2px; border-style: solid; color: white; background-color: #ef2929; border-color: #8e0b0b; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button.destructive-action:active { border-width: 2px; border-style: solid; background-image: none; color: black; background-color: #10d6d6; border-color: #8e0b0b; }
|
|
|
|
messagedialog.csd .dialog-action-area button.destructive-action:backdrop { border-width: 2px; border-style: solid; color: white; background-color: #ef2929; border-color: #ef2929; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button.destructive-action:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button.destructive-action:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button, messagedialog.csd .dialog-action-area button:hover, messagedialog.csd .dialog-action-area button:active, messagedialog.csd .dialog-action-area button:disabled, messagedialog.csd .dialog-action-area button:backdrop, messagedialog.csd .dialog-action-area button:backdrop:disabled, messagedialog.csd .dialog-action-area button.suggested-action, messagedialog.csd .dialog-action-area button.suggested-action:hover, messagedialog.csd .dialog-action-area button.suggested-action:active, messagedialog.csd .dialog-action-area button.suggested-action:backdrop, messagedialog.csd .dialog-action-area button.suggested-action:backdrop:disabled, messagedialog.csd .dialog-action-area button.suggested-action:disabled, messagedialog.csd .dialog-action-area button.destructive-action, messagedialog.csd .dialog-action-area button.destructive-action:hover, messagedialog.csd .dialog-action-area button.destructive-action:active, messagedialog.csd .dialog-action-area button.destructive-action:backdrop, messagedialog.csd .dialog-action-area button.destructive-action:backdrop:disabled, messagedialog.csd .dialog-action-area button.destructive-action:disabled { border-right-style: none; border-bottom-style: none; }
|
|
|
|
messagedialog.csd .dialog-action-area button:last-child { border-bottom-right-radius: 7px; -gtk-outline-bottom-right-radius: 5px; }
|
|
|
|
messagedialog.csd .dialog-action-area button:first-child { border-left-style: none; border-bottom-left-radius: 7px; -gtk-outline-bottom-left-radius: 5px; }
|
|
|
|
filechooser .dialog-action-box { border-top: 1px solid gray; }
|
|
|
|
filechooser .dialog-action-box:backdrop { border-top-color: #737373; }
|
|
|
|
filechooser #pathbarbox { border-bottom: 1px solid #000; }
|
|
|
|
filechooserbutton:drop(active) { box-shadow: none; border-color: transparent; }
|
|
|
|
/*********** Sidebar * */
|
|
.sidebar { border: none; }
|
|
|
|
.sidebar:backdrop { background-color: #000; }
|
|
|
|
.sidebar > scrolledwindow > .frame { border-right: 1px solid gray; }
|
|
|
|
.sidebar > scrolledwindow > .frame:dir(rtl) { border-right: none; border-left: 1px solid gray; }
|
|
|
|
stacksidebar row { padding: 10px 4px; }
|
|
|
|
stacksidebar row > label { padding-left: 6px; padding-right: 6px; }
|
|
|
|
stacksidebar row.needs-attention > label { background-size: 6px 6px, 0 0; }
|
|
|
|
/**************** File chooser * */
|
|
placessidebar > viewport.frame { border-style: none; }
|
|
|
|
placessidebar row { min-height: 36px; padding: 0px; }
|
|
|
|
placessidebar row > revealer { padding: 0 14px; }
|
|
|
|
placessidebar row image.sidebar-icon { opacity: 0.7; }
|
|
|
|
placessidebar row image.sidebar-icon:dir(ltr) { padding-right: 8px; }
|
|
|
|
placessidebar row image.sidebar-icon:dir(rtl) { padding-left: 8px; }
|
|
|
|
placessidebar row label.sidebar-label:dir(ltr) { padding-right: 2px; }
|
|
|
|
placessidebar row label.sidebar-label:dir(rtl) { padding-left: 2px; }
|
|
|
|
button.sidebar-button { min-height: 26px; min-width: 26px; margin-top: 3px; margin-bottom: 3px; padding: 0; border-radius: 100%; -gtk-outline-radius: 100%; }
|
|
|
|
button.sidebar-button:not(:hover):not(:active) > image, button.sidebar-button:backdrop > image { opacity: 0.7; }
|
|
|
|
placessidebar row:selected:active { box-shadow: none; }
|
|
|
|
placessidebar row.sidebar-placeholder-row { padding: 0 8px; min-height: 2px; background-image: linear-gradient(to bottom, #fff, #fff); background-clip: content-box; }
|
|
|
|
placessidebar row.sidebar-new-bookmark-row { color: #ddd; }
|
|
|
|
placessidebar row:drop(active):not(:disabled) { color: #fff; box-shadow: inset 0 1px #fff, inset 0 -1px #fff; }
|
|
|
|
placessidebar row:drop(active):not(:disabled):selected { color: #000; background-color: #fff; }
|
|
|
|
placesview .server-list-button > image { transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); -gtk-icon-transform: rotate(0turn); }
|
|
|
|
placesview .server-list-button:checked > image { transition: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); -gtk-icon-transform: rotate(-0.5turn); }
|
|
|
|
placesview row.activatable:hover { background-color: transparent; }
|
|
|
|
/********* Paned * */
|
|
paned > separator { min-width: 1px; min-height: 1px; background-image: linear-gradient(to bottom, gray, gray); }
|
|
|
|
paned > separator:backdrop { background-image: linear-gradient(to bottom, #737373, #737373); }
|
|
|
|
paned:dir(ltr).horizontal > separator { margin: 0 -8px 0 0; padding: 0 8px 0 0; }
|
|
|
|
paned:dir(rtl).horizontal > separator { margin: 0 0 0 -8px; padding: 0 0 0 8px; }
|
|
|
|
paned.vertical > separator { margin: 0 0 -8px 0; padding: 0 0 8px 0; }
|
|
|
|
paned > separator:selected { background-color: #ddd; }
|
|
|
|
paned > separator.wide { min-width: 5px; min-height: 5px; background-color: transparent; border-style: none solid; border-color: gray; border-width: 1px; }
|
|
|
|
/************** GtkInfoBar * */
|
|
infobar { border-width: 0; border-style: none; }
|
|
|
|
.info, .question, .warning, .error { background-color: #ddd; color: #000; text-shadow: 0 1px #c4c4c4; border-color: #c4c4c4; }
|
|
|
|
.info button, .question button, .warning button, .error button { border-width: 2px; border-style: solid; color: #000; background-image: none; background-color: #ddd; border-color: #9d9d9d; }
|
|
|
|
.info button:hover, .question button:hover, .warning button:hover, .error button:hover { border-width: 2px; border-style: solid; color: #000; background-color: #ddd; border-color: #9d9d9d; background-image: none; }
|
|
|
|
.info button:active, .question button:active, .warning button:active, .error button:active { border-width: 2px; border-style: solid; background-image: none; color: white; background-color: #222222; border-color: #9d9d9d; }
|
|
|
|
.info button:disabled, .question button:disabled, .warning button:disabled, .error button:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
.info button:backdrop, .question button:backdrop, .warning button:backdrop, .error button:backdrop { border-width: 2px; border-style: solid; color: #000; background-color: #ddd; border-color: #ddd; background-image: none; }
|
|
|
|
.info button:backdrop:disabled, .question button:backdrop:disabled, .warning button:backdrop:disabled, .error button:backdrop:disabled { border-width: 2px; border-style: solid; color: gray; background-color: #070707; border-color: #494949; background-image: none; }
|
|
|
|
.info label:selected, .info label:selected:focus, .info label:selected:hover, .question label:selected, .question label:selected:focus, .question label:selected:hover, .warning label:selected, .warning label:selected:focus, .warning label:selected:hover, .error label:selected, .error label:selected:focus, .error label:selected:hover { background-color: white; }
|
|
|
|
/************ Tooltips * */
|
|
tooltip { padding: 4px; /* not working */ border-radius: 5px; box-shadow: none; }
|
|
|
|
tooltip.background { background-color: #000; background-clip: padding-box; border: 2px solid #fff; }
|
|
|
|
tooltip decoration { background-color: transparent; }
|
|
|
|
tooltip * { padding: 4px; background-color: transparent; color: #fff; }
|
|
|
|
/***************** Color Chooser * */
|
|
colorswatch { box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px #000; }
|
|
|
|
:selected colorswatch { box-shadow: none; }
|
|
|
|
:selected colorswatch overlay, :selected colorswatch overlay:hover { border-color: #000; }
|
|
|
|
colorswatch:selected { box-shadow: inset 0 1px rgba(0, 0, 0, 0.1), 0 1px #000; }
|
|
|
|
colorswatch.top { border-top-left-radius: 6px; border-top-right-radius: 6px; }
|
|
|
|
colorswatch.bottom { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; }
|
|
|
|
colorswatch.left, colorswatch:first-child:not(overlay):not(.top) { border-top-left-radius: 6px; border-bottom-left-radius: 6px; }
|
|
|
|
colorswatch.right, colorswatch:last-child:not(overlay):not(.bottom) { border-top-right-radius: 6px; border-bottom-right-radius: 6px; }
|
|
|
|
colorswatch:only-child:not(overlay) { border-radius: 6px; }
|
|
|
|
colorswatch.top > overlay { border-top-left-radius: 5px; border-top-right-radius: 5px; }
|
|
|
|
colorswatch.bottom > overlay { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }
|
|
|
|
colorswatch:first-child:not(.top) > overlay { border-top-left-radius: 5px; border-bottom-left-radius: 5px; }
|
|
|
|
colorswatch:last-child:not(.bottom) > overlay { border-top-right-radius: 5px; border-bottom-right-radius: 5px; }
|
|
|
|
colorswatch:only-child > overlay { border-radius: 5px; }
|
|
|
|
colorswatch.activatable:hover, colorswatch.activatable:hover:selected { background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 50%); box-shadow: inset 0 1px rgba(255, 255, 255, 0.4), inset 0 -1px rgba(0, 0, 0, 0.4); }
|
|
|
|
colorswatch:backdrop, colorswatch:backdrop:selected, colorswatch.dark:backdrop, colorswatch.dark:backdrop:selected { background-image: none; box-shadow: none; }
|
|
|
|
colorswatch.dark { color: white; border: 1px solid rgba(0, 0, 0, 0.3); }
|
|
|
|
colorswatch.dark:hover { border-color: rgba(0, 0, 0, 0.5); }
|
|
|
|
colorswatch.dark:backdrop { color: rgba(255, 255, 255, 0.3); }
|
|
|
|
colorswatch.light { color: black; border: 1px solid rgba(0, 0, 0, 0.3); }
|
|
|
|
colorswatch.light:hover { border-color: rgba(0, 0, 0, 0.5); }
|
|
|
|
colorswatch.light:backdrop { color: rgba(0, 0, 0, 0.3); }
|
|
|
|
colorswatch overlay, colorswatch overlay:selected { background: none; border: none; }
|
|
|
|
colorswatch#add-color-button { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: #000; border-color: gray; }
|
|
|
|
colorswatch#add-color-button:hover { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: gray; background-image: none; }
|
|
|
|
colorswatch#add-color-button:backdrop { border-width: 2px; border-style: solid; color: #fff; background-color: #000; border-color: #737373; background-image: none; }
|
|
|
|
colorswatch#add-color-button overlay { border-width: 0; background: none; }
|
|
|
|
/********************** Window Decorations * */
|
|
decoration { border-radius: 7px 7px 0 0; border-width: 0px; box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.23); /* this is used for the resize cursor area */ margin: 10px; }
|
|
|
|
decoration:backdrop { box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.2), 0 3px 9px 1px transparent, 0 0 0 1px rgba(255, 255, 255, 0.18); }
|
|
|
|
.tiled decoration { border-radius: 0; }
|
|
|
|
.csd.popup decoration { border-radius: 0; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.13); }
|
|
|
|
tooltip.csd decoration { border-radius: 5px; box-shadow: none; }
|
|
|
|
messagedialog.csd decoration { border-radius: 7px; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.13); }
|
|
|
|
.solid-csd decoration { border-radius: 0; margin: 4px; background-color: #000; border: solid 1px #737373; box-shadow: none; }
|
|
|
|
/********************** Touch Copy & Paste * */
|
|
cursor-handle { background-color: #000; background-image: none; -gtk-icon-source: none; box-shadow: none; outline-style: none; outline-color: transparent; border: 2px solid #fff; }
|
|
|
|
cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) { border-radius: 10px 0 0 0; padding-left: 10px; }
|
|
|
|
cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) { border-radius: 0 10px 0 0; padding-right: 10px; }
|
|
|
|
cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) { border-radius: 10px 10px 0 0; }
|
|
|
|
cursor-handle.top:hover:dir(ltr), cursor-handle.bottom:hover:dir(rtl) { border-radius: 10px 0 0 0; padding-left: 10px; }
|
|
|
|
cursor-handle.bottom:hover:dir(ltr), cursor-handle.top:hover:dir(rtl) { border-radius: 0 10px 0 0; padding-right: 10px; }
|
|
|
|
cursor-handle.insertion-cursor:hover:dir(ltr), cursor-handle.insertion-cursor:hover:dir(rtl) { border-radius: 10px 10px 0 0; }
|
|
|
|
cursor-handle.top:active:dir(ltr), cursor-handle.bottom:active:dir(rtl) { border-radius: 10px 0 0 0; padding-left: 10px; }
|
|
|
|
cursor-handle.bottom:active:dir(ltr), cursor-handle.top:active:dir(rtl) { border-radius: 0 10px 0 0; padding-right: 10px; }
|
|
|
|
cursor-handle.insertion-cursor:active:dir(ltr), cursor-handle.insertion-cursor:active:dir(rtl) { border-radius: 10px 10px 0 0; }
|
|
|
|
/* Decouple the font of context menus from their entry/textview */
|
|
.context-menu { font: initial; }
|
|
|
|
.touch-selection { font: initial; color: #fff; border: none; background-color: black; background-clip: padding-box; box-shadow: none; text-shadow: 0 1px black; -gtk-icon-shadow: 0 1px black; }
|
|
|
|
.touch-selection:backdrop { text-shadow: none; }
|
|
|
|
.touch-selection button { border-width: 2px; border-style: solid; color: #fff; background-image: none; background-color: rgba(0, 0, 0, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.touch-selection button:hover { border-width: 2px; border-style: solid; color: #fff; background-color: rgba(77, 77, 77, 0.8); border-color: rgba(255, 255, 255, 0.2); }
|
|
|
|
.touch-selection button:active, .touch-selection button:checked { border-width: 2px; border-style: solid; color: rgba(0, 0, 0, 0.8); background-color: #fff; border-color: rgba(255, 255, 255, 0.2); box-shadow: none; }
|
|
|
|
.touch-selection button:disabled, .touch-selection button:backdrop:disabled { border-width: 2px; border-style: solid; border-color: rgba(255, 255, 255, 0.2); color: gray; }
|
|
|
|
.touch-selection button:backdrop { border-width: 2px; border-style: solid; }
|
|
|
|
.touch-selection .check { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:hover { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:active { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:disabled { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:indeterminate { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:indeterminate:hover { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:indeterminate:selected { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:indeterminate:disabled { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:checked { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:checked:disabled { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:checked:hover { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:checked:active { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .check:backdrop:checked { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:hover { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:active { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:disabled { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:indeterminate { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:indeterminate:hover { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:indeterminate:selected { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:indeterminate:disabled { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:checked { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:checked:disabled { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:checked:hover { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:checked:active { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
.touch-selection .radio:backdrop:checked { -gtk-icon-shadow: none; color: #fff; }
|
|
|
|
button.circular { border-radius: 20px; -gtk-outline-radius: 20px; }
|
|
|
|
button.circular label { padding: 0; }
|
|
|
|
row:selected button.circular { color: #000; }
|
|
|
|
row:selected button.circular:hover { color: #fff; }
|
|
|
|
row:selected button.circular:active { color: #000; }
|
|
|
|
.keycap { min-width: 18px; min-height: 25px; margin-top: 3px; padding-bottom: 2px; padding-left: 6px; padding-right: 6px; color: #fff; background-color: #111; border: 2px solid; border-color: gray; border-radius: 5px; box-shadow: inset 0 -3px #404040, inset 0 -2px #000, inset 0 0 0 1px #111; font-size: smaller; }
|
|
|
|
*:drop(active):focus, *:drop(active) { border-color: #fff; box-shadow: inset 0 0 0 2px #fff; }
|
|
|
|
stackswitcher button.text-button { min-width: 100px; }
|
|
|
|
stackswitcher button.circular { min-width: 0px; }
|
|
|
|
/********* Emoji * */
|
|
popover.emoji-picker { padding-left: 0; padding-right: 0; }
|
|
|
|
button.emoji-section, button.emoji-section:backdrop { /* Dodge stuff inherited from backdrop button */ border-color: transparent; border-width: 3px; border-style: none none solid; border-radius: 0; margin: 2px 4px 2px 4px; padding: 3px 0 0; min-width: 32px; min-height: 28px; /* reset props inherited from the button style */ background: none; box-shadow: none; text-shadow: none; outline-offset: -5px; }
|
|
|
|
button.emoji-section:backdrop:not(:checked), button.emoji-section:backdrop:backdrop:not(:checked) { border-color: transparent; }
|
|
|
|
button.emoji-section:hover, button.emoji-section:backdrop:hover { border-color: gray; }
|
|
|
|
button.emoji-section:checked, button.emoji-section:backdrop:checked { border-color: #ddd; }
|
|
|
|
button.emoji-section label, button.emoji-section:backdrop label { padding: 0; opacity: 0.55; }
|
|
|
|
button.emoji-section:hover label, button.emoji-section:backdrop:hover label { opacity: 0.775; }
|
|
|
|
button.emoji-section:checked label, button.emoji-section:backdrop:checked label { opacity: 1; /* Dodge default inversion to white for non-flat, selected button */ color: #fff; }
|
|
|
|
.emoji { font-size: x-large; padding: 6px; border-radius: 6px; }
|
|
|
|
.emoji :hover { background: #ddd; color: #000; }
|
|
|
|
/**************** Print dialog * */
|
|
printdialog drawing { color: #fff; background: none; border: none; padding: 0; }
|
|
|
|
printdialog drawing:backdrop { color: #fff; border-color: #737373; }
|
|
|
|
printdialog drawing paper { background: white; color: black; border: 1px solid gray; }
|
|
|
|
printdialog .dialog-action-box { margin: 12px; }
|