mirror of
https://github.com/Snigdha-OS/snigdhaos-gtk-theme.git
synced 2025-09-22 00:34:56 +02:00
7543 lines
209 KiB
CSS
7543 lines
209 KiB
CSS
@keyframes ripple_effect {
|
|
to {
|
|
background-size: 1000% 1000%;
|
|
}
|
|
}
|
|
|
|
@keyframes scale_ripple_effect {
|
|
to {
|
|
background-size: auto, 1000% 1000%;
|
|
}
|
|
}
|
|
|
|
@keyframes header_ripple_effect {
|
|
from {
|
|
background-image: radial-gradient(circle, #754ffe 0%, transparent 0%);
|
|
}
|
|
to {
|
|
background-image: radial-gradient(circle, #754ffe 100%, transparent 0%);
|
|
}
|
|
}
|
|
|
|
* {
|
|
padding: 0;
|
|
background-clip: padding-box;
|
|
-gtk-secondary-caret-color: #754ffe;
|
|
}
|
|
|
|
/***************
|
|
* Base States *
|
|
***************/
|
|
.background {
|
|
background-color: #34343b;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.background.csd {
|
|
border-radius: 13px;
|
|
background-color: #34343b;
|
|
}
|
|
|
|
.background.maximized, .background.tiled, .background.fullscreen, .background.solid-csd {
|
|
border-radius: 0;
|
|
}
|
|
|
|
dnd {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.normal-icons {
|
|
-gtk-icon-size: 16px;
|
|
}
|
|
|
|
.large-icons {
|
|
-gtk-icon-size: 32px;
|
|
}
|
|
|
|
spinner:disabled,
|
|
arrow:disabled,
|
|
scrollbar:disabled,
|
|
check:disabled,
|
|
radio:disabled,
|
|
treeview.expander:disabled {
|
|
-gtk-icon-filter: opacity(0.5);
|
|
}
|
|
|
|
iconview, .view {
|
|
background-color: #31313a;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
iconview:disabled, .view:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
textview > text {
|
|
background-color: #31313a;
|
|
}
|
|
|
|
textview > border {
|
|
background-color: #3b3b43;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
textview:drop(active) {
|
|
caret-color: #FFA726;
|
|
}
|
|
|
|
iconview {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
iconview > dndtarget:drop(active) {
|
|
border: none;
|
|
}
|
|
|
|
rubberband, .content-view > rubberband, columnview.view > rubberband,
|
|
treeview.view > rubberband, gridview > rubberband, flowbox > rubberband {
|
|
border: 1px solid #5C6BC0;
|
|
background-color: rgba(92, 107, 192, 0.3);
|
|
}
|
|
|
|
flowbox > flowboxchild {
|
|
padding: 4px;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
gridview > child {
|
|
padding: 3px;
|
|
}
|
|
|
|
gridview > child box {
|
|
border-spacing: 8px;
|
|
margin: 12px;
|
|
}
|
|
|
|
coverflow cover {
|
|
color: #FFFFFF;
|
|
background-color: #31313a;
|
|
border: none;
|
|
}
|
|
|
|
label.separator {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
label > selection {
|
|
background-color: #754ffe;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.dim-label, row.expander:not(:checked) image.expander-row-arrow, row label.subtitle, headerbar .subtitle, spinbutton:not(.vertical) > text > placeholder, entry > text > placeholder, label.separator {
|
|
opacity: 0.6;
|
|
}
|
|
|
|
window.assistant .sidebar {
|
|
padding: 4px 0;
|
|
}
|
|
|
|
window.assistant.csd .sidebar {
|
|
border-top-style: none;
|
|
}
|
|
|
|
window.assistant .sidebar label {
|
|
min-height: 36px;
|
|
padding: 0 12px;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
font-weight: 500;
|
|
}
|
|
|
|
window.assistant .sidebar label.highlight {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
window.aboutdialog image.large-icons {
|
|
-gtk-icon-size: 128px;
|
|
}
|
|
|
|
.osd .scale-popup, .app-notification, popover.background.touch-selection, popover.background.magnifier, popover.background.osd, .osd {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
border: none;
|
|
background-color: rgba(37, 37, 45, 0.85);
|
|
background-clip: padding-box;
|
|
border-radius: 8px;
|
|
padding: 6px;
|
|
margin: 6px;
|
|
box-shadow: 0 10px 16px rgba(0, 0, 0, 0.25), 0 6px 10px rgba(0, 0, 0, 0.16);
|
|
}
|
|
|
|
/*********************
|
|
* Spinner Animation *
|
|
*********************/
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(1turn);
|
|
}
|
|
}
|
|
|
|
spinner {
|
|
background: 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;
|
|
}
|
|
|
|
.large-title {
|
|
font-weight: 300;
|
|
font-size: 24pt;
|
|
}
|
|
|
|
.title-1 {
|
|
font-weight: 800;
|
|
font-size: 20pt;
|
|
}
|
|
|
|
.title-2 {
|
|
font-weight: 800;
|
|
font-size: 15pt;
|
|
}
|
|
|
|
.title-3 {
|
|
font-weight: 700;
|
|
font-size: 15pt;
|
|
}
|
|
|
|
.title-4 {
|
|
font-weight: 700;
|
|
font-size: 13pt;
|
|
}
|
|
|
|
.heading {
|
|
font-weight: 700;
|
|
font-size: 11pt;
|
|
}
|
|
|
|
.body {
|
|
font-weight: 400;
|
|
font-size: 11pt;
|
|
}
|
|
|
|
.caption-heading {
|
|
font-weight: 700;
|
|
font-size: 9pt;
|
|
}
|
|
|
|
.caption {
|
|
font-weight: 400;
|
|
font-size: 9pt;
|
|
}
|
|
|
|
/****************
|
|
* Text Entries *
|
|
****************/
|
|
spinbutton:not(.vertical), entry {
|
|
min-height: 36px;
|
|
padding: 0 8px;
|
|
border-radius: 7px;
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
border-image: none;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
background-color: #44454b;
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton:focus-within:not(.vertical), entry:focus-within {
|
|
border-image: none;
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton:disabled:not(.vertical), entry:disabled {
|
|
box-shadow: none;
|
|
background-color: #3b3b43;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
}
|
|
|
|
colorchooser .popover.osd spinbutton:not(.vertical), window.dialog.message entry, notebook > stack:not(:only-child) entry:not(.search),
|
|
notebook > stack:not(:only-child) spinbutton:not(.vertical), popover.background .linked entry, popover.background entry,
|
|
popover.background spinbutton:not(.vertical), spinbutton.flat:not(.vertical), entry.flat {
|
|
border-radius: 0;
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 -1px rgba(255, 255, 255, 0.2), inset 0 -2px transparent;
|
|
background-color: transparent;
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
colorchooser .popover.osd spinbutton:focus-within:not(.vertical), window.dialog.message entry:focus-within, notebook > stack:not(:only-child) entry:focus-within:not(.search),
|
|
notebook > stack:not(:only-child) spinbutton:focus-within:not(.vertical), popover.background entry:focus-within,
|
|
popover.background spinbutton:focus-within:not(.vertical), spinbutton.flat:focus-within:not(.vertical), entry.flat:focus-within {
|
|
box-shadow: inset 0 -1px transparent, inset 0 -2px #754ffe;
|
|
outline: none;
|
|
}
|
|
|
|
colorchooser .popover.osd spinbutton:disabled:not(.vertical), window.dialog.message entry:disabled, notebook > stack:not(:only-child) entry:disabled:not(.search),
|
|
notebook > stack:not(:only-child) spinbutton:disabled:not(.vertical), popover.background entry:disabled,
|
|
popover.background spinbutton:disabled:not(.vertical), spinbutton.flat:disabled:not(.vertical), entry.flat:disabled {
|
|
box-shadow: inset 0 -1px rgba(255, 255, 255, 0.08), inset 0 -2px transparent;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton:not(.vertical) image, entry image {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
spinbutton:not(.vertical) image:hover, spinbutton:not(.vertical) image:active, entry image:hover, entry image:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
spinbutton:not(.vertical) image:disabled, entry image:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
spinbutton:not(.vertical) image.left, entry image.left {
|
|
margin-left: 2px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
spinbutton:not(.vertical) image.right, entry image.right {
|
|
margin-left: 6px;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
spinbutton:focus-within:not(.vertical) > placeholder, entry:focus-within > placeholder {
|
|
opacity: 0;
|
|
}
|
|
|
|
spinbutton:not(.vertical) > text > block-cursor, entry > text > block-cursor {
|
|
color: #31313a;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
spinbutton:not(.vertical) undershoot.left > undershoot.left, entry undershoot.left > undershoot.left {
|
|
box-shadow: inset 1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to right, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
spinbutton:not(.vertical) undershoot.right > undershoot.right, entry undershoot.right > undershoot.right {
|
|
box-shadow: inset -1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to left, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
spinbutton.password:not(.vertical) image.caps-lock-indicator, entry.password image.caps-lock-indicator {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
spinbutton.error:not(.vertical), entry.error {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
border-image: none;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
background-color: #DD2C00;
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.error:focus-within:not(.vertical), entry.error:focus-within {
|
|
border-image: none;
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.error:disabled:not(.vertical), entry.error:disabled {
|
|
box-shadow: none;
|
|
background-color: #3b3b43;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.error.flat:not(.vertical), entry.error.flat {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 -1px #DD2C00, inset 0 -2px transparent;
|
|
background-color: transparent;
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.error.flat:focus-within:not(.vertical), entry.error.flat:focus-within {
|
|
box-shadow: inset 0 -1px transparent, inset 0 -2px #DD2C00;
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.error.flat:disabled:not(.vertical), entry.error.flat:disabled {
|
|
box-shadow: inset 0 -1px rgba(255, 255, 255, 0.08), inset 0 -2px transparent;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.error:not(.vertical) image, entry.error image {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
spinbutton.error:not(.vertical) image:hover, spinbutton.error:not(.vertical) image:active, entry.error image:hover, entry.error image:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
spinbutton.error:not(.vertical) image:disabled, entry.error image:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
spinbutton.warning:not(.vertical), entry.warning {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
border-image: none;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
background-color: #FF6D00;
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.warning:focus-within:not(.vertical), entry.warning:focus-within {
|
|
border-image: none;
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.warning:disabled:not(.vertical), entry.warning:disabled {
|
|
box-shadow: none;
|
|
background-color: #3b3b43;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.warning.flat:not(.vertical), entry.warning.flat {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 -1px #FF6D00, inset 0 -2px transparent;
|
|
background-color: transparent;
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.warning.flat:focus-within:not(.vertical), entry.warning.flat:focus-within {
|
|
box-shadow: inset 0 -1px transparent, inset 0 -2px #FF6D00;
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.warning.flat:disabled:not(.vertical), entry.warning.flat:disabled {
|
|
box-shadow: inset 0 -1px rgba(255, 255, 255, 0.08), inset 0 -2px transparent;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.warning:not(.vertical) image, entry.warning image {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
spinbutton.warning:not(.vertical) image:hover, spinbutton.warning:not(.vertical) image:active, entry.warning image:hover, entry.warning image:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
spinbutton.warning:not(.vertical) image:disabled, entry.warning image:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
spinbutton:not(.vertical) > progress, entry > progress {
|
|
margin: 2px -6px;
|
|
}
|
|
|
|
spinbutton:not(.vertical) progress > trough > progress, entry progress > trough > progress {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
border-radius: 0;
|
|
border-bottom: 2px solid #754ffe;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.flat:not(.vertical), .linked.vertical > spinbutton.flat:not(.vertical), .linked:not(.vertical) > entry.flat, .linked.vertical > entry.flat {
|
|
border-radius: 0;
|
|
}
|
|
|
|
notebook > stack:not(:only-child) treeview entry:not(.search),
|
|
notebook > stack:not(:only-child) treeview spinbutton:not(.vertical),
|
|
treeview entry {
|
|
min-height: 0;
|
|
padding: 2px;
|
|
border-radius: 0;
|
|
background-color: #31313a;
|
|
}
|
|
|
|
notebook > stack:not(:only-child) treeview entry:not(.search),
|
|
notebook > stack:not(:only-child) treeview spinbutton:not(.vertical),
|
|
treeview entry {
|
|
border-image: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
editablelabel > stack > text {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
border-image: none;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
background-color: #44454b;
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
.entry-tag {
|
|
margin: 2px;
|
|
border-radius: 9999px;
|
|
box-shadow: none;
|
|
background-color: #754ffe;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.entry-tag:hover {
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
:dir(ltr) .entry-tag {
|
|
margin-left: 4px;
|
|
margin-right: 0;
|
|
padding-left: 12px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
:dir(rtl) .entry-tag {
|
|
margin-left: 0;
|
|
margin-right: 4px;
|
|
padding-left: 8px;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
.entry-tag.button {
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.entry-tag.button:not(:hover):not(:active) {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
/***********
|
|
* Buttons *
|
|
***********/
|
|
@keyframes needs_attention {
|
|
from {
|
|
background-image: radial-gradient(farthest-side, #9e9ff9 0%, rgba(158, 159, 249, 0) 0%);
|
|
}
|
|
to {
|
|
background-image: radial-gradient(farthest-side, #9e9ff9 95%, rgba(158, 159, 249, 0));
|
|
}
|
|
}
|
|
|
|
|
|
button {
|
|
min-height: 24px;
|
|
min-width: 16px;
|
|
padding: 6px 10px;
|
|
border-radius: 7px;
|
|
font-weight: 500;
|
|
transition: 100ms;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
background-color: #44454b;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
outline: none;
|
|
}
|
|
|
|
|
|
button:hover {
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
|
|
button:active {
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
outline: none;
|
|
}
|
|
|
|
|
|
button:disabled {
|
|
box-shadow: none;
|
|
background-color: #3b3b43;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
outline: none;
|
|
}
|
|
|
|
|
|
button:checked {
|
|
background-color: #754ffe;
|
|
color: #FFFFFF;
|
|
background-image: linear-gradient(to bottom, #6C6AF2, #4648FB);
|
|
background-size: auto auto;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
outline: none;
|
|
}
|
|
|
|
|
|
button:checked:disabled {
|
|
background-color: rgba(86, 87, 245, 0.3);
|
|
color: rgba(86, 87, 245, 0.5);
|
|
background-image: none;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button, window.dialog.message.csd .linked.dialog-action-area:not(.vertical) > button, window.dialog.message .linked.dialog-action-area:not(.vertical) > button, check,
|
|
radio, scrollbar button, notebook > header > tabs > arrow, spinbutton.vertical button, spinbutton:not(.vertical) button, splitbutton.flat > button,
|
|
splitbutton.flat > menubutton > button, menubutton.flat > button, banner > revealer > widget button, .nautilus-window.background.csd #NautilusQueryEditor > menubutton > button.image-button, infobar.info button, infobar.question button, infobar.warning button, infobar.error button, .app-notification button, headerbar button:not(.suggested-action):not(.destructive-action), popover.background modelbutton, popover.menu box.circular-buttons button.circular.image-button.model, popover.menu box.inline-buttons button.image-button.model,
|
|
pathbar > button, actionbar > revealer > box button:not(.suggested-action):not(.destructive-action):not(.server-list-button),
|
|
toolbar button, .toolbar button,
|
|
button.flat {
|
|
transition: 100ms;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
outline: none;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button:hover, window.dialog.message .linked:not(.vertical).dialog-action-area > button:hover, check:hover,
|
|
radio:hover, scrollbar button:hover, notebook > header > tabs > arrow:hover, spinbutton.vertical button:hover, spinbutton:not(.vertical) button:hover, splitbutton.flat > button:hover,
|
|
splitbutton.flat > menubutton > button:hover, menubutton.flat > button:hover, banner > revealer > widget button:hover, .nautilus-window.background.csd #NautilusQueryEditor > menubutton > button.image-button:hover, infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover, .app-notification button:hover, headerbar button:hover:not(.suggested-action):not(.destructive-action), popover.background modelbutton:hover, popover.menu box.circular-buttons button.circular.image-button.model:hover, popover.menu box.inline-buttons button.image-button.model:hover,
|
|
pathbar > button:hover, actionbar > revealer > box button:hover:not(.suggested-action):not(.destructive-action):not(.server-list-button),
|
|
toolbar button:hover, .toolbar button:hover,
|
|
button.flat:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button:active, window.dialog.message .linked:not(.vertical).dialog-action-area > button:active, check:active,
|
|
radio:active, scrollbar button:active, notebook > header > tabs > arrow:active, spinbutton.vertical button:active, spinbutton:not(.vertical) button:active, splitbutton.flat > button:active,
|
|
splitbutton.flat > menubutton > button:active, menubutton.flat > button:active, banner > revealer > widget button:active, .nautilus-window.background.csd #NautilusQueryEditor > menubutton > button.image-button:active, infobar.info button:active, infobar.question button:active, infobar.warning button:active, infobar.error button:active, .app-notification button:active, headerbar button:active:not(.suggested-action):not(.destructive-action), popover.background modelbutton:active, popover.menu box.circular-buttons button.circular.image-button.model:active, popover.menu box.inline-buttons button.image-button.model:active,
|
|
pathbar > button:active, actionbar > revealer > box button:active:not(.suggested-action):not(.destructive-action):not(.server-list-button),
|
|
toolbar button:active, .toolbar button:active,
|
|
button.flat:active {
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
color: #FFFFFF;
|
|
background-image: none;
|
|
outline: none;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button:disabled, window.dialog.message .linked:not(.vertical).dialog-action-area > button:disabled, check:disabled,
|
|
radio:disabled, scrollbar button:disabled, notebook > header > tabs > arrow:disabled, spinbutton.vertical button:disabled, spinbutton:not(.vertical) button:disabled, splitbutton.flat > button:disabled,
|
|
splitbutton.flat > menubutton > button:disabled, menubutton.flat > button:disabled, banner > revealer > widget button:disabled, .nautilus-window.background.csd #NautilusQueryEditor > menubutton > button.image-button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .app-notification button:disabled, headerbar button:disabled:not(.suggested-action):not(.destructive-action), popover.background modelbutton:disabled, popover.menu box.circular-buttons button.circular.image-button.model:disabled, popover.menu box.inline-buttons button.image-button.model:disabled,
|
|
pathbar > button:disabled, actionbar > revealer > box button:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button),
|
|
toolbar button:disabled, .toolbar button:disabled,
|
|
button.flat:disabled {
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
outline: none;
|
|
}
|
|
|
|
splitbutton.flat > button:checked,
|
|
splitbutton.flat > menubutton > button:checked, menubutton.flat > button:checked, banner > revealer > widget button:checked, .nautilus-window.background.csd #NautilusQueryEditor > menubutton > button.image-button:checked, infobar.info button:checked, infobar.question button:checked, infobar.warning button:checked, infobar.error button:checked, .app-notification button:checked, headerbar button:checked:not(.suggested-action):not(.destructive-action), popover.background modelbutton:checked, popover.menu box.circular-buttons button.circular.image-button.model:checked, popover.menu box.inline-buttons button.image-button.model:checked,
|
|
pathbar > button:checked, actionbar > revealer > box button:checked:not(.suggested-action):not(.destructive-action):not(.server-list-button),
|
|
toolbar button:checked, .toolbar button:checked,
|
|
button.flat:checked {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
color: #FFFFFF;
|
|
background-image: none;
|
|
outline: none;
|
|
}
|
|
|
|
splitbutton.flat > button:checked:disabled,
|
|
splitbutton.flat > menubutton > button:checked:disabled, menubutton.flat > button:checked:disabled, banner > revealer > widget button:checked:disabled, .nautilus-window.background.csd #NautilusQueryEditor > menubutton > button.image-button:checked:disabled, infobar.info button:checked:disabled, infobar.question button:checked:disabled, infobar.warning button:checked:disabled, infobar.error button:checked:disabled, .app-notification button:checked:disabled, headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), popover.background modelbutton:checked:disabled, popover.menu box.circular-buttons button.circular.image-button.model:checked:disabled, popover.menu box.inline-buttons button.image-button.model:checked:disabled,
|
|
pathbar > button:checked:disabled, actionbar > revealer > box button:checked:disabled:not(.suggested-action):not(.destructive-action):not(.server-list-button),
|
|
toolbar button:checked:disabled, .toolbar button:checked:disabled,
|
|
button.flat:checked:disabled {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
background-image: none;
|
|
}
|
|
|
|
|
|
button.text-button {
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
|
|
button.image-button {
|
|
min-width: 24px;
|
|
padding: 6px;
|
|
}
|
|
|
|
|
|
button.text-button.image-button label:first-child {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
|
|
button.text-button.image-button label:last-child {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
|
|
button.text-button.image-button image:not(:only-child) {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.linked > button.flat, .linked.vertical > button.flat {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
.linked > button.flat.image-button, .linked > button.flat.text-button.image-button, .linked.vertical > button.flat.image-button, .linked.vertical > button.flat.text-button.image-button {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
row:selected button:disabled {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
banner > revealer > widget button, infobar.info button, infobar.question button, infobar.warning button, infobar.error button, row:selected button.flat {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
banner > revealer > widget button:hover, infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover, banner > revealer > widget button:active, infobar.info button:active, infobar.question button:active, infobar.warning button:active, infobar.error button:active, row:selected button.flat:hover, row:selected button.flat:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
banner > revealer > widget button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, row:selected button.flat:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
banner > revealer > widget button:checked, infobar.info button:checked, infobar.question button:checked, infobar.warning button:checked, infobar.error button:checked, row:selected button.flat:checked {
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
banner > revealer > widget button:checked:disabled, infobar.info button:checked:disabled, infobar.question button:checked:disabled, infobar.warning button:checked:disabled, infobar.error button:checked:disabled, row:selected button.flat:checked:disabled {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
|
|
button.osd {
|
|
padding: 12px 16px;
|
|
box-shadow: none;
|
|
background-color: rgba(0, 0, 0, 0.65);
|
|
color: white;
|
|
}
|
|
|
|
|
|
button.osd:hover {
|
|
background-color: rgba(0, 0, 0, 0.75);
|
|
color: white;
|
|
}
|
|
|
|
|
|
button.osd:active {
|
|
background-color: rgba(0, 0, 0, 0.85);
|
|
color: white;
|
|
}
|
|
|
|
|
|
button.osd.image-button {
|
|
padding: 12px;
|
|
}
|
|
|
|
|
|
button.osd:disabled {
|
|
opacity: 0;
|
|
}
|
|
|
|
|
|
button.suggested-action {
|
|
background-color: #7C4DFF;
|
|
color: #FFFFFF;
|
|
background-image: linear-gradient(to bottom, #4FC3F7, #42A5F5);
|
|
background-size: auto auto;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
|
|
button.suggested-action:disabled {
|
|
box-shadow: none;
|
|
background-color: #3b3b43;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
background-image: none;
|
|
}
|
|
|
|
|
|
button.suggested-action:checked {
|
|
background-color: #a382ff;
|
|
}
|
|
|
|
|
|
button.suggested-action.flat {
|
|
background-color: transparent;
|
|
color: #7C4DFF;
|
|
background-image: none;
|
|
}
|
|
|
|
|
|
button.suggested-action.flat:disabled {
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
background-image: none;
|
|
}
|
|
|
|
|
|
button.suggested-action.flat:checked {
|
|
background-image: none;
|
|
background-color: rgba(124, 77, 255, 0.3);
|
|
}
|
|
|
|
|
|
button.destructive-action {
|
|
background-color: #FF5252;
|
|
color: #FFFFFF;
|
|
background-image: linear-gradient(to bottom, #EF5350, #FF5252);
|
|
background-size: auto auto;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
|
|
button.destructive-action:disabled {
|
|
box-shadow: none;
|
|
background-color: #3b3b43;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
background-image: none;
|
|
}
|
|
|
|
|
|
button.destructive-action:checked {
|
|
background-color: #ff8686;
|
|
}
|
|
|
|
|
|
button.destructive-action.flat {
|
|
background-color: transparent;
|
|
color: #FF5252;
|
|
background-image: none;
|
|
}
|
|
|
|
|
|
button.destructive-action.flat:disabled {
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
outline: none;
|
|
background-image: none;
|
|
}
|
|
|
|
|
|
button.destructive-action.flat:checked {
|
|
background-image: none;
|
|
background-color: rgba(255, 82, 82, 0.3);
|
|
}
|
|
|
|
stackswitcher > button {
|
|
outline-offset: -4px;
|
|
}
|
|
|
|
stackswitcher > button > label {
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
stackswitcher > button > image {
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
stackswitcher > button.text-button {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
stackswitcher > button.image-button {
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
stackswitcher > button.needs-attention:checked > label,
|
|
stackswitcher > button.needs-attention:checked > image {
|
|
animation: none;
|
|
background-image: none;
|
|
}
|
|
|
|
.primary-toolbar button {
|
|
-gtk-icon-shadow: none;
|
|
}
|
|
|
|
menubutton.circular > button, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action), row button.image-button, headerbar.default-decoration windowcontrols button, headerbar button.suggested-action, headerbar button.destructive-action, headerbar button:not(.suggested-action):not(.destructive-action), check,
|
|
radio, popover.menu box.circular-buttons button.circular.image-button.model,
|
|
button.close,
|
|
button.circular,
|
|
button.round-button {
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
.nautilus-window.background.csd .floating-bar button, placessidebar .navigation-sidebar > row button.sidebar-button, notebook > header tab button.flat, spinbutton:not(.vertical) button {
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
padding: 0;
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
stacksidebar row.needs-attention > label, stackswitcher > button.needs-attention > label,
|
|
stackswitcher > button.needs-attention > image {
|
|
animation: needs_attention 225ms cubic-bezier(0, 0, 0.2, 1) forwards;
|
|
background-repeat: no-repeat;
|
|
background-position: right 3px;
|
|
background-size: 6px 6px;
|
|
}
|
|
|
|
stacksidebar row.needs-attention > label:dir(rtl), stackswitcher > button.needs-attention > label:dir(rtl),
|
|
stackswitcher > button.needs-attention > image:dir(rtl) {
|
|
background-position: left 3px;
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox > box > button.combo, row .linked button, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry, .linked > button {
|
|
border-radius: 0;
|
|
}
|
|
|
|
row .linked button:first-child, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child, .linked > button:first-child {
|
|
border-top-left-radius: 7px;
|
|
border-bottom-left-radius: 7px;
|
|
}
|
|
|
|
row .linked button:last-child, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child, .linked > button:last-child {
|
|
border-top-right-radius: 7px;
|
|
border-bottom-right-radius: 7px;
|
|
}
|
|
|
|
row .linked button:only-child, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child, .linked > button:only-child {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
.linked.vertical > combobox > box > button.combo, .linked.vertical > spinbutton:not(.vertical), .linked.vertical > entry, .linked.vertical > button {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.linked.vertical > spinbutton:first-child:not(.vertical), .linked.vertical > entry:first-child, .linked.vertical > button:first-child {
|
|
border-top-left-radius: 7px;
|
|
border-top-right-radius: 7px;
|
|
}
|
|
|
|
.linked.vertical > spinbutton:last-child:not(.vertical), .linked.vertical > entry:last-child, .linked.vertical > button:last-child {
|
|
border-bottom-left-radius: 7px;
|
|
border-bottom-right-radius: 7px;
|
|
}
|
|
|
|
.linked.vertical > spinbutton:only-child:not(.vertical), .linked.vertical > entry:only-child, .linked.vertical > button:only-child {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
.toolbar button {
|
|
margin: 1px;
|
|
}
|
|
|
|
button.color {
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
padding: 6px;
|
|
}
|
|
|
|
button.color > colorswatch:only-child, button.color > colorswatch:only-child > overlay {
|
|
border-radius: 0;
|
|
}
|
|
|
|
/*********
|
|
* Links *
|
|
*********/
|
|
button.link,
|
|
link {
|
|
color: #039BE5;
|
|
}
|
|
|
|
button.link:visited,
|
|
link:visited,
|
|
link:visited:hover,
|
|
link:visited:active {
|
|
color: #E040FB;
|
|
}
|
|
|
|
infobar.info *:link, infobar.question *:link, infobar.warning *:link, infobar.error *:link, headerbar.selection-mode .subtitle:link, button.link:selected, *:selected button.link,
|
|
link:selected, *:selected link {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.link selection {
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
button.link > label {
|
|
text-decoration-line: underline;
|
|
}
|
|
|
|
/*****************
|
|
* GtkSpinButton *
|
|
*****************/
|
|
spinbutton {
|
|
font-feature-settings: "tnum";
|
|
}
|
|
|
|
spinbutton > text > block-cursor {
|
|
background-color: #FFFFFF;
|
|
color: #31313a;
|
|
}
|
|
|
|
spinbutton:not(.vertical) {
|
|
padding: 0;
|
|
}
|
|
|
|
notebook > stack:not(:only-child) spinbutton:not(.vertical) entry, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:focus, notebook > stack:not(:only-child) spinbutton:not(.vertical) entry:disabled,
|
|
spinbutton:not(.vertical) text {
|
|
min-width: 32px;
|
|
margin: 0;
|
|
padding-left: 12px;
|
|
border-image: none;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
spinbutton:not(.vertical) button {
|
|
border: solid 6px transparent;
|
|
}
|
|
|
|
spinbutton:not(.vertical) button.up:dir(ltr), spinbutton:not(.vertical) button.down:dir(rtl) {
|
|
margin-left: -3px;
|
|
}
|
|
|
|
spinbutton:not(.vertical) button.up:dir(rtl), spinbutton:not(.vertical) button.down:dir(ltr) {
|
|
margin-right: -3px;
|
|
}
|
|
|
|
spinbutton.vertical {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
border-radius: 7px;
|
|
}
|
|
|
|
spinbutton.vertical:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
spinbutton.vertical:drop(active) {
|
|
box-shadow: none;
|
|
}
|
|
|
|
spinbutton.vertical text {
|
|
min-height: 36px;
|
|
min-width: 48px;
|
|
padding: 0;
|
|
}
|
|
|
|
spinbutton.vertical button {
|
|
min-height: 36px;
|
|
min-width: 48px;
|
|
padding: 0;
|
|
}
|
|
|
|
spinbutton.vertical button.up {
|
|
border-radius: 7px 7px 0 0;
|
|
}
|
|
|
|
spinbutton.vertical button.down {
|
|
border-radius: 0 0 7px 7px;
|
|
}
|
|
|
|
treeview spinbutton:not(.vertical) {
|
|
min-height: 0;
|
|
border-style: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
treeview spinbutton:not(.vertical) text {
|
|
min-height: 0;
|
|
padding: 1px 2px;
|
|
}
|
|
|
|
/**************
|
|
* ComboBoxes *
|
|
**************/
|
|
dropdown > popover.menu.background > contents {
|
|
padding: 0;
|
|
}
|
|
|
|
dropdown > button > box {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
dropdown arrow,
|
|
combobox arrow {
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
}
|
|
|
|
dropdown > popover.menu > contents modelbutton,
|
|
combobox > popover.menu > contents modelbutton {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
dropdown button.combo:checked,
|
|
combobox button.combo:checked {
|
|
transition: none;
|
|
}
|
|
|
|
dropdown button.combo cellview:dir(ltr),
|
|
combobox button.combo cellview:dir(ltr) {
|
|
margin-left: -2px;
|
|
}
|
|
|
|
dropdown button.combo cellview:dir(rtl),
|
|
combobox button.combo cellview:dir(rtl) {
|
|
margin-right: -2px;
|
|
}
|
|
|
|
dropdown.linked button:nth-child(2):dir(ltr),
|
|
combobox.linked button:nth-child(2):dir(ltr) {
|
|
border-top-left-radius: 7px;
|
|
border-bottom-left-radius: 7px;
|
|
}
|
|
|
|
dropdown.linked button:nth-child(2):dir(rtl),
|
|
combobox.linked button:nth-child(2):dir(rtl) {
|
|
border-top-right-radius: 7px;
|
|
border-bottom-right-radius: 7px;
|
|
}
|
|
|
|
dropdown:drop(active),
|
|
combobox:drop(active) {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox:first-child > box > button.combo {
|
|
border-top-left-radius: 7px;
|
|
border-bottom-left-radius: 7px;
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox:last-child > box > button.combo {
|
|
border-bottom-right-radius: 7px;
|
|
border-top-right-radius: 7px;
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox:only-child > box > button.combo {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
.linked.vertical > combobox:first-child > box > button.combo {
|
|
border-top-left-radius: 7px;
|
|
border-top-right-radius: 7px;
|
|
}
|
|
|
|
.linked.vertical > combobox:last-child > box > button.combo {
|
|
border-bottom-left-radius: 7px;
|
|
border-bottom-right-radius: 7px;
|
|
}
|
|
|
|
.linked.vertical > combobox:only-child > box > button.combo {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
notebook > stack:not(:only-child) button.combo, popover.background button.combo {
|
|
border-radius: 0;
|
|
background-image: none;
|
|
font-weight: inherit;
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 -1px rgba(255, 255, 255, 0.2), inset 0 -2px transparent;
|
|
background-color: transparent;
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
notebook > stack:not(:only-child) button.combo:hover, popover.background button.combo:hover {
|
|
box-shadow: inset 0 -2px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
notebook > stack:not(:only-child) button.combo:checked, popover.background button.combo:checked {
|
|
box-shadow: inset 0 -2px #754ffe;
|
|
}
|
|
|
|
notebook > stack:not(:only-child) button.combo:disabled, popover.background button.combo:disabled {
|
|
box-shadow: inset 0 -1px rgba(255, 255, 255, 0.08);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
/************
|
|
* Toolbars *
|
|
************/
|
|
.toolbar,
|
|
toolbar {
|
|
padding: 2px;
|
|
background-color: #34343b;
|
|
}
|
|
|
|
.osd .toolbar, .osd toolbar {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.app-notification, .toolbar.osd,
|
|
toolbar.osd {
|
|
transition: box-shadow 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
padding: 6px;
|
|
border-radius: 7px;
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06), inset 0 1px rgba(255, 255, 255, 0.1);
|
|
background-color: #31313a;
|
|
}
|
|
|
|
.app-notification:backdrop, .toolbar.osd:backdrop,
|
|
toolbar.osd:backdrop {
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.left.app-notification, .right.app-notification, .top.app-notification, .bottom.app-notification, .toolbar.osd.left, .toolbar.osd.right, .toolbar.osd.top, .toolbar.osd.bottom,
|
|
toolbar.osd.left,
|
|
toolbar.osd.right,
|
|
toolbar.osd.top,
|
|
toolbar.osd.bottom {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.toolbar.horizontal > separator,
|
|
toolbar.horizontal > separator {
|
|
margin: 2px;
|
|
}
|
|
|
|
.toolbar.vertical > separator,
|
|
toolbar.vertical > separator {
|
|
margin: 2px;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd) scale,
|
|
.toolbar:not(.inline-toolbar):not(.osd) entry,
|
|
.toolbar:not(.inline-toolbar):not(.osd) spinbutton,
|
|
.toolbar:not(.inline-toolbar):not(.osd) button,
|
|
toolbar:not(.inline-toolbar):not(.osd) scale,
|
|
toolbar:not(.inline-toolbar):not(.osd) entry,
|
|
toolbar:not(.inline-toolbar):not(.osd) spinbutton,
|
|
toolbar:not(.inline-toolbar):not(.osd) button {
|
|
margin: 2px;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child),
|
|
.toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child),
|
|
.toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child),
|
|
toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:first-child),
|
|
toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:first-child),
|
|
toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:first-child) {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child),
|
|
.toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child),
|
|
.toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child),
|
|
toolbar:not(.inline-toolbar):not(.osd) .linked entry:not(:last-child),
|
|
toolbar:not(.inline-toolbar):not(.osd) .linked spinbutton:not(:last-child),
|
|
toolbar:not(.inline-toolbar):not(.osd) .linked button:not(:last-child) {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd) spinbutton entry,
|
|
.toolbar:not(.inline-toolbar):not(.osd) spinbutton button,
|
|
toolbar:not(.inline-toolbar):not(.osd) spinbutton entry,
|
|
toolbar:not(.inline-toolbar):not(.osd) spinbutton button {
|
|
margin: 0;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd) switch,
|
|
toolbar:not(.inline-toolbar):not(.osd) switch {
|
|
margin: 8px 2px;
|
|
}
|
|
|
|
searchbar > revealer > box {
|
|
border-spacing: 0;
|
|
padding: 6px;
|
|
border-style: solid;
|
|
border-width: 0 0 1px;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
background-color: #34343b;
|
|
background-clip: border-box;
|
|
box-shadow: none;
|
|
}
|
|
|
|
searchbar > revealer > box entry,
|
|
searchbar > revealer > box button,
|
|
searchbar > revealer > box menubutton,
|
|
searchbar > revealer > box splitbutton {
|
|
margin: 0;
|
|
}
|
|
|
|
actionbar > revealer > box {
|
|
box-shadow: none;
|
|
padding: 6px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
actionbar > revealer > box .linked > button {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
actionbar > revealer > box entry,
|
|
actionbar > revealer > box button,
|
|
actionbar > revealer > box menubutton,
|
|
actionbar > revealer > box splitbutton {
|
|
margin: 0;
|
|
}
|
|
|
|
/************
|
|
* Pathbars *
|
|
************/
|
|
|
|
pathbar > button {
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #754ffe 0%, transparent 0%) 0 0 0/0 0 0px;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
|
|
pathbar > button:checked {
|
|
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #754ffe 100%, transparent 0%) 0 0 2/0 0 2px;
|
|
}
|
|
|
|
|
|
pathbar > button:checked,
|
|
pathbar > button:checked:disabled {
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
pathbar > button label,
|
|
pathbar > button image {
|
|
margin-left: 3px;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
|
|
pathbar > button.slider-button {
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
/**************
|
|
* Tree Views *
|
|
**************/
|
|
columnview.view,
|
|
treeview.view {
|
|
border-left-color: #474751;
|
|
border-top-color: #474751;
|
|
}
|
|
|
|
columnview.view:selected,
|
|
treeview.view:selected {
|
|
border-left-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
columnview.view:hover, columnview.view:active, columnview.view:selected,
|
|
treeview.view:hover,
|
|
treeview.view:active,
|
|
treeview.view:selected {
|
|
border-radius: 0;
|
|
}
|
|
|
|
columnview.view.separator,
|
|
treeview.view.separator {
|
|
min-height: 5px;
|
|
color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
columnview.view > dndtarget:drop(active),
|
|
treeview.view > dndtarget:drop(active) {
|
|
border-style: solid none;
|
|
border-width: 1px;
|
|
border-color: #7C4DFF;
|
|
}
|
|
|
|
columnview.view > dndtarget:drop(active).after,
|
|
treeview.view > dndtarget:drop(active).after {
|
|
border-top-style: none;
|
|
}
|
|
|
|
columnview.view > dndtarget:drop(active).before,
|
|
treeview.view > dndtarget:drop(active).before {
|
|
border-bottom-style: none;
|
|
}
|
|
|
|
columnview.view.expander,
|
|
treeview.view.expander {
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
-gtk-icon-transform: rotate(-90deg);
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
columnview.view.expander:dir(rtl),
|
|
treeview.view.expander:dir(rtl) {
|
|
-gtk-icon-transform: rotate(90deg);
|
|
}
|
|
|
|
columnview.view.expander:checked,
|
|
treeview.view.expander:checked {
|
|
-gtk-icon-transform: unset;
|
|
}
|
|
|
|
columnview.view.expander:hover, columnview.view.expander:active,
|
|
treeview.view.expander:hover,
|
|
treeview.view.expander:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
columnview.view.expander:disabled,
|
|
treeview.view.expander:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
columnview.view.expander:selected,
|
|
treeview.view.expander:selected {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
columnview.view.expander:selected:hover, columnview.view.expander:selected:active,
|
|
treeview.view.expander:selected:hover,
|
|
treeview.view.expander:selected:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
columnview.view.expander:selected:disabled,
|
|
treeview.view.expander:selected:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
columnview.view.progressbar,
|
|
treeview.view.progressbar {
|
|
border-bottom: 4px solid #754ffe;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
columnview.view.progressbar:selected,
|
|
treeview.view.progressbar:selected {
|
|
border-bottom-color: #FFFFFF;
|
|
}
|
|
|
|
columnview.view.trough,
|
|
treeview.view.trough {
|
|
border-bottom: 4px solid rgba(86, 87, 245, 0.3);
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
columnview.view.trough:selected,
|
|
treeview.view.trough:selected {
|
|
border-bottom-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
columnview.view > header > button,
|
|
treeview.view > header > button {
|
|
padding: 2px 6px;
|
|
border-style: none solid solid none;
|
|
border-width: 1px;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-radius: 0;
|
|
background-clip: border-box;
|
|
}
|
|
|
|
columnview.view > header > button, columnview.view > header > button:hover, columnview.view > header > button:active,
|
|
treeview.view > header > button,
|
|
treeview.view > header > button:hover,
|
|
treeview.view > header > button:active {
|
|
box-shadow: none;
|
|
}
|
|
|
|
columnview.view > header > button, columnview.view > header > button:disabled,
|
|
treeview.view > header > button,
|
|
treeview.view > header > button:disabled {
|
|
background-color: #31313a;
|
|
}
|
|
|
|
columnview.view > header > button:last-child,
|
|
treeview.view > header > button:last-child {
|
|
border-right-style: none;
|
|
}
|
|
|
|
columnview.view button.dnd,
|
|
columnview.view header.button.dnd,
|
|
treeview.view button.dnd,
|
|
treeview.view header.button.dnd {
|
|
padding: 2px 6px;
|
|
border-style: none solid solid;
|
|
border-width: 1px;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
background-color: #31313a;
|
|
background-clip: border-box;
|
|
color: #754ffe;
|
|
}
|
|
|
|
columnview.view acceleditor > label,
|
|
treeview.view acceleditor > label {
|
|
background-color: #754ffe;
|
|
}
|
|
|
|
/*********
|
|
* Menus *
|
|
*********/
|
|
menubar {
|
|
padding: 0;
|
|
box-shadow: inset 0 -1px rgba(255, 255, 255, 0.08);
|
|
background-color: #31313a;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
menubar > item {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-height: 20px;
|
|
padding: 6px 12px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
menubar > item:hover {
|
|
transition: none;
|
|
color: #FFFFFF;
|
|
box-shadow: inset 0 -3px #754ffe;
|
|
}
|
|
|
|
menubar > item:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
menubar > item label:disabled {
|
|
color: inherit;
|
|
}
|
|
|
|
menubar > item popover.menu.background > contents {
|
|
padding: 6px;
|
|
}
|
|
|
|
menubar > item popover.menu popover.menu {
|
|
padding: 0 0 4px 0;
|
|
}
|
|
|
|
menubar > item popover.menu.background popover.menu.background > contents {
|
|
margin: 0;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
popover.menu {
|
|
padding: 0;
|
|
}
|
|
|
|
popover.menu box.inline-buttons {
|
|
padding: 0 6px;
|
|
}
|
|
|
|
popover.menu box.inline-buttons button.image-button.model {
|
|
min-height: 28px;
|
|
min-width: 28px;
|
|
padding: 0;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
popover.menu box.circular-buttons button.circular.image-button.model {
|
|
padding: 6px;
|
|
min-height: 28px;
|
|
min-width: 28px;
|
|
}
|
|
|
|
popover.menu arrow.left,
|
|
popover.menu radio.left,
|
|
popover.menu check.left {
|
|
margin-left: -2px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
popover.menu arrow.right,
|
|
popover.menu radio.right,
|
|
popover.menu check.right {
|
|
margin-left: 6px;
|
|
margin-right: -2px;
|
|
}
|
|
|
|
popover.menu label.title {
|
|
font-weight: bold;
|
|
padding: 4px 32px;
|
|
}
|
|
|
|
/************
|
|
* Popovers *
|
|
************/
|
|
popover.background {
|
|
background-color: transparent;
|
|
font: initial;
|
|
}
|
|
|
|
popover.background > arrow,
|
|
popover.background > contents {
|
|
transition: box-shadow 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
padding: 6px;
|
|
box-shadow: 0 6px 10px rgba(0, 0, 0, 0.12), 0 4px 3px rgba(0, 0, 0, 0.16);
|
|
background-color: rgba(60, 60, 70, 0.95);
|
|
border-radius: 8px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
border: none;
|
|
}
|
|
|
|
popover.background > arrow:disabled,
|
|
popover.background > contents:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
popover.background:backdrop {
|
|
background-color: transparent;
|
|
}
|
|
|
|
popover.background:backdrop > arrow,
|
|
popover.background:backdrop > contents {
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
popover.background > contents > list,
|
|
popover.background > contents > .view,
|
|
popover.background > contents > toolbar {
|
|
border-style: none;
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
popover.background > contents separator {
|
|
margin: 3px 0;
|
|
}
|
|
|
|
popover.background > contents list separator {
|
|
margin: 0;
|
|
}
|
|
|
|
popover.background > contents listview.view {
|
|
background-color: transparent;
|
|
}
|
|
|
|
popover.background > contents listview.view > row {
|
|
margin: 0;
|
|
border-radius: 5px;
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
popover.background > contents listview.view > row:selected {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.linked > popover.background button {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
.linked > popover.background button:first-child {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
.linked > popover.background button:last-child {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
.linked > popover.background button:only-child {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
popover.background modelbutton {
|
|
min-height: 20px;
|
|
min-width: 40px;
|
|
padding: 5px 8px;
|
|
border-radius: 5px;
|
|
box-shadow: none;
|
|
animation: none;
|
|
transition: none;
|
|
}
|
|
|
|
popover.background modelbutton arrow {
|
|
background: none;
|
|
}
|
|
|
|
popover.background modelbutton arrow:hover {
|
|
background: none;
|
|
}
|
|
|
|
popover.background modelbutton arrow.left {
|
|
-gtk-icon-source: -gtk-icontheme("go-previous-symbolic");
|
|
}
|
|
|
|
popover.background modelbutton arrow.right {
|
|
-gtk-icon-source: -gtk-icontheme("go-next-symbolic");
|
|
}
|
|
|
|
popover.background modelbutton:hover {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
background-image: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
popover.background modelbutton:hover:active {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
background-image: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
popover.background modelbutton:focus:not(:hover) {
|
|
transition: none;
|
|
background: none;
|
|
box-shadow: none;
|
|
animation: none;
|
|
}
|
|
|
|
popover.background.menu button, popover.background button.model {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
popover.background checkbutton.text-button,
|
|
popover.background radiobutton.text-button {
|
|
outline-style: none;
|
|
}
|
|
|
|
popover.background list separator {
|
|
margin: 0;
|
|
}
|
|
|
|
popover.background label.separator {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
/*************
|
|
* Notebooks *
|
|
*************/
|
|
frame > paned > notebook > header, notebook.frame > header {
|
|
background-color: #3b3b43;
|
|
}
|
|
|
|
notebook, notebook.frame {
|
|
background-color: #31313a;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
notebook.frame frame > border {
|
|
border: none;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
notebook.frame frame > list row.activatable {
|
|
border-radius: 10px;
|
|
}
|
|
|
|
notebook > header {
|
|
border-width: 1px;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
background-color: #34343b;
|
|
background-clip: border-box;
|
|
}
|
|
|
|
notebook > header.top {
|
|
border-bottom-style: solid;
|
|
border-radius: 9px 9px 0 0;
|
|
}
|
|
|
|
notebook > header.top > tabs {
|
|
margin-bottom: -1px;
|
|
}
|
|
|
|
notebook > header.top > tabs > tab:hover {
|
|
box-shadow: inset 0 -2px rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
notebook > header.top > tabs > tab:checked {
|
|
box-shadow: inset 0 -2px #754ffe;
|
|
}
|
|
|
|
notebook > header.bottom {
|
|
border-top-style: solid;
|
|
border-radius: 0 0 9px 9px;
|
|
}
|
|
|
|
notebook > header.bottom > tabs {
|
|
margin-top: -1px;
|
|
}
|
|
|
|
notebook > header.bottom > tabs > tab:hover {
|
|
box-shadow: inset 0 2px rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
notebook > header.bottom > tabs > tab:checked {
|
|
box-shadow: inset 0 2px #754ffe;
|
|
}
|
|
|
|
notebook > header.left {
|
|
border-right-style: solid;
|
|
border-radius: 9px 0 0 9px;
|
|
}
|
|
|
|
notebook > header.left > tabs {
|
|
margin-right: -1px;
|
|
}
|
|
|
|
notebook > header.left > tabs > tab:hover {
|
|
box-shadow: inset -2px 0 rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
notebook > header.left > tabs > tab:checked {
|
|
box-shadow: inset -2px 0 #754ffe;
|
|
}
|
|
|
|
notebook > header.right {
|
|
border-left-style: solid;
|
|
border-radius: 0 9px 9px 0;
|
|
}
|
|
|
|
notebook > header.right > tabs {
|
|
margin-left: -1px;
|
|
}
|
|
|
|
notebook > header.right > tabs > tab:hover {
|
|
box-shadow: inset 2px 0 rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
notebook > header.right > tabs > tab:checked {
|
|
box-shadow: inset 2px 0 #754ffe;
|
|
}
|
|
|
|
notebook > header.top > tabs > arrow {
|
|
border-top-style: none;
|
|
}
|
|
|
|
notebook > header.bottom > tabs > arrow {
|
|
border-bottom-style: none;
|
|
}
|
|
|
|
notebook > header.top > tabs > arrow, notebook > header.bottom > tabs > arrow {
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
notebook > header.top > tabs > arrow.down, notebook > header.bottom > tabs > arrow.down {
|
|
margin-left: -8px;
|
|
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
|
|
}
|
|
|
|
notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up {
|
|
margin-right: -8px;
|
|
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
|
|
}
|
|
|
|
notebook > header.left > tabs > arrow {
|
|
border-left-style: none;
|
|
}
|
|
|
|
notebook > header.right > tabs > arrow {
|
|
border-right-style: none;
|
|
}
|
|
|
|
notebook > header.left > tabs > arrow, notebook > header.right > tabs > arrow {
|
|
padding-top: 4px;
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
notebook > header.left > tabs > arrow.down, notebook > header.right > tabs > arrow.down {
|
|
margin-top: -8px;
|
|
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
|
|
}
|
|
|
|
notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up {
|
|
margin-bottom: -8px;
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
}
|
|
|
|
notebook > header > tabs > arrow {
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
border-radius: 0;
|
|
}
|
|
|
|
notebook > header tab {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
padding: 6px 12px;
|
|
outline-offset: -6px;
|
|
border-width: 1px;
|
|
border-color: transparent;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-weight: 500;
|
|
}
|
|
|
|
notebook > header tab:hover {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
notebook > header tab:hover.reorderable-page {
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
background-color: #3b3b43;
|
|
}
|
|
|
|
notebook > header tab:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
notebook > header tab:checked {
|
|
background-color: transparent;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
notebook > header tab:checked:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
notebook > header tab:checked.reorderable-page {
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
background-color: #31313a;
|
|
}
|
|
|
|
notebook > header tab button.flat {
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
notebook > header tab button.flat:last-child {
|
|
margin-left: 6px;
|
|
margin-right: -6px;
|
|
}
|
|
|
|
notebook > header tab button.flat:first-child {
|
|
margin-left: -6px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
notebook > header.top tabs, notebook > header.bottom tabs {
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
notebook > header.top tabs:not(:only-child):first-child, notebook > header.bottom tabs:not(:only-child):first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
notebook > header.top tabs:not(:only-child):last-child, notebook > header.bottom tabs:not(:only-child):last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
notebook > header.top tabs tab.reorderable-page, notebook > header.bottom tabs tab.reorderable-page {
|
|
margin: 0 -1px;
|
|
border-style: none solid;
|
|
}
|
|
|
|
notebook > header.left tabs, notebook > header.right tabs {
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
notebook > header.left tabs:not(:only-child):first-child, notebook > header.right tabs:not(:only-child):first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
notebook > header.left tabs:not(:only-child):last-child, notebook > header.right tabs:not(:only-child):last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
notebook > header.left tabs tab.reorderable-page, notebook > header.right tabs tab.reorderable-page {
|
|
margin: -1px 0;
|
|
border-style: solid none;
|
|
}
|
|
|
|
notebook > stack:not(:only-child) {
|
|
background-color: #31313a;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/**************
|
|
* Scrollbars *
|
|
**************/
|
|
scrollbar {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-color: rgba(49, 49, 58, 0.65);
|
|
background-clip: border-box;
|
|
}
|
|
|
|
scrollbar.top {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
scrollbar.bottom {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
scrollbar.left {
|
|
border-right: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
scrollbar.right {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
scrollbar > range > trough {
|
|
box-shadow: none;
|
|
outline: none;
|
|
background: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
scrollbar > range > trough > slider {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0;
|
|
min-width: 8px;
|
|
min-height: 8px;
|
|
border: 4px solid transparent;
|
|
border-radius: 9999px;
|
|
background-clip: padding-box;
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
box-shadow: none;
|
|
outline: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
scrollbar > range > trough > slider:hover {
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
scrollbar > range > trough > slider:active {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
scrollbar > range > trough > slider:disabled {
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
scrollbar > range.fine-tune > trough > slider {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), margin 0, border-width 0, min-width 0, min-height 0;
|
|
min-width: 4px;
|
|
min-height: 4px;
|
|
}
|
|
|
|
scrollbar > range.fine-tune.horizontal > trough > slider {
|
|
margin: 2px 0;
|
|
}
|
|
|
|
scrollbar > range.fine-tune.vertical > trough > slider {
|
|
margin: 0 2px;
|
|
}
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering) {
|
|
border-color: transparent;
|
|
background-color: transparent;
|
|
}
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering) > range > trough > slider {
|
|
min-width: 4px;
|
|
min-height: 4px;
|
|
margin: 3px;
|
|
border: 1px solid rgba(49, 49, 58, 0.3);
|
|
}
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button {
|
|
min-width: 4px;
|
|
min-height: 4px;
|
|
margin: 3px;
|
|
border: 1px solid rgba(49, 49, 58, 0.3);
|
|
border-radius: 9999px;
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
background-clip: padding-box;
|
|
-gtk-icon-source: none;
|
|
}
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button:disabled {
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal > range > trough > slider {
|
|
min-width: 24px;
|
|
}
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal button {
|
|
min-width: 8px;
|
|
}
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical > range > trough > slider {
|
|
min-height: 24px;
|
|
}
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical button {
|
|
min-height: 8px;
|
|
}
|
|
|
|
scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering {
|
|
background-color: rgba(49, 49, 58, 0.9);
|
|
}
|
|
|
|
scrollbar.horizontal > range > trough > slider {
|
|
min-width: 24px;
|
|
}
|
|
|
|
scrollbar.vertical > range > trough > slider {
|
|
min-height: 24px;
|
|
}
|
|
|
|
scrollbar button {
|
|
min-width: 16px;
|
|
min-height: 16px;
|
|
padding: 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
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");
|
|
}
|
|
|
|
/**********
|
|
* Switch *
|
|
**********/
|
|
switch {
|
|
transition: all 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
margin: 6px 0;
|
|
padding: 0;
|
|
min-height: 20px;
|
|
min-width: 42px;
|
|
border: 4px solid transparent;
|
|
border-radius: 9999px;
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
background-clip: padding-box;
|
|
color: transparent;
|
|
font-size: 0;
|
|
}
|
|
|
|
switch:disabled {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
switch:checked {
|
|
background-color: rgba(124, 77, 255, 0.35);
|
|
color: transparent;
|
|
}
|
|
|
|
switch:checked:disabled {
|
|
background-color: rgba(124, 77, 255, 0.2);
|
|
}
|
|
|
|
switch > slider {
|
|
transition: 100ms, box-shadow 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-width: 24px;
|
|
min-height: 24px;
|
|
margin: -4px -3px;
|
|
border-radius: 9999px;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
background-color: #44454b;
|
|
color: transparent;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-image: -gtk-scaled(url("assets/switch-slider-unchecked-dark.png"), url("assets/switch-slider-unchecked-dark@2.png"));
|
|
}
|
|
|
|
switch:hover > slider {
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
switch:checked > slider {
|
|
transition: 100ms, box-shadow 100ms cubic-bezier(0, 0, 0.2, 1), margin 0;
|
|
background-color: #7C4DFF;
|
|
color: transparent;
|
|
background-image: -gtk-scaled(url("assets/switch-slider-checked-dark.png"), url("assets/switch-slider-checked-dark@2.png"));
|
|
}
|
|
|
|
switch:disabled > slider {
|
|
background-color: #3b3b43;
|
|
}
|
|
|
|
switch:checked:disabled > slider {
|
|
animation: none;
|
|
background-color: #573f9d;
|
|
}
|
|
|
|
row:selected switch:checked {
|
|
background-color: rgba(68, 1, 255, 0.35);
|
|
}
|
|
|
|
row:selected switch:checked:disabled {
|
|
background-color: rgba(68, 1, 255, 0.2);
|
|
}
|
|
|
|
row:selected switch:checked > slider {
|
|
background-color: #561aff;
|
|
}
|
|
|
|
/*************************
|
|
* Check and Radio items *
|
|
*************************/
|
|
.view.content-view.check:not(list),
|
|
.content-view .tile check:not(list) {
|
|
min-height: 40px;
|
|
min-width: 40px;
|
|
margin: 0;
|
|
padding: 0;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
background-image: none;
|
|
-gtk-icon-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.view.content-view.check:not(list):hover, .view.content-view.check:not(list):active,
|
|
.content-view .tile check:not(list):hover,
|
|
.content-view .tile check:not(list):active {
|
|
-gtk-icon-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.view.content-view.check:not(list),
|
|
.content-view .tile check:not(list) {
|
|
-gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-unchecked-dark.png"), url("assets/selectionmode-checkbox-unchecked-dark@2.png"));
|
|
}
|
|
|
|
.view.content-view.check:not(list):checked,
|
|
.content-view .tile check:not(list):checked {
|
|
-gtk-icon-source: -gtk-scaled(url("assets/selectionmode-checkbox-checked-dark.png"), url("assets/selectionmode-checkbox-checked-dark@2.png"));
|
|
}
|
|
|
|
checkbutton,
|
|
radiobutton {
|
|
outline: none;
|
|
}
|
|
|
|
checkbutton.text-button,
|
|
radiobutton.text-button {
|
|
padding: 2px;
|
|
outline-offset: 0;
|
|
}
|
|
|
|
checkbutton.text-button label:not(:only-child),
|
|
radiobutton.text-button label:not(:only-child) {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
row check:selected,
|
|
row radio:selected, row check:selected:active,
|
|
row radio:selected:active, row check:selected:checked,
|
|
row radio:selected:checked, row check:selected:indeterminate,
|
|
row radio:selected:indeterminate, row check:selected:focus,
|
|
row radio:selected:focus, row check:selected:focus:active,
|
|
row radio:selected:focus:active, row check:selected:focus:checked,
|
|
row radio:selected:focus:checked, row check:selected:focus:indeterminate,
|
|
row radio:selected:focus:indeterminate, treeview.view check:selected,
|
|
treeview.view radio:selected, treeview.view check:selected:active,
|
|
treeview.view radio:selected:active, treeview.view check:selected:checked,
|
|
treeview.view radio:selected:checked, treeview.view check:selected:indeterminate,
|
|
treeview.view radio:selected:indeterminate, treeview.view check:selected:focus,
|
|
treeview.view radio:selected:focus, treeview.view check:selected:focus:active,
|
|
treeview.view radio:selected:focus:active, treeview.view check:selected:focus:checked,
|
|
treeview.view radio:selected:focus:checked, treeview.view check:selected:focus:indeterminate,
|
|
treeview.view radio:selected:focus:indeterminate, row.activatable check:selected,
|
|
row.activatable radio:selected, row.activatable check:selected:active,
|
|
row.activatable radio:selected:active, row.activatable check:selected:checked,
|
|
row.activatable radio:selected:checked, row.activatable check:selected:indeterminate,
|
|
row.activatable radio:selected:indeterminate, row.activatable check:selected:focus,
|
|
row.activatable radio:selected:focus, row.activatable check:selected:focus:active,
|
|
row.activatable radio:selected:focus:active, row.activatable check:selected:focus:checked,
|
|
row.activatable radio:selected:focus:checked, row.activatable check:selected:focus:indeterminate,
|
|
row.activatable radio:selected:focus:indeterminate, row checkbutton check:selected, row checkbutton check:selected:active, row checkbutton check:selected:checked, row checkbutton check:selected:indeterminate, row checkbutton check:selected:focus, row checkbutton check:selected:focus:active, row checkbutton check:selected:focus:checked, row checkbutton check:selected:focus:indeterminate, treeview.view checkbutton check:selected, treeview.view checkbutton check:selected:active, treeview.view checkbutton check:selected:checked, treeview.view checkbutton check:selected:indeterminate, treeview.view checkbutton check:selected:focus, treeview.view checkbutton check:selected:focus:active, treeview.view checkbutton check:selected:focus:checked, treeview.view checkbutton check:selected:focus:indeterminate, row.activatable checkbutton check:selected, row.activatable checkbutton check:selected:active, row.activatable checkbutton check:selected:checked, row.activatable checkbutton check:selected:indeterminate, row.activatable checkbutton check:selected:focus, row.activatable checkbutton check:selected:focus:active, row.activatable checkbutton check:selected:focus:checked, row.activatable checkbutton check:selected:focus:indeterminate, row radiobutton radio:selected, row radiobutton radio:selected:active, row radiobutton radio:selected:checked, row radiobutton radio:selected:indeterminate, row radiobutton radio:selected:focus, row radiobutton radio:selected:focus:active, row radiobutton radio:selected:focus:checked, row radiobutton radio:selected:focus:indeterminate, treeview.view radiobutton radio:selected, treeview.view radiobutton radio:selected:active, treeview.view radiobutton radio:selected:checked, treeview.view radiobutton radio:selected:indeterminate, treeview.view radiobutton radio:selected:focus, treeview.view radiobutton radio:selected:focus:active, treeview.view radiobutton radio:selected:focus:checked, treeview.view radiobutton radio:selected:focus:indeterminate, row.activatable radiobutton radio:selected, row.activatable radiobutton radio:selected:active, row.activatable radiobutton radio:selected:checked, row.activatable radiobutton radio:selected:indeterminate, row.activatable radiobutton radio:selected:focus, row.activatable radiobutton radio:selected:focus:active, row.activatable radiobutton radio:selected:focus:checked, row.activatable radiobutton radio:selected:focus:indeterminate {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
row check:selected:disabled,
|
|
row radio:selected:disabled, row check:selected:active:disabled,
|
|
row radio:selected:active:disabled, row check:selected:checked:disabled,
|
|
row radio:selected:checked:disabled, row check:selected:indeterminate:disabled,
|
|
row radio:selected:indeterminate:disabled, row check:selected:focus:disabled,
|
|
row radio:selected:focus:disabled, row check:selected:focus:active:disabled,
|
|
row radio:selected:focus:active:disabled, row check:selected:focus:checked:disabled,
|
|
row radio:selected:focus:checked:disabled, row check:selected:focus:indeterminate:disabled,
|
|
row radio:selected:focus:indeterminate:disabled, treeview.view check:selected:disabled,
|
|
treeview.view radio:selected:disabled, treeview.view check:selected:active:disabled,
|
|
treeview.view radio:selected:active:disabled, treeview.view check:selected:checked:disabled,
|
|
treeview.view radio:selected:checked:disabled, treeview.view check:selected:indeterminate:disabled,
|
|
treeview.view radio:selected:indeterminate:disabled, treeview.view check:selected:focus:disabled,
|
|
treeview.view radio:selected:focus:disabled, treeview.view check:selected:focus:active:disabled,
|
|
treeview.view radio:selected:focus:active:disabled, treeview.view check:selected:focus:checked:disabled,
|
|
treeview.view radio:selected:focus:checked:disabled, treeview.view check:selected:focus:indeterminate:disabled,
|
|
treeview.view radio:selected:focus:indeterminate:disabled, row.activatable check:selected:disabled,
|
|
row.activatable radio:selected:disabled, row.activatable check:selected:active:disabled,
|
|
row.activatable radio:selected:active:disabled, row.activatable check:selected:checked:disabled,
|
|
row.activatable radio:selected:checked:disabled, row.activatable check:selected:indeterminate:disabled,
|
|
row.activatable radio:selected:indeterminate:disabled, row.activatable check:selected:focus:disabled,
|
|
row.activatable radio:selected:focus:disabled, row.activatable check:selected:focus:active:disabled,
|
|
row.activatable radio:selected:focus:active:disabled, row.activatable check:selected:focus:checked:disabled,
|
|
row.activatable radio:selected:focus:checked:disabled, row.activatable check:selected:focus:indeterminate:disabled,
|
|
row.activatable radio:selected:focus:indeterminate:disabled, row checkbutton check:selected:disabled, row checkbutton check:selected:active:disabled, row checkbutton check:selected:checked:disabled, row checkbutton check:selected:indeterminate:disabled, row checkbutton check:selected:focus:disabled, row checkbutton check:selected:focus:active:disabled, row checkbutton check:selected:focus:checked:disabled, row checkbutton check:selected:focus:indeterminate:disabled, treeview.view checkbutton check:selected:disabled, treeview.view checkbutton check:selected:active:disabled, treeview.view checkbutton check:selected:checked:disabled, treeview.view checkbutton check:selected:indeterminate:disabled, treeview.view checkbutton check:selected:focus:disabled, treeview.view checkbutton check:selected:focus:active:disabled, treeview.view checkbutton check:selected:focus:checked:disabled, treeview.view checkbutton check:selected:focus:indeterminate:disabled, row.activatable checkbutton check:selected:disabled, row.activatable checkbutton check:selected:active:disabled, row.activatable checkbutton check:selected:checked:disabled, row.activatable checkbutton check:selected:indeterminate:disabled, row.activatable checkbutton check:selected:focus:disabled, row.activatable checkbutton check:selected:focus:active:disabled, row.activatable checkbutton check:selected:focus:checked:disabled, row.activatable checkbutton check:selected:focus:indeterminate:disabled, row radiobutton radio:selected:disabled, row radiobutton radio:selected:active:disabled, row radiobutton radio:selected:checked:disabled, row radiobutton radio:selected:indeterminate:disabled, row radiobutton radio:selected:focus:disabled, row radiobutton radio:selected:focus:active:disabled, row radiobutton radio:selected:focus:checked:disabled, row radiobutton radio:selected:focus:indeterminate:disabled, treeview.view radiobutton radio:selected:disabled, treeview.view radiobutton radio:selected:active:disabled, treeview.view radiobutton radio:selected:checked:disabled, treeview.view radiobutton radio:selected:indeterminate:disabled, treeview.view radiobutton radio:selected:focus:disabled, treeview.view radiobutton radio:selected:focus:active:disabled, treeview.view radiobutton radio:selected:focus:checked:disabled, treeview.view radiobutton radio:selected:focus:indeterminate:disabled, row.activatable radiobutton radio:selected:disabled, row.activatable radiobutton radio:selected:active:disabled, row.activatable radiobutton radio:selected:checked:disabled, row.activatable radiobutton radio:selected:indeterminate:disabled, row.activatable radiobutton radio:selected:focus:disabled, row.activatable radiobutton radio:selected:focus:active:disabled, row.activatable radiobutton radio:selected:focus:checked:disabled, row.activatable radiobutton radio:selected:focus:indeterminate:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
row check:selected:hover,
|
|
row radio:selected:hover, treeview.view check:selected:hover,
|
|
treeview.view radio:selected:hover, row checkbutton check:selected:hover, row checkbutton check:selected:focus:hover, treeview.view checkbutton check:selected:hover, treeview.view checkbutton check:selected:focus:hover, row.activatable checkbutton check:selected:hover, row.activatable checkbutton check:selected:focus:hover, row radiobutton radio:selected:hover, row radiobutton radio:selected:focus:hover, treeview.view radiobutton radio:selected:hover, treeview.view radiobutton radio:selected:focus:hover, row.activatable radiobutton radio:selected:hover, row.activatable radiobutton radio:selected:focus:hover {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
row check:selected:hover:disabled,
|
|
row radio:selected:hover:disabled, treeview.view check:selected:hover:disabled,
|
|
treeview.view radio:selected:hover:disabled, row checkbutton check:selected:hover:disabled, row checkbutton check:selected:focus:hover:disabled, treeview.view checkbutton check:selected:hover:disabled, treeview.view checkbutton check:selected:focus:hover:disabled, row.activatable checkbutton check:selected:hover:disabled, row.activatable checkbutton check:selected:focus:hover:disabled, row radiobutton radio:selected:hover:disabled, row radiobutton radio:selected:focus:hover:disabled, treeview.view radiobutton radio:selected:hover:disabled, treeview.view radiobutton radio:selected:focus:hover:disabled, row.activatable radiobutton radio:selected:hover:disabled, row.activatable radiobutton radio:selected:focus:hover:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
check,
|
|
radio {
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
margin: -12px;
|
|
padding: 12px;
|
|
background-color: transparent;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
check:checked, check:indeterminate,
|
|
radio:checked,
|
|
radio:indeterminate {
|
|
color: #7C4DFF;
|
|
}
|
|
|
|
check:checked:disabled, check:indeterminate:disabled,
|
|
radio:checked:disabled,
|
|
radio:indeterminate:disabled {
|
|
color: rgba(124, 77, 255, 0.5);
|
|
}
|
|
|
|
popover modelbutton.flat check, popover modelbutton.flat check:hover, popover modelbutton.flat check:focus, popover modelbutton.flat check:focus:hover, popover modelbutton.flat check:active, popover modelbutton.flat check:disabled, popover modelbutton.flat radio, popover modelbutton.flat radio:hover, popover modelbutton.flat radio:focus, popover modelbutton.flat radio:focus:hover, popover modelbutton.flat radio:active, popover modelbutton.flat radio:disabled {
|
|
transition: none;
|
|
box-shadow: none;
|
|
background-image: none;
|
|
}
|
|
|
|
popover modelbutton.flat check.left:dir(rtl), popover modelbutton.flat radio.left:dir(rtl) {
|
|
margin-left: -12px;
|
|
margin-right: -4px;
|
|
}
|
|
|
|
popover modelbutton.flat check.right:dir(ltr), popover modelbutton.flat radio.right:dir(ltr) {
|
|
margin-left: -4px;
|
|
margin-right: -12px;
|
|
}
|
|
|
|
popover.menu modelbutton check, popover.menu modelbutton radio {
|
|
transition: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
popover.menu modelbutton check:dir(ltr), popover.menu modelbutton radio:dir(ltr) {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
popover.menu modelbutton check:dir(rtl), popover.menu modelbutton radio:dir(rtl) {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
popover.menu modelbutton check:not(:checked):not(:indeterminate):not(:disabled), popover.menu modelbutton radio:not(:checked):not(:indeterminate):not(:disabled) {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
popover.menu modelbutton check, popover.menu modelbutton check:hover, popover.menu modelbutton check:disabled, popover.menu modelbutton radio, popover.menu modelbutton radio:hover, popover.menu modelbutton radio:disabled {
|
|
box-shadow: none;
|
|
}
|
|
|
|
|
|
check {
|
|
-gtk-icon-size: 24px;
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-unchecked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
check:checked {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-checked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
check:indeterminate {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/checkbox-mixed-symbolic.svg"));
|
|
}
|
|
|
|
|
|
radio {
|
|
-gtk-icon-size: 24px;
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-unchecked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
radio:checked {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
radio:indeterminate {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-mixed-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu modelbutton check {
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
border-radius: 7px;
|
|
-gtk-icon-size: 16px;
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu modelbutton check:checked {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu modelbutton check:indeterminate {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu modelbutton radio {
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
border-image: none;
|
|
-gtk-icon-size: 16px;
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu modelbutton radio:checked {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu modelbutton radio:indeterminate {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg"));
|
|
}
|
|
|
|
check:not(:checked):active {
|
|
-gtk-icon-transform: rotate(90deg);
|
|
}
|
|
|
|
check:not(:checked):indeterminate:active,
|
|
radio:not(:checked):indeterminate:active {
|
|
-gtk-icon-transform: scaleX(-1);
|
|
}
|
|
|
|
check:not(:checked),
|
|
radio:not(:checked) {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 600ms cubic-bezier(0, 0, 0.2, 1), -gtk-icon-transform 0;
|
|
}
|
|
|
|
check:not(:checked):active,
|
|
radio:not(:checked):active {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0, -gtk-icon-transform 0;
|
|
}
|
|
|
|
popover.menu modelbutton check:not(:checked), popover.menu modelbutton radio:not(:checked) {
|
|
transition: none;
|
|
}
|
|
|
|
treeview.view check,
|
|
treeview.view radio {
|
|
padding: 0;
|
|
}
|
|
|
|
treeview.view check:hover,
|
|
treeview.view radio:hover {
|
|
box-shadow: inset 0 0 0 9999px alpha(#FFFFFF, 0.05);
|
|
}
|
|
|
|
treeview.view check:hover:disabled,
|
|
treeview.view radio:hover:disabled {
|
|
box-shadow: none;
|
|
}
|
|
|
|
treeview.view check:hover:selected,
|
|
treeview.view radio:hover:selected {
|
|
box-shadow: inset 0 0 0 9999px alpha(#FFFFFF, 0.05);
|
|
}
|
|
|
|
treeview.view check,
|
|
treeview.view radio {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
treeview.view check:hover, treeview.view check:active,
|
|
treeview.view radio:hover,
|
|
treeview.view radio:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
treeview.view check:disabled,
|
|
treeview.view radio:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
treeview.view check:checked, treeview.view check:indeterminate,
|
|
treeview.view radio:checked,
|
|
treeview.view radio:indeterminate {
|
|
color: #7C4DFF;
|
|
}
|
|
|
|
treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled,
|
|
treeview.view radio:checked:disabled,
|
|
treeview.view radio:indeterminate:disabled {
|
|
color: rgba(124, 77, 255, 0.5);
|
|
}
|
|
|
|
treeview.view radio:checked {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg"));
|
|
border-image: none;
|
|
}
|
|
|
|
/***************
|
|
* Header bars *
|
|
***************/
|
|
headerbar .linked.path-bar:not(.vertical) > button,
|
|
headerbar stackswitcher.linked:not(.vertical) > button {
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
headerbar .linked:not(.vertical).path-bar > button:hover,
|
|
headerbar stackswitcher.linked:not(.vertical) > button:hover {
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
box-shadow: inset 0 -2px transparent;
|
|
}
|
|
|
|
headerbar .linked:not(.vertical).path-bar > button:active,
|
|
headerbar stackswitcher.linked:not(.vertical) > button:active {
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
box-shadow: inset 0 -2px transparent;
|
|
}
|
|
|
|
headerbar .linked:not(.vertical).path-bar > button:checked,
|
|
headerbar stackswitcher.linked:not(.vertical) > button:checked {
|
|
border-radius: 0;
|
|
color: #FFFFFF;
|
|
background-color: transparent;
|
|
box-shadow: inset 0 -2px #754ffe;
|
|
background-image: none;
|
|
}
|
|
|
|
headerbar .linked:not(.vertical).path-bar > button:checked:backdrop,
|
|
headerbar stackswitcher.linked:not(.vertical) > button:checked:backdrop, headerbar .linked:not(.vertical).path-bar > button:active:backdrop,
|
|
headerbar stackswitcher.linked:not(.vertical) > button:active:backdrop {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
box-shadow: inset 0 -2px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar {
|
|
transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1), color 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-height: 48px;
|
|
padding: 0;
|
|
margin: 0;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px rgba(255, 255, 255, 0.08);
|
|
background-color: #31313a;
|
|
color: #FFFFFF;
|
|
border-radius: 13px 13px 0 0;
|
|
}
|
|
|
|
headerbar:disabled :not(button) > label {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar:backdrop {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar:backdrop:disabled :not(button) > label {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.sidebar-pane headerbar {
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
.content-pane headerbar {
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
headerbar .title {
|
|
padding: 0 12px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
headerbar .subtitle {
|
|
padding: 0 12px;
|
|
font-size: smaller;
|
|
}
|
|
|
|
headerbar entry {
|
|
background-color: #3d3d48;
|
|
}
|
|
|
|
headerbar entry:focus {
|
|
background-color: #444450;
|
|
}
|
|
|
|
headerbar .linked:not(.vertical) > entry:not(.flat) {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
headerbar .linked:not(.vertical) > button {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action) {
|
|
border-image: none;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action):hover, headerbar button:not(.suggested-action):not(.destructive-action):active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action):disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action):checked {
|
|
border-image: none;
|
|
background-color: #754ffe;
|
|
color: #FFFFFF;
|
|
background-image: linear-gradient(to bottom, #6C6AF2, #4648FB);
|
|
background-size: auto auto;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action):checked:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
background-color: rgba(86, 87, 245, 0.5);
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action):backdrop {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action):backdrop:hover, headerbar button:not(.suggested-action):not(.destructive-action):backdrop:active {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action):backdrop:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked {
|
|
background-image: none;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar button.suggested-action:disabled, headerbar button.destructive-action:disabled {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar entry,
|
|
headerbar spinbutton,
|
|
headerbar button,
|
|
headerbar stackswitcher,
|
|
headerbar menubutton,
|
|
headerbar splitbutton {
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
headerbar menubutton > button,
|
|
headerbar spinbutton > button,
|
|
headerbar splitbutton > button,
|
|
headerbar splitbutton > menubutton,
|
|
headerbar stackswitcher > button,
|
|
headerbar .linked > menubutton,
|
|
headerbar entry > menubutton {
|
|
margin-top: 0px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
headerbar splitbutton {
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
headerbar > windowhandle > box {
|
|
padding: 0 6px;
|
|
}
|
|
|
|
headerbar > windowhandle > box,
|
|
headerbar > windowhandle > box > box.start,
|
|
headerbar > windowhandle > box > box.end {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
headerbar switch {
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
headerbar spinbutton button {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
headerbar.titlebar, .titlebar headerbar, .solid-csd headerbar, box > headerbar:only-child {
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), inset 0 -1px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
headerbar.titlebar.default-decoration, .csd headerbar.titlebar.default-decoration {
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
box headerbar:not(:only-child):first-child, box headerbar:not(:only-child):last-child {
|
|
border-left-color: #31313a;
|
|
border-right-color: #31313a;
|
|
}
|
|
|
|
headerbar.selection-mode {
|
|
transition: background-color 0.00001s 225ms, color 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
animation: header_ripple_effect 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), inset 0 -1px rgba(255, 255, 255, 0.08);
|
|
background-color: #754ffe;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
headerbar.selection-mode:backdrop {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) {
|
|
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 0%, transparent 0%) 0 0 0/0 0 0;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):hover {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked {
|
|
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), currentColor 100%, transparent 0%) 0 0 2/0 0 2px;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):checked:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar.selection-mode button:not(.suggested-action):not(.destructive-action):backdrop:checked:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar.selection-mode .selection-menu {
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
headerbar.selection-mode .selection-menu .arrow {
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
}
|
|
|
|
.tiled headerbar, .tiled-top headerbar, .tiled-right headerbar, .tiled-bottom headerbar, .tiled-left headerbar, .maximized headerbar, .fullscreen headerbar {
|
|
border-radius: 0;
|
|
}
|
|
|
|
headerbar.default-decoration {
|
|
min-height: 36px;
|
|
padding: 0;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
|
|
background-color: #31313a;
|
|
background-image: none;
|
|
}
|
|
|
|
.tiled headerbar.default-decoration, .maximized headerbar.default-decoration, .fullscreen headerbar.default-decoration {
|
|
box-shadow: none;
|
|
}
|
|
|
|
headerbar.default-decoration windowcontrols button {
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
margin: 0 2px;
|
|
padding: 0;
|
|
}
|
|
|
|
.solid-csd headerbar:dir(rtl), .solid-csd headerbar:dir(ltr) {
|
|
border-radius: 0;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
headerbar separator.titlebutton {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
window.csd > .titlebar:not(headerbar) {
|
|
padding: 0;
|
|
background-color: transparent;
|
|
background-image: none;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.titlebar:not(headerbar) > separator {
|
|
background-color: #31313a;
|
|
}
|
|
|
|
window.devel headerbar.titlebar {
|
|
background: #34343b cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, linear-gradient(to right, transparent 65%, rgba(86, 87, 245, 0.1)), linear-gradient(to top, #232328 3px, #28282d);
|
|
}
|
|
|
|
window.devel headerbar.titlebar:backdrop {
|
|
background: #34343b cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, image(#34343b);
|
|
/* background-color would flash */
|
|
}
|
|
|
|
/************
|
|
* GtkScale *
|
|
************/
|
|
scale {
|
|
min-height: 4px;
|
|
min-width: 4px;
|
|
padding: 16px;
|
|
}
|
|
|
|
scale > trough {
|
|
transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
outline: none;
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
scale > trough:disabled {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
scale > trough > slider {
|
|
min-height: 32px;
|
|
min-width: 32px;
|
|
margin: -15px;
|
|
}
|
|
|
|
scale > trough > slider, scale > trough > slider:focus, scale > trough > slider:hover, scale > trough > slider:active {
|
|
border: none;
|
|
outline: none;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
scale > trough > highlight {
|
|
transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-color: #7C4DFF;
|
|
}
|
|
|
|
scale > trough > highlight:disabled {
|
|
background-color: transparent;
|
|
}
|
|
|
|
scale > trough > fill {
|
|
transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
scale > trough > fill:disabled {
|
|
background-color: transparent;
|
|
}
|
|
|
|
scale > trough > slider {
|
|
transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 600ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: auto, 1000% 1000%;
|
|
border-radius: 50%;
|
|
color: transparent;
|
|
}
|
|
|
|
scale > trough > slider {
|
|
background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png"));
|
|
}
|
|
|
|
scale > trough > slider:disabled {
|
|
background-image: -gtk-scaled(url("assets/scale-slider-disabled-dark.png"), url("assets/scale-slider-disabled-dark@2.png"));
|
|
}
|
|
|
|
scale > trough > slider:hover {
|
|
background-color: rgba(124, 77, 255, 0.08);
|
|
}
|
|
|
|
scale > trough > slider:focus {
|
|
background-color: rgba(124, 77, 255, 0.12);
|
|
}
|
|
|
|
scale > trough > slider:focus:hover {
|
|
background-color: rgba(124, 77, 255, 0.16);
|
|
}
|
|
|
|
scale > trough > slider:active {
|
|
transition: background-color 100ms cubic-bezier(0, 0, 0.2, 1), background-size 0, background-image 0;
|
|
animation: scale_ripple_effect 225ms cubic-bezier(0, 0, 0.2, 1) forwards;
|
|
background-size: auto, 0% 0%;
|
|
background-color: rgba(124, 77, 255, 0.08);
|
|
color: rgba(124, 77, 255, 0.12);
|
|
}
|
|
|
|
scale.fine-tune slider {
|
|
background-size: calc(100% - 12px);
|
|
}
|
|
|
|
scale > marks label,
|
|
scale > value {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
scale > marks {
|
|
color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
scale > marks.top {
|
|
margin-bottom: 7px;
|
|
margin-top: -15px;
|
|
}
|
|
|
|
scale > marks.bottom {
|
|
margin-top: 7px;
|
|
margin-bottom: -15px;
|
|
}
|
|
|
|
scale > marks.left {
|
|
margin-right: 7px;
|
|
margin-left: -15px;
|
|
}
|
|
|
|
scale > marks.right {
|
|
margin-left: 7px;
|
|
margin-right: -15px;
|
|
}
|
|
|
|
scale.fine-tune marks.top {
|
|
margin-bottom: 6px;
|
|
margin-top: -14px;
|
|
}
|
|
|
|
scale.fine-tune marks.bottom {
|
|
margin-top: 6px;
|
|
margin-bottom: -14px;
|
|
}
|
|
|
|
scale.fine-tune marks.left {
|
|
margin-right: 6px;
|
|
margin-left: -14px;
|
|
}
|
|
|
|
scale.fine-tune marks.right {
|
|
margin-left: 6px;
|
|
margin-right: -14px;
|
|
}
|
|
|
|
scale.horizontal indicator {
|
|
min-height: 8px;
|
|
min-width: 1px;
|
|
}
|
|
|
|
scale.vertical indicator {
|
|
min-height: 1px;
|
|
min-width: 8px;
|
|
}
|
|
|
|
scale.marks-before:not(.marks-after) > trough > slider, scale.marks-after:not(.marks-before) > trough > slider {
|
|
transform: none;
|
|
}
|
|
|
|
scale.horizontal.marks-before:not(.marks-after) slider {
|
|
background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png"));
|
|
}
|
|
|
|
scale.horizontal.marks-before:not(.marks-after) slider:disabled {
|
|
background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-disabled-dark.png"), url("assets/scale-horz-marks-before-slider-disabled-dark@2.png"));
|
|
}
|
|
|
|
scale.horizontal.marks-after:not(.marks-before) slider {
|
|
background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png"));
|
|
}
|
|
|
|
scale.horizontal.marks-after:not(.marks-before) slider:disabled {
|
|
background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-disabled-dark.png"), url("assets/scale-horz-marks-after-slider-disabled-dark@2.png"));
|
|
}
|
|
|
|
scale.vertical.marks-before:not(.marks-after) slider {
|
|
background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png"));
|
|
}
|
|
|
|
scale.vertical.marks-before:not(.marks-after) slider:disabled {
|
|
background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-disabled-dark.png"), url("assets/scale-vert-marks-before-slider-disabled-dark@2.png"));
|
|
}
|
|
|
|
scale.vertical.marks-after:not(.marks-before) slider {
|
|
background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png"));
|
|
}
|
|
|
|
scale.vertical.marks-after:not(.marks-before) slider:disabled {
|
|
background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-disabled-dark.png"), url("assets/scale-vert-marks-after-slider-disabled-dark@2.png"));
|
|
}
|
|
|
|
scale.color {
|
|
min-height: 0;
|
|
min-width: 0;
|
|
}
|
|
|
|
scale.color.horizontal {
|
|
padding: 0 0 12px 0;
|
|
}
|
|
|
|
scale.color.horizontal slider:dir(ltr), scale.color.horizontal slider:dir(rtl) {
|
|
margin-bottom: -16px;
|
|
margin-top: -6px;
|
|
}
|
|
|
|
scale.color.vertical:dir(ltr) {
|
|
padding: 0 0 0 12px;
|
|
}
|
|
|
|
scale.color.vertical:dir(ltr) slider {
|
|
margin-left: -16px;
|
|
margin-right: -6px;
|
|
}
|
|
|
|
scale.color.vertical:dir(rtl) {
|
|
padding: 0 12px 0 0;
|
|
}
|
|
|
|
scale.color.vertical:dir(rtl) slider {
|
|
margin-right: -16px;
|
|
margin-left: -6px;
|
|
}
|
|
|
|
/*****************
|
|
* Progress bars *
|
|
*****************/
|
|
progressbar {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
font-size: smaller;
|
|
}
|
|
|
|
progressbar.horizontal > trough {
|
|
min-width: 150px;
|
|
}
|
|
|
|
progressbar.horizontal > trough, progressbar.horizontal > trough > progress {
|
|
min-height: 4px;
|
|
}
|
|
|
|
progressbar.vertical > trough {
|
|
min-height: 80px;
|
|
}
|
|
|
|
progressbar.vertical > trough, progressbar.vertical > trough > progress {
|
|
min-width: 4px;
|
|
}
|
|
|
|
progressbar > trough {
|
|
border-radius: 9999px;
|
|
background-color: rgba(93, 125, 251, 0.3);
|
|
}
|
|
|
|
progressbar > trough > progress {
|
|
border-radius: 9999px;
|
|
background-color: #5D7DFB;
|
|
background-image: linear-gradient(to left, #BA68C8, #7E57C2);
|
|
background-size: auto auto;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
progressbar.osd {
|
|
min-width: 3px;
|
|
min-height: 3px;
|
|
background-color: transparent;
|
|
padding: 0;
|
|
margin: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
progressbar.osd > trough {
|
|
border-style: none;
|
|
border-radius: 0;
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
progressbar.osd > trough > progress {
|
|
border-style: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
progressbar trough.empty progress {
|
|
all: unset;
|
|
}
|
|
|
|
/*************
|
|
* Level Bar *
|
|
*************/
|
|
levelbar.horizontal block {
|
|
min-height: 4px;
|
|
}
|
|
|
|
levelbar.horizontal.discrete block {
|
|
min-width: 36px;
|
|
}
|
|
|
|
levelbar.horizontal.discrete block:not(:last-child) {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
levelbar.vertical > trough > block {
|
|
min-width: 4px;
|
|
}
|
|
|
|
levelbar.vertical.discrete block {
|
|
min-height: 36px;
|
|
}
|
|
|
|
levelbar.vertical.discrete block:not(:last-child) {
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
levelbar > trough {
|
|
padding: 2px;
|
|
border-radius: 5px;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
background-color: #31313a;
|
|
}
|
|
|
|
levelbar > trough:disabled {
|
|
background-color: #3b3b43;
|
|
}
|
|
|
|
levelbar > trough > block.low {
|
|
background-color: #FF6D00;
|
|
}
|
|
|
|
levelbar > trough > block.high, levelbar > trough > block:not(.empty) {
|
|
background-color: #754ffe;
|
|
}
|
|
|
|
levelbar > trough > block.full {
|
|
background-color: #00C853;
|
|
}
|
|
|
|
levelbar > trough > block.empty {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
/****************
|
|
* Print dialog *
|
|
*****************/
|
|
window.dialog.print drawing {
|
|
color: #FFFFFF;
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
|
|
window.dialog.print drawing paper {
|
|
padding: 0;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
background-color: #31313a;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
window.dialog.print .dialog-action-box {
|
|
margin: 12px;
|
|
}
|
|
|
|
/**********
|
|
* Frames *
|
|
**********/
|
|
frame,
|
|
.frame {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
frame.flat,
|
|
.frame.flat {
|
|
border-style: none;
|
|
}
|
|
|
|
frame.flat > border {
|
|
border-style: none;
|
|
}
|
|
|
|
frame {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
frame > label {
|
|
margin: 4px;
|
|
}
|
|
|
|
overshoot.top {
|
|
background-image: radial-gradient(farthest-side at top, rgba(230, 230, 230, 0.08) 85%, rgba(230, 230, 230, 0)), radial-gradient(farthest-side at top, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
|
|
background-size: 100% 3%, 100% 50%;
|
|
background-repeat: no-repeat;
|
|
background-position: top;
|
|
background-color: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
overshoot.bottom {
|
|
background-image: radial-gradient(farthest-side at bottom, rgba(230, 230, 230, 0.08) 85%, rgba(230, 230, 230, 0)), radial-gradient(farthest-side at bottom, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
|
|
background-size: 100% 3%, 100% 50%;
|
|
background-repeat: no-repeat;
|
|
background-position: bottom;
|
|
background-color: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
overshoot.left {
|
|
background-image: radial-gradient(farthest-side at left, rgba(230, 230, 230, 0.08) 85%, rgba(230, 230, 230, 0)), radial-gradient(farthest-side at left, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
|
|
background-size: 3% 100%, 50% 100%;
|
|
background-repeat: no-repeat;
|
|
background-position: left;
|
|
background-color: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
overshoot.right {
|
|
background-image: radial-gradient(farthest-side at right, rgba(230, 230, 230, 0.08) 85%, rgba(230, 230, 230, 0)), radial-gradient(farthest-side at right, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
|
|
background-size: 3% 100%, 50% 100%;
|
|
background-repeat: no-repeat;
|
|
background-position: right;
|
|
background-color: transparent;
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
junction {
|
|
border-style: solid none none solid;
|
|
border-width: 1px;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
background-color: #31313a;
|
|
}
|
|
|
|
junction:dir(rtl) {
|
|
border-style: solid solid none none;
|
|
}
|
|
|
|
separator {
|
|
min-width: 1px;
|
|
min-height: 1px;
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
separator.spacer {
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
button.font separator,
|
|
button.file separator {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/*********
|
|
* Lists *
|
|
*********/
|
|
listview,
|
|
list {
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
background-color: #31313a;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
listview > row,
|
|
list > row {
|
|
padding: 3px;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
listview > row.expander,
|
|
list > row.expander {
|
|
padding: 0px;
|
|
}
|
|
|
|
listview > row.expander .row-header,
|
|
list > row.expander .row-header {
|
|
padding: 3px;
|
|
}
|
|
|
|
listview.horizontal row.separator, listview.separators.horizontal > row:not(.separator),
|
|
list.horizontal row.separator,
|
|
list.separators.horizontal > row:not(.separator) {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
listview:not(.horizontal) row.separator, listview.separators:not(.horizontal) > row:not(.separator),
|
|
list:not(.horizontal) row.separator,
|
|
list.separators:not(.horizontal) > row:not(.separator) {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
columnview.view > header > button,
|
|
treeview.view > header > button, row.activatable {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0, color 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
columnview.view > header > button:hover,
|
|
treeview.view > header > button:hover, row.activatable:hover {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0, color 0, background-color 0;
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
columnview.view > header > button.has-open-popup,
|
|
treeview.view > header > button.has-open-popup, columnview.view > header > button:active,
|
|
treeview.view > header > button:active, row.activatable.has-open-popup, row.activatable:active {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0, color 0;
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
background-size: 0% 0%;
|
|
}
|
|
|
|
row button.circular {
|
|
margin: 0 6px;
|
|
}
|
|
|
|
treeexpander {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
columnview > listview > row {
|
|
padding: 0;
|
|
}
|
|
|
|
columnview > listview > row > cell {
|
|
padding: 8px 6px;
|
|
}
|
|
|
|
columnview > listview > row > cell:not(:first-child) {
|
|
border-left: 1px solid transparent;
|
|
}
|
|
|
|
columnview.column-separators > listview > row > cell {
|
|
border-left-color: #474751;
|
|
}
|
|
|
|
columnview.data-table > listview > row > cell {
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
columnview > header > button {
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
border-left: 1px solid transparent;
|
|
}
|
|
|
|
columnview > header > button:first-child {
|
|
border-left-width: 0;
|
|
}
|
|
|
|
columnview.column-separators > listview > row > cell,
|
|
columnview.column-separators > header > button {
|
|
border-left-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
columnview > listview:not(.horizontal).separators > row:not(.separator) {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-bottom: none;
|
|
}
|
|
|
|
columnview.data-table > listview > row > cell {
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
|
|
columnview ~ undershoot.top {
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
columnview row:not(:selected) cell editablelabel:not(.editing):focus-within {
|
|
outline: 2px solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
columnview row:not(:selected) cell editablelabel.editing:focus-within {
|
|
outline: 2px solid #754ffe;
|
|
}
|
|
|
|
columnview row:not(:selected) cell editablelabel.editing text selection {
|
|
color: #FFFFFF;
|
|
background-color: #754ffe;
|
|
}
|
|
|
|
.rich-list {
|
|
/* rich lists usually containing other widgets than just labels/text */
|
|
}
|
|
|
|
.rich-list > row {
|
|
padding: 6px 12px;
|
|
min-height: 32px;
|
|
/* should be tall even when only containing a label */
|
|
}
|
|
|
|
.rich-list > row > box {
|
|
border-spacing: 12px;
|
|
}
|
|
|
|
/****************
|
|
* AdwActionRow *
|
|
****************/
|
|
row label.subtitle {
|
|
font-size: smaller;
|
|
}
|
|
|
|
row > box.header {
|
|
margin-left: 12px;
|
|
margin-right: 12px;
|
|
border-spacing: 6px;
|
|
min-height: 58px;
|
|
}
|
|
|
|
row > box.header > .icon:disabled {
|
|
filter: opacity(0.35);
|
|
}
|
|
|
|
row > box.header > box.title {
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
border-spacing: 3px;
|
|
padding: 0;
|
|
}
|
|
|
|
row > box.header > box.title,
|
|
row > box.header > box.title > .title,
|
|
row > box.header > box.title > .subtitle {
|
|
padding: 0;
|
|
font-weight: inherit;
|
|
}
|
|
|
|
row > box.header > .prefixes,
|
|
row > box.header > .suffixes {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
row > box.header > .icon:dir(ltr),
|
|
row > box.header > .prefixes:dir(ltr) {
|
|
margin-right: 6px;
|
|
}
|
|
|
|
row > box.header > .icon:dir(rtl),
|
|
row > box.header > .prefixes:dir(rtl) {
|
|
margin-left: 6px;
|
|
}
|
|
|
|
/***************
|
|
* AdwComboRow *
|
|
***************/
|
|
row.combo image.dropdown-arrow:disabled {
|
|
filter: opacity(0.35);
|
|
}
|
|
|
|
row.combo listview.inline {
|
|
background: none;
|
|
border: none;
|
|
box-shadow: none;
|
|
color: inherit;
|
|
}
|
|
|
|
row.combo listview.inline, row.combo listview.inline:disabled {
|
|
background: none;
|
|
color: inherit;
|
|
}
|
|
|
|
row.combo popover > contents {
|
|
min-width: 120px;
|
|
}
|
|
|
|
/******************
|
|
* AdwExpanderRow *
|
|
******************/
|
|
list.content > row, list.content > row.expander row.header,
|
|
list.boxed-list > row,
|
|
list.boxed-list > row.expander row.header, row.expander list.nested > row {
|
|
transition: 200ms cubic-bezier(0, 0, 0.2, 1);
|
|
color: rgba(255, 255, 255, 0.7);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.osd list.content > row:focus:focus-visible, .osd list.content > row.expander row.header:focus:focus-visible, list.content > row.expander .osd row.header:focus:focus-visible,
|
|
.osd list.boxed-list > row:focus:focus-visible,
|
|
.osd list.boxed-list > row.expander row.header:focus:focus-visible,
|
|
list.boxed-list > row.expander .osd row.header:focus:focus-visible, .osd row.expander list.nested > row:focus:focus-visible, row.expander .osd list.nested > row:focus:focus-visible {
|
|
outline-color: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
row.expander {
|
|
background: none;
|
|
padding: 0;
|
|
}
|
|
|
|
row.expander > box > list {
|
|
background: none;
|
|
color: inherit;
|
|
}
|
|
|
|
row.expander list.nested {
|
|
background-color: #31313a;
|
|
color: inherit;
|
|
}
|
|
|
|
row.expander image.expander-row-arrow {
|
|
transition: 200ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
row.expander image.expander-row-arrow:dir(ltr) {
|
|
margin-left: 6px;
|
|
}
|
|
|
|
row.expander image.expander-row-arrow:dir(rtl) {
|
|
margin-right: 6px;
|
|
}
|
|
|
|
row.expander:checked image.expander-row-arrow {
|
|
-gtk-icon-transform: rotate(0turn);
|
|
}
|
|
|
|
row.expander:not(:checked) image.expander-row-arrow:dir(ltr) {
|
|
-gtk-icon-transform: rotate(0.5turn);
|
|
}
|
|
|
|
row.expander:not(:checked) image.expander-row-arrow:dir(rtl) {
|
|
-gtk-icon-transform: rotate(-0.5turn);
|
|
}
|
|
|
|
row.expander:checked image.expander-row-arrow:not(:disabled) {
|
|
color: #754ffe;
|
|
}
|
|
|
|
.osd row.expander:checked image.expander-row-arrow:not(:disabled) {
|
|
color: inherit;
|
|
}
|
|
|
|
row.expander image.expander-row-arrow:disabled {
|
|
filter: opacity(0.35);
|
|
}
|
|
|
|
/*****************
|
|
* Boxed Lists *
|
|
*****************/
|
|
list.content > row.expander,
|
|
list.boxed-list > row.expander {
|
|
border: none;
|
|
}
|
|
|
|
list.content > row:first-child, list.content > row:first-child.expander row.header,
|
|
list.boxed-list > row:first-child,
|
|
list.boxed-list > row:first-child.expander row.header {
|
|
border-top-left-radius: 6px;
|
|
border-top-right-radius: 6px;
|
|
}
|
|
|
|
list.content > row:last-child, list.content > row:last-child.expander:not(:checked), list.content > row:last-child.expander:not(:checked) row.header, list.content > row:last-child.expander:checked list.nested, list.content > row:last-child.expander:checked list.nested > row:last-child, list.content > row:only-child, list.content > row:only-child.expander:not(:checked), list.content > row:only-child.expander:not(:checked) row.header, list.content > row:only-child.expander:checked list.nested, list.content > row:only-child.expander:checked list.nested > row:last-child,
|
|
list.boxed-list > row:last-child,
|
|
list.boxed-list > row:last-child.expander:not(:checked),
|
|
list.boxed-list > row:last-child.expander:not(:checked) row.header,
|
|
list.boxed-list > row:last-child.expander:checked list.nested,
|
|
list.boxed-list > row:last-child.expander:checked list.nested > row:last-child,
|
|
list.boxed-list > row:only-child,
|
|
list.boxed-list > row:only-child.expander:not(:checked),
|
|
list.boxed-list > row:only-child.expander:not(:checked) row.header,
|
|
list.boxed-list > row:only-child.expander:checked list.nested,
|
|
list.boxed-list > row:only-child.expander:checked list.nested > row:last-child {
|
|
border-bottom-left-radius: 6px;
|
|
border-bottom-right-radius: 6px;
|
|
border-bottom-width: 0;
|
|
}
|
|
|
|
/*********************
|
|
* App Notifications *
|
|
*********************/
|
|
.app-notification {
|
|
margin: 8px;
|
|
}
|
|
|
|
.app-notification.frame,
|
|
.app-notification border {
|
|
border-style: none;
|
|
}
|
|
|
|
/*************
|
|
* Expanders *
|
|
*************/
|
|
expander {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-width: 16px;
|
|
min-height: 16px;
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
-gtk-icon-transform: rotate(-90deg);
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
expander:dir(rtl) {
|
|
-gtk-icon-transform: rotate(90deg);
|
|
}
|
|
|
|
expander:checked {
|
|
-gtk-icon-transform: unset;
|
|
}
|
|
|
|
expander:hover, expander:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
expander:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
expander:selected {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
expander:selected:hover, expander:selected:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
expander:selected:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
/************
|
|
* Calendar *
|
|
************/
|
|
calendar {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
calendar > header {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
calendar > header > button {
|
|
border: none;
|
|
box-shadow: none;
|
|
background: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
calendar > header > button:backdrop {
|
|
background: none;
|
|
}
|
|
|
|
calendar > grid > label {
|
|
border-radius: 3px;
|
|
}
|
|
|
|
calendar > grid > label.today {
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
calendar > grid > label.day-number {
|
|
padding: 4px;
|
|
}
|
|
|
|
calendar > grid > label.day-number:selected {
|
|
border-radius: 3px;
|
|
}
|
|
|
|
calendar > grid > label.day-number.other-month {
|
|
color: alpha(currentColor, 0.3);
|
|
}
|
|
|
|
/***********
|
|
* Dialogs *
|
|
***********/
|
|
window.dialog.message {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
window.dialog.message.background {
|
|
background-color: rgba(68, 69, 75, 0.95);
|
|
}
|
|
|
|
window.dialog.message .titlebar {
|
|
min-height: 24px;
|
|
border-style: none;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
|
|
background-color: rgba(68, 69, 75, 0.95);
|
|
color: rgba(255, 255, 255, 0.8);
|
|
border-top-left-radius: 7px;
|
|
border-top-right-radius: 7px;
|
|
}
|
|
|
|
window.dialog.message .titlebar:backdrop {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
window.dialog.message list, window.dialog.message row, window.dialog.message .view, window.dialog.message textview.view > text {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
background-color: #3d3e43;
|
|
border-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
window.dialog.message .linked:not(.vertical).dialog-action-area > button {
|
|
padding: 4px 12px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: 0;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
window.dialog.message .linked:not(.vertical).dialog-action-area > button:first-child {
|
|
border-bottom-left-radius: 0;
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
window.dialog.message .linked:not(.vertical).dialog-action-area > button:last-child {
|
|
border-bottom-right-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
window.dialog.message .linked:not(.vertical).dialog-action-area > button.suggested-action, window.dialog.message .linked:not(.vertical).dialog-action-area > button.suggested-action:hover {
|
|
color: #7C4DFF;
|
|
}
|
|
|
|
window.dialog.message .linked:not(.vertical).dialog-action-area > button.suggested-action:active, window.dialog.message .linked:not(.vertical).dialog-action-area > button.suggested-action:checked {
|
|
background-color: #7C4DFF;
|
|
color: white;
|
|
border-color: #7C4DFF;
|
|
box-shadow: none;
|
|
}
|
|
|
|
window.dialog.message .linked:not(.vertical).dialog-action-area > button.suggested-action:disabled {
|
|
opacity: 0.65;
|
|
}
|
|
|
|
window.dialog.message .linked:not(.vertical).dialog-action-area > button.destructive-action, window.dialog.message .linked:not(.vertical).dialog-action-area > button.destructive-action:hover {
|
|
color: #FF5252;
|
|
}
|
|
|
|
window.dialog.message .linked:not(.vertical).dialog-action-area > button.destructive-action:active, window.dialog.message .linked:not(.vertical).dialog-action-area > button.destructive-action:checked {
|
|
background-color: #FF5252;
|
|
color: white;
|
|
border-color: #FF5252;
|
|
box-shadow: none;
|
|
}
|
|
|
|
window.dialog.message .linked:not(.vertical).dialog-action-area > button.destructive-action:disabled {
|
|
opacity: 0.65;
|
|
}
|
|
|
|
window.dialog.message.csd {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
window.dialog.message.csd.background {
|
|
border-bottom-left-radius: 7px;
|
|
border-bottom-right-radius: 7px;
|
|
}
|
|
|
|
window.dialog.message.csd .linked:not(.vertical).dialog-action-area > button {
|
|
padding: 8px 16px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: 0;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
window.dialog.message.csd .linked:not(.vertical).dialog-action-area > button:first-child {
|
|
border-bottom-left-radius: 7px;
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
window.dialog.message.csd .linked:not(.vertical).dialog-action-area > button:last-child {
|
|
border-bottom-right-radius: 7px;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
window.dialog.message entry {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
}
|
|
|
|
window.dialog.message expander title > arrow {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
window.dialog.message expander title > arrow:hover, window.dialog.message expander title > arrow:active {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
window.dialog.message expander title > arrow:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
filechooser .dialog-action-box {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
filechooser #pathbarbox {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
background-color: #34343b;
|
|
}
|
|
|
|
filechooserbutton > button > box {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
filechooserbutton:drop(active) {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/***********
|
|
* Sidebar *
|
|
***********/
|
|
.sidebar {
|
|
border-style: none;
|
|
background-color: #3c3c46;
|
|
}
|
|
|
|
.sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) {
|
|
border-right: 1px solid #474751;
|
|
border-left-style: none;
|
|
}
|
|
|
|
.sidebar:dir(rtl), .sidebar.right {
|
|
border-left: 1px solid #474751;
|
|
border-right-style: none;
|
|
}
|
|
|
|
.sidebar listview.view,
|
|
.sidebar list {
|
|
background-color: transparent;
|
|
}
|
|
|
|
paned .sidebar.left, paned .sidebar.right, paned .sidebar.left:dir(rtl), paned .sidebar:dir(rtl), paned .sidebar:dir(ltr), paned .sidebar {
|
|
border-style: none;
|
|
}
|
|
|
|
separator.sidebar:dir(ltr), separator.sidebar.left, separator.sidebar.left:dir(rtl),
|
|
leaflet .sidebar:dir(ltr),
|
|
leaflet .sidebar.left,
|
|
leaflet .sidebar.left:dir(rtl),
|
|
flap .sidebar:dir(ltr),
|
|
flap .sidebar.left,
|
|
flap .sidebar.left:dir(rtl) {
|
|
border-right: none;
|
|
}
|
|
|
|
separator.sidebar:dir(rtl), separator.sidebar.right,
|
|
leaflet .sidebar:dir(rtl),
|
|
leaflet .sidebar.right,
|
|
flap .sidebar:dir(rtl),
|
|
flap .sidebar.right {
|
|
border-left: none;
|
|
}
|
|
|
|
separator.sidebar {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
stacksidebar list.separators:not(.horizontal) > row:not(.separator) {
|
|
border-bottom: none;
|
|
}
|
|
|
|
stacksidebar row {
|
|
padding: 10px 4px;
|
|
}
|
|
|
|
stacksidebar row > label {
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
.navigation-sidebar {
|
|
padding: 6px;
|
|
}
|
|
|
|
.navigation-sidebar > separator {
|
|
margin: 6px;
|
|
}
|
|
|
|
.navigation-sidebar > row {
|
|
min-height: 28px;
|
|
padding: 3px 6px;
|
|
border-radius: 7px;
|
|
margin: 0;
|
|
}
|
|
|
|
.navigation-sidebar > row + row {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.navigation-sidebar > row:hover, .navigation-sidebar > row:focus-visible:focus-within {
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.navigation-sidebar > row:selected {
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.navigation-sidebar > row:selected label {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.navigation-sidebar > row:selected:hover {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.navigation-sidebar > row:selected:focus-visible:focus-within {
|
|
outline-width: 0;
|
|
color: #FFFFFF;
|
|
background-color: #754ffe;
|
|
}
|
|
|
|
.navigation-sidebar > row:selected:focus-visible:focus-within:hover {
|
|
background-color: #8687f8;
|
|
}
|
|
|
|
.navigation-sidebar > row:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
/****************
|
|
* File chooser *
|
|
****************/
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected button.sidebar-button,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected button.sidebar-button {
|
|
color: rgba(86, 87, 245, 0.75);
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:hover,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:hover, .nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:active,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:active {
|
|
color: #754ffe;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:disabled,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:disabled {
|
|
color: rgba(86, 87, 245, 0.35);
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:checked,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:checked {
|
|
background-color: rgba(86, 87, 245, 0.1);
|
|
color: #754ffe;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:checked:disabled,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected button.sidebar-button:checked:disabled {
|
|
background-color: rgba(86, 87, 245, 0.05);
|
|
color: rgba(86, 87, 245, 0.55);
|
|
}
|
|
|
|
row image.sidebar-icon {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
row:selected image.sidebar-icon {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
placessidebar > viewport.frame {
|
|
border-style: none;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row {
|
|
min-height: 32px;
|
|
padding: 0;
|
|
margin: 0;
|
|
border-radius: 0 7px 7px 0;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row > revealer {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row:selected {
|
|
background-color: rgba(255, 255, 255, 0.06);
|
|
color: #754ffe;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row:selected image.sidebar-icon, placessidebar .navigation-sidebar > row:selected label.sidebar-label {
|
|
color: #9e9ff9;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row image.sidebar-icon:dir(ltr) {
|
|
padding-right: 8px;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row image.sidebar-icon:dir(rtl) {
|
|
padding-left: 8px;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row label.sidebar-label:dir(ltr) {
|
|
padding-right: 2px;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row label.sidebar-label:dir(rtl) {
|
|
padding-left: 2px;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row.sidebar-placeholder-row {
|
|
min-height: 2px;
|
|
padding: 0 8px;
|
|
background-image: image(#7C4DFF);
|
|
background-clip: content-box;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row.sidebar-new-bookmark-row, placessidebar .navigation-sidebar > row.sidebar-new-bookmark-row image.sidebar-icon {
|
|
color: #7C4DFF;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row:drop(active):not(:disabled) {
|
|
box-shadow: inset 0 0 0 2px #7C4DFF;
|
|
}
|
|
|
|
placesview .server-list-button > image {
|
|
-gtk-icon-transform: rotate(0turn);
|
|
}
|
|
|
|
placesview .server-list-button:checked > image {
|
|
-gtk-icon-transform: rotate(-0.5turn);
|
|
}
|
|
|
|
placesview > actionbar > revealer > box > label {
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
/*********
|
|
* Paned *
|
|
*********/
|
|
paned > separator {
|
|
min-width: 1px;
|
|
min-height: 1px;
|
|
-gtk-icon-source: none;
|
|
border-style: none;
|
|
background-color: transparent;
|
|
background-image: image(rgba(255, 255, 255, 0.08));
|
|
background-size: 1px 1px;
|
|
background-clip: content-box;
|
|
}
|
|
|
|
paned > separator.wide {
|
|
min-width: 6px;
|
|
min-height: 6px;
|
|
background-color: #34343b;
|
|
background-image: image(rgba(255, 255, 255, 0.08)), image(rgba(255, 255, 255, 0.08));
|
|
background-size: 1px 1px, 1px 1px;
|
|
}
|
|
|
|
paned.horizontal > separator {
|
|
background-repeat: repeat-y;
|
|
}
|
|
|
|
paned.horizontal > separator:dir(ltr) {
|
|
margin: 0 -8px 0 0;
|
|
padding: 0 8px 0 0;
|
|
background-position: left;
|
|
}
|
|
|
|
paned.horizontal > separator:dir(rtl) {
|
|
margin: 0 0 0 -8px;
|
|
padding: 0 0 0 8px;
|
|
background-position: right;
|
|
}
|
|
|
|
paned.horizontal > separator.wide {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-repeat: repeat-y, repeat-y;
|
|
background-position: left, right;
|
|
}
|
|
|
|
paned.vertical > separator {
|
|
margin: 0 0 -8px 0;
|
|
padding: 0 0 8px 0;
|
|
background-repeat: repeat-x;
|
|
background-position: top;
|
|
}
|
|
|
|
paned.vertical > separator.wide {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-repeat: repeat-x, repeat-x;
|
|
background-position: bottom, top;
|
|
}
|
|
|
|
video {
|
|
background: black;
|
|
}
|
|
|
|
video image.osd {
|
|
min-width: 64px;
|
|
min-height: 64px;
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
/**************
|
|
* GtkInfoBar *
|
|
**************/
|
|
infobar {
|
|
border-style: none;
|
|
}
|
|
|
|
infobar.info {
|
|
background-color: #66BB6A;
|
|
}
|
|
|
|
infobar.question {
|
|
background-color: #42A5F5;
|
|
}
|
|
|
|
infobar.warning {
|
|
background-color: #FFA726;
|
|
}
|
|
|
|
infobar.error {
|
|
background-color: #EF5350;
|
|
}
|
|
|
|
infobar.info > label, infobar.info, infobar.question > label, infobar.question, infobar.warning > label, infobar.warning, infobar.error > label, infobar.error {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
/************
|
|
* Tooltips *
|
|
************/
|
|
tooltip {
|
|
padding: 6px;
|
|
border-radius: 8px;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
tooltip.background {
|
|
border-radius: 8px;
|
|
background-color: rgba(0, 0, 0, 0.75);
|
|
color: white;
|
|
border: none;
|
|
}
|
|
|
|
tooltip label {
|
|
min-height: 20px;
|
|
padding: 0 3px;
|
|
}
|
|
|
|
tooltip > box {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
/*****************
|
|
* Color Chooser *
|
|
*****************/
|
|
colorswatch.top {
|
|
border-top-left-radius: 5.5px;
|
|
border-top-right-radius: 5.5px;
|
|
}
|
|
|
|
colorswatch.top overlay {
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
colorswatch.bottom {
|
|
border-bottom-left-radius: 5.5px;
|
|
border-bottom-right-radius: 5.5px;
|
|
}
|
|
|
|
colorswatch.bottom overlay {
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
colorswatch.left, colorswatch:first-child:not(.top) {
|
|
border-top-left-radius: 5.5px;
|
|
border-bottom-left-radius: 5.5px;
|
|
}
|
|
|
|
colorswatch.left overlay, colorswatch:first-child:not(.top) overlay {
|
|
border-top-left-radius: 5px;
|
|
border-bottom-left-radius: 5px;
|
|
}
|
|
|
|
colorswatch.right, colorswatch:last-child:not(.bottom) {
|
|
border-top-right-radius: 5.5px;
|
|
border-bottom-right-radius: 5.5px;
|
|
}
|
|
|
|
colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay {
|
|
border-top-right-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
}
|
|
|
|
colorswatch.dark {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
colorswatch.light {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
colorswatch:drop(active) {
|
|
box-shadow: none;
|
|
}
|
|
|
|
colorswatch:drop(active).light overlay {
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 0 2px #7C4DFF;
|
|
}
|
|
|
|
colorswatch:drop(active).dark overlay {
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 0 2px #7C4DFF;
|
|
}
|
|
|
|
colorswatch overlay {
|
|
transition: box-shadow 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
colorswatch overlay:hover {
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
colorswatch#add-color-button {
|
|
border-radius: 5px 5px 0 0;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
colorswatch#add-color-button:only-child {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
colorswatch#add-color-button overlay {
|
|
background-image: linear-gradient(to right, #EF5350 25%, #FFA726 25%, #FFA726 50%, #66BB6A 50%, #66BB6A 75%, #42A5F5 75%);
|
|
}
|
|
|
|
colorswatch:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
colorswatch:disabled overlay {
|
|
box-shadow: none;
|
|
}
|
|
|
|
colorswatch#editor-color-sample {
|
|
border-radius: 5.5px;
|
|
}
|
|
|
|
colorswatch#editor-color-sample overlay {
|
|
border-radius: 5px;
|
|
}
|
|
|
|
colorchooser .popover.osd {
|
|
transition: box-shadow 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
border-radius: 7px;
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06), inset 0 1px rgba(255, 255, 255, 0.1);
|
|
background-color: #31313a;
|
|
}
|
|
|
|
colorchooser .popover.osd:backdrop {
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
/********
|
|
* Misc *
|
|
********/
|
|
.content-view {
|
|
background-color: #34343b;
|
|
}
|
|
|
|
/**********************
|
|
* Window Decorations *
|
|
**********************/
|
|
window {
|
|
border: none;
|
|
}
|
|
|
|
window.csd {
|
|
border-radius: 13px;
|
|
box-shadow: 0 10px 16px rgba(0, 0, 0, 0.25), 0 6px 10px rgba(0, 0, 0, 0.16), 0 0 36px transparent;
|
|
margin: 0;
|
|
outline: none;
|
|
transition: none;
|
|
}
|
|
|
|
window.csd:backdrop {
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06), 0 0 36px transparent;
|
|
transition: box-shadow 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
window.csd.maximized, window.csd.fullscreen, window.csd.tiled, window.csd.tiled-top, window.csd.tiled-right, window.csd.tiled-bottom, window.csd.tiled-left {
|
|
border-radius: 0;
|
|
}
|
|
|
|
window.csd.maximized, window.csd.fullscreen {
|
|
box-shadow: none;
|
|
}
|
|
|
|
window.solid-csd {
|
|
margin: 0;
|
|
border: none;
|
|
border-radius: 0;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
|
|
background-color: #31313a;
|
|
}
|
|
|
|
window.ssd {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/*****************
|
|
* Title buttons *
|
|
*****************/
|
|
headerbar windowcontrols {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
headerbar windowcontrols:not(.empty).start:dir(ltr), headerbar windowcontrols:not(.empty).end:dir(rtl) {
|
|
padding: 0 12px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
headerbar windowcontrols:not(.empty).start:dir(rtl), headerbar windowcontrols:not(.empty).end:dir(ltr) {
|
|
padding: 0 12px;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action) > image {
|
|
padding: 0;
|
|
border: none;
|
|
outline: none;
|
|
box-shadow: none;
|
|
background: none;
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).maximize, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).minimize {
|
|
min-width: 12px;
|
|
min-height: 12px;
|
|
padding: 0;
|
|
margin: 0 2px;
|
|
color: transparent;
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:hover, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:backdrop:hover, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).maximize:hover, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).maximize:backdrop:hover, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).minimize:hover, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).minimize:backdrop:hover {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:active, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:checked, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:backdrop:active, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:backdrop:checked, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).maximize:active, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).maximize:checked, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).maximize:backdrop:active, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).maximize:backdrop:checked, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).minimize:active, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).minimize:checked, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).minimize:backdrop:active, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).minimize:backdrop:checked {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:backdrop, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).maximize:backdrop, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).minimize:backdrop {
|
|
color: transparent;
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close {
|
|
transition: background-size 0, background-image 0, box-shadow 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:hover {
|
|
padding: 2px;
|
|
margin: -2px 0;
|
|
background-color: #EF5350;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:active, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:checked {
|
|
padding: 2px;
|
|
margin: -2px 0;
|
|
background-color: #7C4DFF;
|
|
color: #FFFFFF;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
emoji-completion-row:focus,
|
|
emoji-completion-row:hover, .view selection, .view:selected, iconview selection, iconview:selected, flowbox > flowboxchild:selected, gridview > child:selected, entry > text > selection, spinbutton > text > selection, spinbutton:not(.vertical) > text > selection, row:selected, calendar > grid > label.today:selected, calendar > grid > label.day-number:selected {
|
|
background-color: #754ffe;
|
|
}
|
|
|
|
emoji-completion-row:focus,
|
|
emoji-completion-row:hover, .view selection, .view:selected, iconview selection, iconview:selected, flowbox > flowboxchild:selected, gridview > child:selected, entry > text > selection, spinbutton > text > selection, spinbutton:not(.vertical) > text > selection, row:selected, calendar > grid > label.today:selected, calendar > grid > label.day-number:selected {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
emoji-completion-row:disabled:focus,
|
|
emoji-completion-row:disabled:hover, .view selection:disabled, .view:disabled:selected, iconview selection:disabled, iconview:disabled:selected, flowbox > flowboxchild:disabled:selected, gridview > child:disabled:selected, entry > text > selection:disabled, spinbutton > text > selection:disabled, row:disabled:selected, calendar > grid > label.today:disabled:selected, calendar > grid > label.day-number:disabled:selected {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.monospace {
|
|
font-family: monospace;
|
|
}
|
|
|
|
/**********************
|
|
* Touch Copy & Paste *
|
|
**********************/
|
|
cursor-handle {
|
|
border-radius: 9999px;
|
|
background-color: #7C4DFF;
|
|
background-image: none;
|
|
}
|
|
|
|
cursor-handle.top:dir(ltr), cursor-handle.bottom:dir(rtl) {
|
|
padding-left: 6px;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
cursor-handle.bottom:dir(ltr), cursor-handle.top:dir(rtl) {
|
|
padding-right: 6px;
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) {
|
|
-gtk-icon-source: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png"));
|
|
}
|
|
|
|
shortcuts-section {
|
|
margin: 20px;
|
|
}
|
|
|
|
.shortcuts-search-results {
|
|
margin: 20px;
|
|
border-spacing: 24px;
|
|
}
|
|
|
|
.context-menu {
|
|
font: initial;
|
|
}
|
|
|
|
shortcut > .keycap {
|
|
min-width: 12px;
|
|
min-height: 26px;
|
|
margin-top: 2px;
|
|
padding-bottom: 2px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
border: solid 1px rgba(255, 255, 255, 0.08);
|
|
border-radius: 5px;
|
|
box-shadow: inset 0 -2px rgba(255, 255, 255, 0.08);
|
|
background-color: #31313a;
|
|
color: #FFFFFF;
|
|
font-size: smaller;
|
|
}
|
|
|
|
:not(decoration):not(window):drop(active) {
|
|
transition: all 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 0 0 2px #7C4DFF;
|
|
caret-color: #7C4DFF;
|
|
}
|
|
|
|
stackswitcher button.text-button {
|
|
min-width: 100px;
|
|
}
|
|
|
|
stackswitcher button.circular,
|
|
stackswitcher button.text-button.circular {
|
|
min-width: 36px;
|
|
min-height: 36px;
|
|
padding: 0;
|
|
}
|
|
|
|
.lowres-icon {
|
|
-gtk-icon-shadow: 0 -1px rgba(0, 0, 0, 0.05), 1px 0 rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.3), -1px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.icon-dropshadow {
|
|
-gtk-icon-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 -1px rgba(0, 0, 0, 0.05), 1px 0 rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.3), -1px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/*********
|
|
* Emoji *
|
|
*********/
|
|
popover.emoji-picker > contents {
|
|
padding: 0;
|
|
}
|
|
|
|
.emoji-searchbar {
|
|
padding: 6px;
|
|
border-spacing: 6px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.emoji-toolbar {
|
|
padding: 6px;
|
|
border-spacing: 6px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
button.emoji-section {
|
|
margin-top: -1px;
|
|
padding: 0 8px;
|
|
min-width: 24px;
|
|
min-height: 36px;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
button.emoji-section:hover {
|
|
box-shadow: inset 0 2px rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
button.emoji-section:active {
|
|
box-shadow: inset 0 2px #754ffe;
|
|
}
|
|
|
|
button.emoji-section:checked {
|
|
box-shadow: inset 0 2px #754ffe;
|
|
background-color: transparent;
|
|
}
|
|
|
|
button.emoji-section:first-child {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
button.emoji-section:last-child {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
popover.emoji-picker emoji {
|
|
font-size: x-large;
|
|
padding: 6px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
popover.emoji-picker emoji:focus, popover.emoji-picker emoji:hover {
|
|
background: #754ffe;
|
|
}
|
|
|
|
emoji-completion-row > box {
|
|
border-spacing: 6px;
|
|
padding: 2px 6px;
|
|
}
|
|
|
|
emoji-completion-row emoji:focus,
|
|
emoji-completion-row emoji:hover {
|
|
background: none;
|
|
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
popover.entry-completion > contents {
|
|
padding: 0;
|
|
}
|
|
|
|
statusbar {
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
/************
|
|
* Nautilus *
|
|
************/
|
|
.nautilus-window.background.csd:not(.view), .nautilus-window.background.csd .sidebar-pane {
|
|
background-image: linear-gradient(to bottom, #6C6AF2, #4648FB);
|
|
background-size: 48px auto;
|
|
background-position: left bottom;
|
|
background-repeat: no-repeat;
|
|
background-color: rgba(49, 49, 58, 0.97);
|
|
}
|
|
|
|
.nautilus-window.background.csd:not(.view) headerbar, .nautilus-window.background.csd .sidebar-pane headerbar {
|
|
background-color: transparent;
|
|
background-image: -gtk-scaled(url("assets/header-icon.png"), url("assets/header-icon@2.png"));
|
|
background-size: 48px auto;
|
|
background-position: left bottom;
|
|
background-repeat: no-repeat;
|
|
padding-left: 54px;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
|
|
border: none;
|
|
}
|
|
|
|
.nautilus-window.background.csd .background .top-bar headerbar {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.nautilus-window.background.csd .background list.navigation-sidebar {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.nautilus-window.background.csd .background list.navigation-sidebar > row {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd .nautilus-grid-view, .nautilus-window.background.csd .nautilus-grid-view gridview.view {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.nautilus-window.background.csd .nautilus-grid-view gridview.view {
|
|
padding: 3px 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd .nautilus-list-view {
|
|
margin: 0 6px 6px 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd .nautilus-list-view, .nautilus-window.background.csd .nautilus-list-view .view {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.nautilus-window.background.csd placesview label {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.nautilus-window.background.csd placesview label:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.nautilus-window.background.csd placesview list, .nautilus-window.background.csd placesview actionbar, .nautilus-window.background.csd placesview actionbar > revealer > box {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar {
|
|
background: none;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar {
|
|
background-color: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row {
|
|
padding-left: 6px;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row .sidebar-revealer,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row .sidebar-revealer {
|
|
padding: 0 0 0 12px;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row, .nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:hover, .nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected, .nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:active, .nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected:hover, .nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected:active, .nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:focus,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:hover,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:active,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected:hover,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected:active,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:focus {
|
|
transition: none;
|
|
animation: none;
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row image.sidebar-icon,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row image.sidebar-icon {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row label.sidebar-label,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row label.sidebar-label {
|
|
padding-left: 18px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
border-radius: 0 7px 7px 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:hover label.sidebar-label,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:hover label.sidebar-label {
|
|
background-color: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:backdrop,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:backdrop {
|
|
opacity: 0.85;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected label.sidebar-label,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected label.sidebar-label {
|
|
color: #9e9ff9;
|
|
background-color: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar list.navigation-sidebar > row:selected image.sidebar-icon,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar list.navigation-sidebar > row:selected image.sidebar-icon {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap.unfolded > placessidebar separator,
|
|
.nautilus-window.background.csd .sidebar-pane > toolbarview > placessidebar separator {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar {
|
|
border-radius: 9999px;
|
|
margin: 6px 0;
|
|
padding: 0;
|
|
background-image: linear-gradient(to bottom, #6C6AF2, #4648FB);
|
|
background-size: auto auto;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.15), 0 2px 3px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar .dim-label, .nautilus-window.background.csd #NautilusPathBar label.separator, .nautilus-window.background.csd #NautilusPathBar entry > text > placeholder, .nautilus-window.background.csd #NautilusPathBar spinbutton:not(.vertical) > text > placeholder, .nautilus-window.background.csd #NautilusPathBar headerbar .subtitle, headerbar .nautilus-window.background.csd #NautilusPathBar .subtitle, .nautilus-window.background.csd #NautilusPathBar row label.subtitle, row .nautilus-window.background.csd #NautilusPathBar label.subtitle, .nautilus-window.background.csd #NautilusPathBar row.expander:not(:checked) image.expander-row-arrow, row.expander:not(:checked) .nautilus-window.background.csd #NautilusPathBar image.expander-row-arrow {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action) {
|
|
margin: 0;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action):hover {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action):active, .nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action):checked {
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
box-shadow: none;
|
|
background-image: none;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action):hover, .nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action):active, .nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action):checked {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action).current-dir {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action).current-dir:hover, .nautilus-window.background.csd #NautilusPathBar button:not(.suggested-action):not(.destructive-action).current-dir:active {
|
|
background: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar > menubutton {
|
|
margin: 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar > menubutton > button {
|
|
border-radius: 9999px;
|
|
margin: 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusPathBar > menubutton > button:checked {
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
box-shadow: none;
|
|
background-image: none;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusViewCell clamp box {
|
|
margin: 0;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusQueryEditor {
|
|
border-radius: 9999px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
padding: 0 4px 0 8px;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusQueryEditor:focus-within {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusQueryEditor:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusQueryEditor > menubutton > button.image-button {
|
|
min-width: 28px;
|
|
min-height: 28px;
|
|
margin: 4px 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusQueryEditor > text {
|
|
margin: 0;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusQueryEditorTag {
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
.nautilus-window.background.csd #NautilusQueryEditorTag > button {
|
|
margin: 3px;
|
|
padding: 0;
|
|
min-height: 22px;
|
|
min-width: 22px;
|
|
}
|
|
|
|
.nautilus-window.background.csd label.search-information {
|
|
margin: 2px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
.nautilus-window.background.csd flap > separator {
|
|
min-width: 20px;
|
|
color: transparent;
|
|
background-image: url("assets/scalable/side-paned.svg");
|
|
background-size: 20px 750px;
|
|
background-position: left center;
|
|
background-repeat: no-repeat;
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.nautilus-window.background.csd .floating-bar {
|
|
min-height: 32px;
|
|
padding: 0;
|
|
margin: 0;
|
|
border-style: solid solid none;
|
|
border-width: 1px;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-radius: 13px 13px 0 0;
|
|
color: #FFFFFF;
|
|
background-color: #31313a;
|
|
background-clip: border-box;
|
|
transition: all 225ms cubic-bezier(0, 0, 0.2, 1), border-width 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.nautilus-window.background.csd .floating-bar.bottom.left {
|
|
margin-right: 7px;
|
|
border-left-style: none;
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 13px;
|
|
}
|
|
|
|
.nautilus-window.background.csd .floating-bar.bottom.right {
|
|
margin-left: 7px;
|
|
border-right-style: none;
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 13px;
|
|
}
|
|
|
|
.nautilus-window.background.csd .floating-bar button {
|
|
margin: 4px;
|
|
}
|
|
|
|
.nautilus-window.background.csd.maximized .floating-bar {
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
.details-page {
|
|
margin: 24px 0px;
|
|
}
|
|
|
|
.installed-overlay-box {
|
|
font-size: smaller;
|
|
background-color: #754ffe;
|
|
border-radius: 0;
|
|
color: #FFFFFF;
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
screenshot-carousel box.frame {
|
|
border-width: 1px 0;
|
|
border-radius: 0;
|
|
}
|
|
|
|
screenshot-carousel button,
|
|
.featured-carousel button {
|
|
margin: 12px;
|
|
}
|
|
|
|
.screenshot-image-main .image1,
|
|
.screenshot-image-main .image2 {
|
|
margin-top: 6px;
|
|
margin-bottom: 12px;
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
.app-tile-label {
|
|
font-size: 105%;
|
|
}
|
|
|
|
.review-textbox {
|
|
padding: 6px;
|
|
}
|
|
|
|
.origin-rounded-box {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
border-radius: 9999px;
|
|
padding: 4px;
|
|
}
|
|
|
|
.origin-beta {
|
|
color: #FF6D00;
|
|
}
|
|
|
|
.origin-button > button {
|
|
padding: 3px 9px;
|
|
}
|
|
|
|
flowboxchild.card {
|
|
border: none;
|
|
box-shadow: none;
|
|
padding: 0;
|
|
background: none;
|
|
}
|
|
|
|
button.card.category-tile {
|
|
padding: 21px;
|
|
border: none;
|
|
border-radius: 7px;
|
|
min-width: 140px;
|
|
font-weight: 900;
|
|
font-size: larger;
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
button.card.category-tile.category-tile-iconless {
|
|
padding: 9px 15px;
|
|
min-width: 130px;
|
|
font-size: 105%;
|
|
font-weight: normal;
|
|
box-shadow: none;
|
|
}
|
|
|
|
button.card.category-tile.category-create {
|
|
background: linear-gradient(180deg, #ce8cd7 0%, #2861c6 100%);
|
|
color: white;
|
|
}
|
|
|
|
button.card.category-tile.category-create:hover {
|
|
background: linear-gradient(180deg, shade(#ce8cd7, 1.07) 0%, shade(#2861c6, 1.1) 100%);
|
|
color: white;
|
|
}
|
|
|
|
button.card.category-tile.category-create:active {
|
|
background: linear-gradient(180deg, shade(#ce8cd7, 0.95) 0%, shade(#2861c6, 0.95) 100%);
|
|
color: white;
|
|
}
|
|
|
|
button.card.category-tile.category-develop {
|
|
background: #5e5c64;
|
|
color: white;
|
|
}
|
|
|
|
button.card.category-tile.category-develop:hover {
|
|
background: shade(#5e5c64, 1.2);
|
|
color: white;
|
|
}
|
|
|
|
button.card.category-tile.category-develop:active {
|
|
background-color: shade(#5e5c64, 0.95);
|
|
color: white;
|
|
}
|
|
|
|
button.card.category-tile.category-learn {
|
|
background: linear-gradient(180deg, #2ec27e 30%, #27a66c 100%);
|
|
color: white;
|
|
}
|
|
|
|
button.card.category-tile.category-learn:hover {
|
|
background: linear-gradient(180deg, shade(#2ec27e, 1.06) 30%, shade(#27a66c, 1.06) 100%);
|
|
color: white;
|
|
}
|
|
|
|
button.card.category-tile.category-learn:active {
|
|
background: linear-gradient(180deg, shade(#2ec27e, 0.95) 30%, shade(#27a66c, 0.95) 100%);
|
|
color: white;
|
|
}
|
|
|
|
button.card.category-tile.category-play {
|
|
background: linear-gradient(75deg, #f9e2a7 0%, #eb5ec3 50%, #6d53e0 100%);
|
|
color: #393484;
|
|
}
|
|
|
|
button.card.category-tile.category-play:hover {
|
|
background: linear-gradient(75deg, shade(#f9e2a7, 1.07) 0%, shade(#eb5ec3, 1.07) 50%, shade(#6d53e0, 1.07) 100%);
|
|
color: #393484;
|
|
}
|
|
|
|
button.card.category-tile.category-play:active {
|
|
background: linear-gradient(75deg, shade(#f9e2a7, 0.97) 0%, shade(#eb5ec3, 0.95) 50%, shade(#6d53e0, 1.07) 100%);
|
|
color: #393484;
|
|
}
|
|
|
|
button.card.category-tile.category-socialize {
|
|
background: linear-gradient(90deg, #ef4e9b 0%, #f77466 100%);
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
button.card.category-tile.category-socialize:hover {
|
|
background: linear-gradient(90deg, shade(#ef4e9b, 1.08) 0%, shade(#f77466, 1.08) 100%);
|
|
}
|
|
|
|
button.card.category-tile.category-socialize:active {
|
|
background: linear-gradient(90deg, shade(#ef4e9b, 0.95) 0%, shade(#f77466, 0.95) 100%);
|
|
}
|
|
|
|
button.card.category-tile.category-work {
|
|
padding: 1px;
|
|
/* FIXME: work around https://gitlab.gnome.org/GNOME/gtk/-/issues/4324 */
|
|
color: #1c71d8;
|
|
background-color: #fdf8d7;
|
|
background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
|
|
background-size: 10px 10px, 10px 10px;
|
|
background-position: -1px -4px, center -1px;
|
|
}
|
|
|
|
button.card.category-tile.category-work:hover {
|
|
color: #1c71d8;
|
|
background-color: #fefcef;
|
|
background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
|
|
}
|
|
|
|
button.card.category-tile.category-work:active {
|
|
color: #1c71d8;
|
|
background-color: #fcf4bf;
|
|
background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
|
|
}
|
|
|
|
clamp.medium .category-tile:not(.category-tile-iconless),
|
|
clamp.large .category-tile:not(.category-tile-iconless) {
|
|
font-size: larger;
|
|
}
|
|
|
|
.featured-tile {
|
|
padding: 0;
|
|
box-shadow: none;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.featured-tile label.title-1 {
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.featured-tile.narrow label.title-1 {
|
|
font-size: 16pt;
|
|
}
|
|
|
|
.application-details-infobar, .application-details-infobar.info {
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
color: #FFFFFF;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.application-details-infobar.warning {
|
|
background-color: #FF6D00;
|
|
color: #FFFFFF;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
@keyframes install-progress-unknown-move {
|
|
0% {
|
|
background-position: 0%;
|
|
}
|
|
50% {
|
|
background-position: 100%;
|
|
}
|
|
100% {
|
|
background-position: 0%;
|
|
}
|
|
}
|
|
|
|
.application-details-description .button {
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
}
|
|
|
|
.install-progress {
|
|
background-image: linear-gradient(to top, #754ffe 2px, alpha(#754ffe, 0) 2px);
|
|
background-repeat: no-repeat;
|
|
background-position: 0 bottom;
|
|
background-size: 0;
|
|
transition: none;
|
|
}
|
|
|
|
.install-progress:dir(rtl) {
|
|
background-position: 100% bottom;
|
|
}
|
|
|
|
.review-row > * {
|
|
margin: 12px;
|
|
}
|
|
|
|
.review-row button {
|
|
font-size: smaller;
|
|
}
|
|
|
|
.review-row .vote-buttons button {
|
|
margin-right: -1px;
|
|
}
|
|
|
|
.review-row .vote-buttons button:not(:first-child) {
|
|
border-image: linear-gradient(to top, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)) 0 0 0 1/5px 0 5px 1px;
|
|
}
|
|
|
|
.review-row .vote-buttons button:hover,
|
|
.review-row .vote-buttons button:active,
|
|
.review-row .vote-buttons button:hover + button,
|
|
.review-row .vote-buttons button:active + button {
|
|
border-image: none;
|
|
}
|
|
|
|
review-bar {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
background-image: none;
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.review-histogram star-image {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.version-arrow-label {
|
|
font-size: x-small;
|
|
}
|
|
|
|
.overview-more-button {
|
|
font-size: smaller;
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.app-row-origin-text {
|
|
font-size: smaller;
|
|
}
|
|
|
|
.app-listbox-header {
|
|
padding: 6px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.image-list {
|
|
background-color: transparent;
|
|
}
|
|
|
|
box.star {
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
|
|
button.star {
|
|
outline-offset: 0;
|
|
background-color: transparent;
|
|
background-image: none;
|
|
border-image: none;
|
|
border-radius: 0;
|
|
border-width: 0;
|
|
padding: 0;
|
|
box-shadow: none;
|
|
outline-offset: -1px;
|
|
}
|
|
|
|
star-image {
|
|
color: #FBC02D;
|
|
}
|
|
|
|
.dimmer-label {
|
|
opacity: 0.25;
|
|
}
|
|
|
|
.update-failed-details {
|
|
font-family: Monospace;
|
|
font-size: smaller;
|
|
padding: 16px;
|
|
}
|
|
|
|
.upgrade-banner {
|
|
padding: 0px;
|
|
border-radius: 7px;
|
|
border: none;
|
|
}
|
|
|
|
.upgrade-banner-background {
|
|
background: linear-gradient(to bottom, #4CAF50, #2196F3);
|
|
color: white;
|
|
}
|
|
|
|
.upgrade-buttons #button_upgrades_install {
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
banner > revealer > widget {
|
|
background-color: #754ffe;
|
|
padding: 6px;
|
|
}
|
|
|
|
scrolledwindow.list-page > viewport > clamp > box {
|
|
margin: 24px 12px;
|
|
border-spacing: 24px;
|
|
}
|
|
|
|
.update-preferences preferencesgroup > box > box {
|
|
margin-top: 18px;
|
|
}
|
|
|
|
.section > label:not(:first-child) {
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.section > box:not(:first-child) {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
clamp.status-page {
|
|
margin: 36px 12px;
|
|
}
|
|
|
|
clamp.status-page .iconbox {
|
|
min-height: 128px;
|
|
min-width: 128px;
|
|
}
|
|
|
|
clamp.status-page .icon {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
min-height: 32px;
|
|
min-width: 32px;
|
|
}
|
|
|
|
clamp.status-page .icon:not(:last-child) {
|
|
margin-bottom: 36px;
|
|
}
|
|
|
|
clamp.status-page .title:not(:last-child) {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
app-context-bar .context-tile {
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
background-color: transparent;
|
|
border-radius: 0;
|
|
padding: 24px 12px 21px 12px;
|
|
outline-offset: 5px;
|
|
border-bottom: none;
|
|
border-right: none;
|
|
}
|
|
|
|
app-context-bar .context-tile:focus:focus-visible {
|
|
outline-offset: -1px;
|
|
}
|
|
|
|
app-context-bar.horizontal box:first-child .context-tile:first-child, app-context-bar.vertical .context-tile:first-child {
|
|
border-left: none;
|
|
}
|
|
|
|
app-context-bar.horizontal .context-tile, app-context-bar.vertical box:first-child .context-tile {
|
|
border-top: none;
|
|
}
|
|
|
|
app-context-bar > box:not(:first-child) > button.flat {
|
|
border-radius: 0;
|
|
}
|
|
|
|
app-context-bar > box:not(:first-child) > button.flat:last-child {
|
|
border-radius: 0 7px 7px 0;
|
|
}
|
|
|
|
app-context-bar > box:first-child > button.flat {
|
|
border-radius: 0;
|
|
}
|
|
|
|
app-context-bar > box:first-child > button.flat:first-child {
|
|
border-radius: 7px 0 0 7px;
|
|
}
|
|
|
|
app-context-bar > box > button.flat {
|
|
border-left-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
carousel.card {
|
|
border: none;
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.context-tile-lozenge {
|
|
min-height: 28px;
|
|
min-width: 28px;
|
|
padding: 6px;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
.context-tile-lozenge.large {
|
|
font-size: 24px;
|
|
padding: 16px;
|
|
min-width: 24px;
|
|
/* 60px minus the left and right padding */
|
|
min-height: 24px;
|
|
/* 60px minus the top and bottom padding */
|
|
}
|
|
|
|
.context-tile-lozenge.wide-image image {
|
|
margin-top: -28px;
|
|
margin-bottom: -28px;
|
|
}
|
|
|
|
.context-tile-lozenge image {
|
|
-gtk-icon-style: symbolic;
|
|
}
|
|
|
|
.context-tile-lozenge.grey {
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.context-tile-lozenge.green, .context-tile-lozenge.details-rating-0 {
|
|
color: #007c33;
|
|
background-color: rgba(0, 200, 83, 0.15);
|
|
}
|
|
|
|
.context-tile-lozenge.blue, .context-tile-lozenge.details-rating-5 {
|
|
color: #2196F3;
|
|
background-color: rgba(33, 150, 243, 0.15);
|
|
}
|
|
|
|
.context-tile-lozenge.yellow, .context-tile-lozenge.details-rating-12 {
|
|
color: #b34c00;
|
|
background-color: rgba(255, 109, 0, 0.15);
|
|
}
|
|
|
|
.context-tile-lozenge.details-rating-15 {
|
|
color: #FF9800;
|
|
background-color: rgba(255, 152, 0, 0.15);
|
|
}
|
|
|
|
.context-tile-lozenge.red, .context-tile-lozenge.details-rating-18 {
|
|
color: #911d00;
|
|
background-color: rgba(221, 44, 0, 0.15);
|
|
}
|
|
|
|
.eol-red {
|
|
font-weight: bold;
|
|
color: #DD2C00;
|
|
}
|
|
|
|
window.narrow .app-title {
|
|
font-size: 16pt;
|
|
}
|
|
|
|
window.narrow .app-developer {
|
|
font-size: small;
|
|
}
|
|
|
|
.install-progress-label {
|
|
font-size: smaller;
|
|
font-feature-settings: "tnum";
|
|
}
|
|
|
|
scrolledwindow.fake-adw-status-page > viewport > box {
|
|
margin: 36px 12px;
|
|
}
|
|
|
|
scrolledwindow.fake-adw-status-page > viewport > box > clamp:not(:last-child) > box {
|
|
margin-bottom: 36px;
|
|
}
|
|
|
|
scrolledwindow.fake-adw-status-page > viewport > box > clamp > box > .icon:not(:last-child) {
|
|
margin-bottom: 36px;
|
|
}
|
|
|
|
scrolledwindow.fake-adw-status-page > viewport > box > clamp > box > .title:not(:last-child) {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
statuspage.icon-dropshadow image.icon {
|
|
-gtk-icon-shadow: 0 1px 12px rgba(0, 0, 0, 0.05), 0 -1px rgba(0, 0, 0, 0.05), 1px 0 rgba(0, 0, 0, 0.1), 0 1px rgba(0, 0, 0, 0.3), -1px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
window.info scrollbar.vertical {
|
|
margin-top: 48px;
|
|
background: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
window.info scrollbar.vertical trough {
|
|
margin-top: 0;
|
|
}
|
|
|
|
row.app > box.header {
|
|
margin-left: 12px;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
row.app > box.header {
|
|
border-spacing: 12px;
|
|
}
|
|
|
|
row.app > box.header > image {
|
|
margin-top: 12px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
row.app label.warning {
|
|
color: #DD2C00;
|
|
}
|
|
|
|
@keyframes pre-delay {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
from {
|
|
filter: opacity(0%);
|
|
}
|
|
}
|
|
|
|
/* Give a fade-in animation to spinners. */
|
|
spinner.fade-in:checked {
|
|
animation: pre-delay 0.5s linear 1, fade-in 1s linear 1, spin 1s linear infinite;
|
|
animation-delay: 0s, 0.5s, 0.5s;
|
|
}
|
|
|
|
window > contents leaflet {
|
|
background-color: transparent;
|
|
}
|
|
|
|
window > contents leaflet stack.background {
|
|
background-color: transparent;
|
|
}
|
|
|
|
window > contents leaflet.unfolded stack.background leaflet box.vertical:last-child > headerbar,
|
|
window > contents leaflet.unfolded stack.background leaflet + headerbar {
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
window > contents leaflet.unfolded > separator + box.vertical > headerbar {
|
|
border-top-right-radius: 0;
|
|
border-top-left-radius: 13px;
|
|
}
|
|
|
|
window > contents leaflet > box > scrolledwindow > viewport > widget > stack {
|
|
background-color: #31313a;
|
|
}
|
|
|
|
window > widget leaflet {
|
|
background-color: transparent;
|
|
}
|
|
|
|
window > widget leaflet stack.background {
|
|
background-color: transparent;
|
|
}
|
|
|
|
window > widget leaflet.unfolded stack.background > widget > overlay > leaflet > box > headerbar,
|
|
window > widget leaflet.unfolded stack.background > widget > box > widget > headerbar,
|
|
window > widget leaflet.unfolded > box:not(:last-child) headerbar {
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
window > widget leaflet.unfolded > separator + box > headerbar {
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
window > widget leaflet > box > scrolledwindow > viewport > widget > stack {
|
|
background-color: #31313a;
|
|
}
|
|
|
|
.contacts-contact-list list.navigation-sidebar {
|
|
background: none;
|
|
}
|
|
|
|
window > contents leaflet.unfolded > box.vertical > headerbar {
|
|
border-top-left-radius: 0;
|
|
}
|
|
|
|
datechooser {
|
|
padding: 6px;
|
|
}
|
|
|
|
datechooser button, datechooser button.flat, datechooser button.toggle, datechooser button.text-button {
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
padding: 6px;
|
|
}
|
|
|
|
datechooser button.day.text-button:selected {
|
|
box-shadow: none;
|
|
background-color: #754ffe;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
label.primary-label, label.month-name, label.secondary-label {
|
|
font-size: 16pt;
|
|
font-weight: bold;
|
|
padding: 12px;
|
|
}
|
|
|
|
label.primary-label, label.month-name {
|
|
color: #754ffe;
|
|
}
|
|
|
|
label.secondary-label {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
calendar-view {
|
|
font-size: 10pt;
|
|
}
|
|
|
|
calendar-view:selected {
|
|
color: #754ffe;
|
|
font-weight: bold;
|
|
}
|
|
|
|
calendar-view.header,
|
|
label.header {
|
|
font-size: 10pt;
|
|
font-weight: bold;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
calendar-view.current,
|
|
weekgrid.current {
|
|
background-color: alpha(#754ffe, 0.3);
|
|
}
|
|
|
|
popover.events {
|
|
background-color: #3c3c46;
|
|
padding: 0;
|
|
}
|
|
|
|
popover.events box {
|
|
border-top-left-radius: 7px;
|
|
border-top-right-radius: 7px;
|
|
}
|
|
|
|
popover.events list {
|
|
background-color: #31313a;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
popover.events scrolledwindow {
|
|
border-width: 0;
|
|
}
|
|
|
|
popover.events button {
|
|
border-radius: 7px;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
border-style: solid none none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
event {
|
|
margin: 1px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
event widget.content {
|
|
margin: 4px;
|
|
}
|
|
|
|
event.timed, event:not(.slanted):not(.slanted-start):not(.slanted-end) {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
event.timed widget.edge {
|
|
border-radius: 3.5px;
|
|
min-width: 5px;
|
|
}
|
|
|
|
event.slanted-start, event.slanted-end:dir(rtl) {
|
|
padding-left: 16px;
|
|
border-radius: 0 3.5px 3.5px 0;
|
|
}
|
|
|
|
event.slanted-end, event.slanted-start:dir(rtl) {
|
|
padding-right: 16px;
|
|
border-radius: 3.5px 0 0 3.5px;
|
|
}
|
|
|
|
event:not(.timed).color-dark {
|
|
color: white;
|
|
outline-color: rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
event.timed, event:not(.timed).color-light {
|
|
color: alpha(black, 0.75);
|
|
outline-color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
popover.event-popover,
|
|
popover.event-popover > contents {
|
|
padding: 0;
|
|
}
|
|
|
|
.search-viewport {
|
|
background-color: #31313a;
|
|
}
|
|
|
|
.calendar-list {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.calendar-list > list {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.calendar-color-image {
|
|
-gtk-icon-filter: none;
|
|
}
|
|
|
|
image.calendar-color-image,
|
|
button:active:not(:backdrop) .calendar-color-image,
|
|
button:checked:not(:backdrop) .calendar-color-image,
|
|
.calendars-list .calendar-color-image:not(:backdrop):not(:disabled),
|
|
.calendar-list .calendar-color-image:not(:backdrop):not(:disabled),
|
|
.sources-button:not(:backdrop):not(:disabled) .calendar-color-image {
|
|
-gtk-icon-shadow: 0 1px alpha(black, 0.1);
|
|
}
|
|
|
|
datechooser navigator {
|
|
margin-right: 6px;
|
|
margin-left: 6px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
datechooser navigator label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
datechooser navigator button, datechooser navigator button.popup, datechooser navigator button.image-button {
|
|
min-height: 36px;
|
|
min-width: 36px;
|
|
padding: 0;
|
|
}
|
|
|
|
datechooser .weeknum, datechooser .weekday {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
font-size: smaller;
|
|
}
|
|
|
|
datechooser button.day, datechooser button.day.text-button {
|
|
font-size: 10pt;
|
|
font-weight: normal;
|
|
margin: 3px;
|
|
padding: 0;
|
|
min-height: 36px;
|
|
min-width: 36px;
|
|
transition: none;
|
|
}
|
|
|
|
datechooser button.day dot, datechooser button.day.text-button dot {
|
|
background-color: #FFFFFF;
|
|
border-radius: 50%;
|
|
min-height: 3px;
|
|
min-width: 3px;
|
|
}
|
|
|
|
datechooser button.day:selected, datechooser button.day.today:selected, datechooser button.day.text-button:selected, datechooser button.day.text-button.today:selected {
|
|
background-color: #754ffe;
|
|
color: #FFFFFF;
|
|
font-weight: bold;
|
|
}
|
|
|
|
datechooser button.day:selected dot, datechooser button.day.today:selected dot, datechooser button.day.text-button:selected dot, datechooser button.day.text-button.today:selected dot {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
datechooser button.day.today, datechooser button.day.text-button.today {
|
|
color: #754ffe;
|
|
}
|
|
|
|
datechooser button.day.today dot, datechooser button.day.text-button.today dot {
|
|
background-color: #754ffe;
|
|
}
|
|
|
|
datechooser button.day.other-month:not(:hover), datechooser button.day.other-month:backdrop, datechooser button.day.text-button.other-month:not(:hover), datechooser button.day.text-button.other-month:backdrop {
|
|
color: alpha(currentColor, 0.1);
|
|
}
|
|
|
|
datechooser button.day.other-month:not(:hover) dot, datechooser button.day.other-month:backdrop dot, datechooser button.day.text-button.other-month:not(:hover) dot, datechooser button.day.text-button.other-month:backdrop dot {
|
|
background-color: alpha(currentColor, 0.1);
|
|
}
|
|
|
|
datechooser button.day.other-month:hover:not(:backdrop), datechooser button.day.text-button.other-month:hover:not(:backdrop) {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
datechooser button.day.other-month:hover:not(:backdrop) dot, datechooser button.day.text-button.other-month:hover:not(:backdrop) dot {
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.week-header {
|
|
padding: 0;
|
|
}
|
|
|
|
.week-header > box:first-child {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.week-header .week-number {
|
|
font-size: 16pt;
|
|
font-weight: bold;
|
|
padding: 12px 12px 18px 12px;
|
|
color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.week-header.week-temperature {
|
|
font-size: 10pt;
|
|
font-weight: bold;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.week-header.lines {
|
|
color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
weekhourbar > label {
|
|
font-size: 10pt;
|
|
padding: 4px 6px;
|
|
}
|
|
|
|
.week-view .lines {
|
|
color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
weekgrid > widget.now-strip {
|
|
background-color: alpha(#754ffe, 0.8);
|
|
margin: 0 0 0 1px;
|
|
min-height: 3px;
|
|
}
|
|
|
|
weekgrid:selected, weekgrid.dnd,
|
|
.week-header:selected,
|
|
.week-header.dnd {
|
|
background-color: alpha(#754ffe, 0.25);
|
|
}
|
|
|
|
monthcell {
|
|
border: solid 1px rgba(255, 255, 255, 0.08);
|
|
border-width: 1px 0 0 1px;
|
|
background-color: transparent;
|
|
transition: background-color 200ms;
|
|
}
|
|
|
|
monthcell:hover:not(.out-of-month):not(.today) {
|
|
background-color: #3b3b43;
|
|
transition: background-color 200ms;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
monthcell:selected {
|
|
background-color: alpha(#754ffe, 0.1);
|
|
}
|
|
|
|
monthcell:selected:hover {
|
|
background-color: alpha(#754ffe, 0.2);
|
|
}
|
|
|
|
monthcell:selected label.day-label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
monthcell:nth-child(7n + 1) {
|
|
border-left-width: 0;
|
|
}
|
|
|
|
monthcell.today {
|
|
background-color: alpha(#754ffe, 0.2);
|
|
}
|
|
|
|
monthcell.today:hover {
|
|
background-color: alpha(#754ffe, 0.3);
|
|
color: #754ffe;
|
|
}
|
|
|
|
monthcell.today:selected {
|
|
background-color: alpha(#754ffe, 0.25);
|
|
}
|
|
|
|
monthcell.today:selected:hover {
|
|
background-color: alpha(#754ffe, 0.35);
|
|
}
|
|
|
|
monthcell label {
|
|
color: #FFFFFF;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
monthcell label.day-label {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
monthcell.out-of-month {
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
monthcell.out-of-month label {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
monthcell button {
|
|
padding: 0 6px;
|
|
border-radius: 0;
|
|
border-bottom: none;
|
|
border-right: none;
|
|
}
|
|
|
|
monthpopover > box {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.notes-section box > textview {
|
|
border-radius: 7px;
|
|
padding: 6px;
|
|
}
|
|
|
|
.notes-section box > textview > text {
|
|
background: none;
|
|
}
|
|
|
|
agenda-view list > row {
|
|
padding: 2px 12px;
|
|
}
|
|
|
|
agenda-view list > label {
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
label.no-events {
|
|
font-style: italic;
|
|
}
|
|
|
|
searchbutton > popover > arrow {
|
|
background: none;
|
|
border: none;
|
|
}
|
|
|
|
datechooser {
|
|
padding: 6px;
|
|
}
|
|
|
|
datechooser .current-week {
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
color: #FFFFFF;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
menubutton.sources-button {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
border-radius: 0;
|
|
border-top-style: none;
|
|
border-bottom-style: none;
|
|
}
|
|
|
|
menubutton.sources-button:hover:not(:backdrop) {
|
|
background-image: none;
|
|
text-shadow: none;
|
|
}
|
|
|
|
menubutton.sources-button > button.toggle {
|
|
border-radius: 0;
|
|
}
|
|
|
|
menubutton.sources-button > button.toggle .title {
|
|
font-size: 10pt;
|
|
font-weight: normal;
|
|
padding: 0 6px;
|
|
}
|
|
|
|
menubutton.sources-button > button.toggle .subtitle {
|
|
font-size: 8pt;
|
|
padding: 0 6px;
|
|
}
|
|
|
|
menubutton.sources-button > button.toggle .calendar-color-image {
|
|
-gtk-icon-size: 12px;
|
|
}
|
|
|
|
menubutton stack > box {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
.topbar headerbar menubutton.sources-button > button.toggle {
|
|
border-radius: 0 0 7px 7px;
|
|
}
|
|
|
|
agenda-view list.background {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.large-button {
|
|
padding: 6px;
|
|
}
|
|
|
|
.alarm-time {
|
|
font-size: 2.5em;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.clocks-ampm-toggle-button,
|
|
.clocks-secondary-standalone-label {
|
|
font-size: 18pt;
|
|
}
|
|
|
|
.clocks-standalone-label,
|
|
.clocks-ringing-label {
|
|
font-size: 6em;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.clocks-ringing-title {
|
|
font-size: 1.5em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.clocks-alarm-setup-time {
|
|
font-size: 32pt;
|
|
}
|
|
|
|
.clocks-timer-label,
|
|
.clocks-spinbutton {
|
|
font-size: 48pt;
|
|
}
|
|
|
|
.timer-panel .timer-header {
|
|
font-size: 20pt;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.timer-countdown {
|
|
font-size: 40pt;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* Stopwatch Panel */
|
|
.lap-time {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.stopped-stopwatch label,
|
|
.running-stopwatch label,
|
|
.paused-stopwatch label {
|
|
font-size: 70px;
|
|
font-weight: lighter;
|
|
}
|
|
|
|
.stopped-stopwatch .seconds-label {
|
|
font-weight: 300;
|
|
}
|
|
|
|
.running-stopwatch .seconds-label,
|
|
.running-stopwatch .miliseconds-label {
|
|
color: #754ffe;
|
|
}
|
|
|
|
.stopped-stopwatch .miliseconds-label,
|
|
.running-stopwatch .miliseconds-label,
|
|
.paused-stopwatch .miliseconds-label {
|
|
font-size: 50px;
|
|
}
|
|
|
|
.running-stopwatch .seconds-label,
|
|
.paused-stopwatch .seconds-label {
|
|
font-weight: 300;
|
|
}
|
|
|
|
.clock-location {
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.hidden {
|
|
opacity: 0;
|
|
}
|
|
|
|
.clock-time {
|
|
font-size: 2em;
|
|
padding: 0.2em 0.5em;
|
|
border-radius: 1em;
|
|
}
|
|
|
|
.none .clock-time {
|
|
background: alpha(currentColor, 0.2);
|
|
}
|
|
|
|
.night .clock-time {
|
|
color: #1E88E5;
|
|
background-color: alpha(#2196F3, 0.25);
|
|
}
|
|
|
|
.naut .clock-time,
|
|
.astro .clock-time {
|
|
color: #F57C00;
|
|
background-color: alpha(#FF9800, 0.25);
|
|
}
|
|
|
|
.civil .clock-time,
|
|
.day .clock-time {
|
|
color: #F9A825;
|
|
background: alpha(#FDD835, 0.25);
|
|
}
|
|
|
|
avatar {
|
|
border-radius: 9999px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
avatar.color1 {
|
|
background-image: linear-gradient(#83b6ec, #337fdc);
|
|
color: #cfe1f5;
|
|
}
|
|
|
|
avatar.color2 {
|
|
background-image: linear-gradient(#7ad9f1, #0f9ac8);
|
|
color: #caeaf2;
|
|
}
|
|
|
|
avatar.color3 {
|
|
background-image: linear-gradient(#8de6b1, #29ae74);
|
|
color: #cef8d8;
|
|
}
|
|
|
|
avatar.color4 {
|
|
background-image: linear-gradient(#b5e98a, #6ab85b);
|
|
color: #e6f9d7;
|
|
}
|
|
|
|
avatar.color5 {
|
|
background-image: linear-gradient(#f8e359, #d29d09);
|
|
color: #f9f4e1;
|
|
}
|
|
|
|
avatar.color6 {
|
|
background-image: linear-gradient(#ffcb62, #d68400);
|
|
color: #ffead1;
|
|
}
|
|
|
|
avatar.color7 {
|
|
background-image: linear-gradient(#ffa95a, #ed5b00);
|
|
color: #ffe5c5;
|
|
}
|
|
|
|
avatar.color8 {
|
|
background-image: linear-gradient(#f78773, #e62d42);
|
|
color: #f8d2ce;
|
|
}
|
|
|
|
avatar.color9 {
|
|
background-image: linear-gradient(#e973ab, #e33b6a);
|
|
color: #fac7de;
|
|
}
|
|
|
|
avatar.color10 {
|
|
background-image: linear-gradient(#cb78d4, #9945b5);
|
|
color: #e7c2e8;
|
|
}
|
|
|
|
avatar.color11 {
|
|
background-image: linear-gradient(#9e91e8, #7a59ca);
|
|
color: #d5d2f5;
|
|
}
|
|
|
|
avatar.color12 {
|
|
background-image: linear-gradient(#e3cf9c, #b08952);
|
|
color: #f2eade;
|
|
}
|
|
|
|
avatar.color13 {
|
|
background-image: linear-gradient(#be916d, #785336);
|
|
color: #e5d6ca;
|
|
}
|
|
|
|
avatar.color14 {
|
|
background-image: linear-gradient(#c0bfbc, #6e6d71);
|
|
color: #d8d7d3;
|
|
}
|
|
|
|
avatar.contrasted {
|
|
color: white;
|
|
}
|
|
|
|
avatar.image {
|
|
background: none;
|
|
}
|
|
|
|
splitbutton.suggested-action > button, splitbutton.suggested-action > menubutton > button, splitbutton.destructive-action > button, splitbutton.destructive-action > menubutton > button, splitbutton.opaque > button, splitbutton.opaque > menubutton > button, menubutton.suggested-action > button, menubutton.destructive-action > button, menubutton.opaque > button, button.suggested-action, button.destructive-action, button.opaque {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.osd splitbutton.suggested-action > button:focus:focus-visible, .osd splitbutton.suggested-action > menubutton > button:focus:focus-visible, .osd splitbutton.destructive-action > button:focus:focus-visible, .osd splitbutton.destructive-action > menubutton > button:focus:focus-visible, .osd splitbutton.opaque > button:focus:focus-visible, .osd splitbutton.opaque > menubutton > button:focus:focus-visible, .osd menubutton.suggested-action > button:focus:focus-visible, .osd menubutton.destructive-action > button:focus:focus-visible, .osd menubutton.opaque > button:focus:focus-visible, .osd button.suggested-action:focus:focus-visible, .osd button.destructive-action:focus:focus-visible, .osd button.opaque:focus:focus-visible {
|
|
outline: none;
|
|
}
|
|
|
|
splitbutton.suggested-action > button:hover, splitbutton.suggested-action > menubutton > button:hover, splitbutton.destructive-action > button:hover, splitbutton.destructive-action > menubutton > button:hover, splitbutton.opaque > button:hover, splitbutton.opaque > menubutton > button:hover, menubutton.suggested-action > button:hover, menubutton.destructive-action > button:hover, menubutton.opaque > button:hover, button.suggested-action:hover, button.destructive-action:hover, button.opaque:hover {
|
|
background-image: image(alpha(currentColor, 0.1));
|
|
}
|
|
|
|
splitbutton.suggested-action > button.keyboard-activating, splitbutton.suggested-action > menubutton > button.keyboard-activating, splitbutton.destructive-action > button.keyboard-activating, splitbutton.destructive-action > menubutton > button.keyboard-activating, splitbutton.opaque > button.keyboard-activating, splitbutton.opaque > menubutton > button.keyboard-activating, menubutton.suggested-action > button.keyboard-activating, menubutton.destructive-action > button.keyboard-activating, menubutton.opaque > button.keyboard-activating, button.keyboard-activating.suggested-action, button.keyboard-activating.destructive-action, button.keyboard-activating.opaque, splitbutton.suggested-action > button:active, splitbutton.suggested-action > menubutton > button:active, splitbutton.destructive-action > button:active, splitbutton.destructive-action > menubutton > button:active, splitbutton.opaque > button:active, splitbutton.opaque > menubutton > button:active, menubutton.suggested-action > button:active, menubutton.destructive-action > button:active, menubutton.opaque > button:active, button.suggested-action:active, button.destructive-action:active, button.opaque:active {
|
|
background-image: image(rgba(0, 0, 0, 0.2));
|
|
}
|
|
|
|
splitbutton.suggested-action > button:checked, splitbutton.suggested-action > menubutton > button:checked, splitbutton.destructive-action > button:checked, splitbutton.destructive-action > menubutton > button:checked, splitbutton.opaque > button:checked, splitbutton.opaque > menubutton > button:checked, menubutton.suggested-action > button:checked, menubutton.destructive-action > button:checked, menubutton.opaque > button:checked, button.suggested-action:checked, button.destructive-action:checked, button.opaque:checked {
|
|
background-image: image(rgba(0, 0, 0, 0.15));
|
|
}
|
|
|
|
splitbutton.suggested-action > button:checked:hover, splitbutton.suggested-action > menubutton > button:checked:hover, splitbutton.destructive-action > button:checked:hover, splitbutton.destructive-action > menubutton > button:checked:hover, splitbutton.opaque > button:checked:hover, splitbutton.opaque > menubutton > button:checked:hover, menubutton.suggested-action > button:checked:hover, menubutton.destructive-action > button:checked:hover, menubutton.opaque > button:checked:hover, button.suggested-action:checked:hover, button.destructive-action:checked:hover, button.opaque:checked:hover {
|
|
background-image: image(rgba(0, 0, 0, 0.05));
|
|
}
|
|
|
|
splitbutton.suggested-action > button:checked.keyboard-activating, splitbutton.suggested-action > menubutton > button:checked.keyboard-activating, splitbutton.destructive-action > button:checked.keyboard-activating, splitbutton.destructive-action > menubutton > button:checked.keyboard-activating, splitbutton.opaque > button:checked.keyboard-activating, splitbutton.opaque > menubutton > button:checked.keyboard-activating, menubutton.suggested-action > button:checked.keyboard-activating, menubutton.destructive-action > button:checked.keyboard-activating, menubutton.opaque > button:checked.keyboard-activating, button.suggested-action:checked.keyboard-activating, button.destructive-action:checked.keyboard-activating, button.opaque:checked.keyboard-activating, splitbutton.suggested-action > button:checked:active, splitbutton.suggested-action > menubutton > button:checked:active, splitbutton.destructive-action > button:checked:active, splitbutton.destructive-action > menubutton > button:checked:active, splitbutton.opaque > button:checked:active, splitbutton.opaque > menubutton > button:checked:active, menubutton.suggested-action > button:checked:active, menubutton.destructive-action > button:checked:active, menubutton.opaque > button:checked:active, button.suggested-action:checked:active, button.destructive-action:checked:active, button.opaque:checked:active {
|
|
background-image: image(rgba(0, 0, 0, 0.3));
|
|
}
|
|
|
|
button.opaque {
|
|
background-color: #505058;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
button.destructive-action {
|
|
color: on(#FF5252);
|
|
}
|
|
|
|
button.destructive-action, button.destructive-action:checked {
|
|
background-color: #FF5252;
|
|
}
|
|
|
|
button.suggested-action {
|
|
color: on(#7C4DFF);
|
|
}
|
|
|
|
button.suggested-action, button.suggested-action:checked {
|
|
background-color: #7C4DFF;
|
|
}
|
|
|
|
button.font separator {
|
|
background-color: transparent;
|
|
}
|
|
|
|
button.font > box {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
button.font > box > box > label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
menubutton.pill > button, button.pill {
|
|
padding: 10px 32px;
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
button.card {
|
|
background-clip: padding-box;
|
|
font-weight: inherit;
|
|
box-shadow: none;
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
button.card:hover {
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
color: #FFFFFF;
|
|
outline: none;
|
|
}
|
|
|
|
button.card.keyboard-activating, button.card:active {
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
outline: none;
|
|
}
|
|
|
|
button.card:checked {
|
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.12), 0 3px 3px rgba(0, 0, 0, 0.06);
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
outline: none;
|
|
}
|
|
|
|
button.card:drop(active) {
|
|
color: #FF6D00;
|
|
box-shadow: inset 0 0 0 1px #FF6D00;
|
|
}
|
|
|
|
menubutton.osd {
|
|
background: none;
|
|
color: inherit;
|
|
}
|
|
|
|
menubutton.suggested-action {
|
|
background-color: #7C4DFF;
|
|
color: on(#7C4DFF);
|
|
}
|
|
|
|
menubutton.destructive-action {
|
|
background-color: #FF5252;
|
|
color: on(#FF5252);
|
|
}
|
|
|
|
menubutton.opaque {
|
|
background-color: #505058;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
menubutton.suggested-action, menubutton.destructive-action, menubutton.opaque {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
menubutton.suggested-action.circular, menubutton.suggested-action.pill, menubutton.destructive-action.circular, menubutton.destructive-action.pill, menubutton.opaque.circular, menubutton.opaque.pill {
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
menubutton.suggested-action > button, menubutton.suggested-action > button:checked, menubutton.destructive-action > button, menubutton.destructive-action > button:checked, menubutton.opaque > button, menubutton.opaque > button:checked {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
}
|
|
|
|
menubutton arrow {
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
}
|
|
|
|
menubutton arrow.none {
|
|
-gtk-icon-source: -gtk-icontheme("open-menu-symbolic");
|
|
}
|
|
|
|
menubutton arrow.down {
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
}
|
|
|
|
menubutton arrow.up {
|
|
-gtk-icon-source: -gtk-icontheme("pan-up-symbolic");
|
|
}
|
|
|
|
menubutton arrow.left {
|
|
-gtk-icon-source: -gtk-icontheme("pan-start-symbolic");
|
|
}
|
|
|
|
menubutton arrow.right {
|
|
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
|
|
}
|
|
|
|
splitbutton {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
splitbutton:disabled {
|
|
filter: none;
|
|
opacity: 1;
|
|
}
|
|
|
|
splitbutton, splitbutton > separator {
|
|
transition: all 100ms cubic-bezier(0, 0, 0.2, 1);
|
|
transition-property: background;
|
|
}
|
|
|
|
splitbutton > separator {
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
background: none;
|
|
}
|
|
|
|
splitbutton.image-button > button {
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
padding: 6px;
|
|
}
|
|
|
|
splitbutton.text-button.image-button > button, splitbutton.image-text-button > button {
|
|
padding-left: 9px;
|
|
padding-right: 9px;
|
|
}
|
|
|
|
splitbutton.text-button.image-button > button > box, splitbutton.image-text-button > button > box {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
splitbutton > button:dir(ltr),
|
|
splitbutton > menubutton > button:dir(rtl) {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
splitbutton > button:dir(rtl),
|
|
splitbutton > menubutton > button:dir(ltr) {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
margin-left: 0;
|
|
}
|
|
|
|
splitbutton.flat > separator {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
splitbutton.flat:hover, splitbutton.flat:active, splitbutton.flat:checked {
|
|
background: alpha(currentColor, 0.1);
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
splitbutton.flat:hover > separator, splitbutton.flat:active > separator, splitbutton.flat:checked > separator {
|
|
background: none;
|
|
}
|
|
|
|
splitbutton.flat:focus-within:focus-visible > separator {
|
|
background: none;
|
|
}
|
|
|
|
splitbutton.flat > button,
|
|
splitbutton.flat > menubutton > button {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
splitbutton.suggested-action {
|
|
background-color: #7C4DFF;
|
|
color: on(#7C4DFF);
|
|
}
|
|
|
|
splitbutton.destructive-action {
|
|
background-color: #FF5252;
|
|
color: on(#FF5252);
|
|
}
|
|
|
|
splitbutton.opaque {
|
|
background-color: #505058;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
splitbutton.suggested-action > button, splitbutton.suggested-action > button:checked, splitbutton.suggested-action > menubutton > button, splitbutton.suggested-action > menubutton > button:checked, splitbutton.destructive-action > button, splitbutton.destructive-action > button:checked, splitbutton.destructive-action > menubutton > button, splitbutton.destructive-action > menubutton > button:checked, splitbutton.opaque > button, splitbutton.opaque > button:checked, splitbutton.opaque > menubutton > button, splitbutton.opaque > menubutton > button:checked {
|
|
color: inherit;
|
|
background-color: transparent;
|
|
}
|
|
|
|
splitbutton.suggested-action > menubutton > button:dir(ltr), splitbutton.destructive-action > menubutton > button:dir(ltr), splitbutton.opaque > menubutton > button:dir(ltr) {
|
|
box-shadow: inset 1px 0 rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
splitbutton.suggested-action > menubutton > button:dir(rtl), splitbutton.destructive-action > menubutton > button:dir(rtl), splitbutton.opaque > menubutton > button:dir(rtl) {
|
|
box-shadow: inset -1px 0 rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
splitbutton > menubutton > button > arrow.none {
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
}
|
|
|
|
buttoncontent {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
buttoncontent > label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
buttoncontent > label:dir(ltr) {
|
|
padding-right: 2px;
|
|
}
|
|
|
|
buttoncontent > label:dir(rtl) {
|
|
padding-left: 2px;
|
|
}
|
|
|
|
.arrow-button > box > buttoncontent > label:dir(ltr), splitbutton > button > buttoncontent > label:dir(ltr) {
|
|
padding-right: 0;
|
|
}
|
|
|
|
.arrow-button > box > buttoncontent > label:dir(rtl), splitbutton > button > buttoncontent > label:dir(rtl) {
|
|
padding-left: 0;
|
|
}
|
|
|
|
toast {
|
|
background-color: #31313a;
|
|
margin: 12px;
|
|
margin-bottom: 24px;
|
|
border-radius: 9999px;
|
|
border-spacing: 6px;
|
|
padding: 6px;
|
|
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.12), 0 10px 16px rgba(0, 0, 0, 0.1), inset 0 1px rgba(255, 255, 255, 0.1);
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-weight: normal;
|
|
}
|
|
|
|
toast:dir(ltr) {
|
|
padding-left: 12px;
|
|
}
|
|
|
|
toast:dir(rtl) {
|
|
padding-right: 12px;
|
|
}
|
|
|
|
toast > widget {
|
|
margin: 0 6px;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box {
|
|
margin: 36px 12px;
|
|
border-spacing: 36px;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box > clamp > box {
|
|
border-spacing: 12px;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box > clamp > box > .icon {
|
|
-gtk-icon-size: 128px;
|
|
color: alpha(currentColor, 0.45);
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box > clamp > box > .icon:disabled {
|
|
opacity: 0.45;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box > clamp > box > .icon:not(:last-child) {
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
statuspage.compact > scrolledwindow > viewport > box {
|
|
margin: 24px 12px;
|
|
border-spacing: 24px;
|
|
}
|
|
|
|
statuspage.compact > scrolledwindow > viewport > box > clamp > box > .icon {
|
|
-gtk-icon-size: 96px;
|
|
}
|
|
|
|
statuspage.compact > scrolledwindow > viewport > box > clamp > box > .icon:not(:last-child) {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
statuspage.compact > scrolledwindow > viewport > box > clamp > box > .title {
|
|
font-size: 18pt;
|
|
}
|
|
|
|
list.content,
|
|
list.boxed-list, .card {
|
|
border-radius: 7px;
|
|
box-shadow: none;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
background-clip: padding-box;
|
|
background-color: #31313a;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
preferencespage > scrolledwindow > viewport > clamp > box {
|
|
margin: 24px 12px;
|
|
border-spacing: 24px;
|
|
}
|
|
|
|
preferencesgroup > box, preferencesgroup > box .labels {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
preferencesgroup > box > box.header:not(.single-line) {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
preferencesgroup > box > box.single-line {
|
|
min-height: 36px;
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle {
|
|
padding: 0;
|
|
background: none;
|
|
box-shadow: none;
|
|
outline-color: transparent;
|
|
outline-width: 3px;
|
|
outline-offset: 3px;
|
|
outline-style: solid;
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle, preferencesgroup > box button.background-preview-button.toggle > background-preview {
|
|
border-radius: 6px;
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle:hover {
|
|
outline-color: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle:active {
|
|
outline-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle:checked {
|
|
outline-color: #754ffe;
|
|
}
|
|
|
|
viewswitcher {
|
|
margin: 0;
|
|
}
|
|
|
|
viewswitcher.wide {
|
|
border-spacing: 0;
|
|
border-radius: 9999px;
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
viewswitcher.wide button.toggle:checked indicatorbin.needs-attention > indicator {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
viewswitcher.wide button.toggle:checked indicatorbin.needs-attention > indicator > label {
|
|
color: #754ffe;
|
|
}
|
|
|
|
viewswitcher.narrow button.toggle {
|
|
border-radius: 0;
|
|
margin: 0;
|
|
border: none;
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
viewswitcher.narrow button.toggle:hover {
|
|
color: #FFFFFF;
|
|
box-shadow: inset 0 -2px transparent;
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
viewswitcher.narrow button.toggle:active {
|
|
color: #FFFFFF;
|
|
box-shadow: inset 0 -2px #754ffe;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
viewswitcher.narrow button.toggle:checked {
|
|
border-radius: 0;
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.06);
|
|
box-shadow: inset 0 -2px #754ffe;
|
|
background-image: none;
|
|
}
|
|
|
|
viewswitcher.narrow button.toggle:checked:backdrop, viewswitcher.narrow button.toggle:active:backdrop {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
box-shadow: inset 0 -2px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
viewswitcher button.toggle {
|
|
font-weight: bold;
|
|
padding: 0;
|
|
min-height: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
viewswitcher button.toggle > stack > box.narrow {
|
|
font-size: 0.75rem;
|
|
padding-top: 7px;
|
|
padding-bottom: 5px;
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
viewswitcher button.toggle > stack > box.narrow > stack > label {
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
viewswitcher button.toggle > stack > box.wide {
|
|
padding: 0 12px;
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
viewswitcherbar actionbar > revealer > box {
|
|
padding: 0;
|
|
}
|
|
|
|
viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:not(.suggested-action):not(.destructive-action) {
|
|
transition: none;
|
|
}
|
|
|
|
viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:not(.suggested-action):not(.destructive-action):hover {
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
box-shadow: inset 0 2px transparent;
|
|
}
|
|
|
|
viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:not(.suggested-action):not(.destructive-action):active {
|
|
color: #FFFFFF;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
box-shadow: inset 0 2px #754ffe;
|
|
}
|
|
|
|
viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:not(.suggested-action):not(.destructive-action):checked {
|
|
border-radius: 0;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:not(.suggested-action):not(.destructive-action):checked, viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:not(.suggested-action):not(.destructive-action):checked:hover {
|
|
background-color: rgba(255, 255, 255, 0.06);
|
|
box-shadow: inset 0 2px #754ffe;
|
|
background-image: none;
|
|
}
|
|
|
|
viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:not(.suggested-action):not(.destructive-action):checked:backdrop, viewswitcherbar actionbar > revealer > box viewswitcher.narrow button.toggle:not(.suggested-action):not(.destructive-action):active:backdrop {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
box-shadow: inset 0 2px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
viewswitchertitle {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
viewswitchertitle viewswitcher {
|
|
margin-left: 12px;
|
|
margin-right: 12px;
|
|
}
|
|
|
|
viewswitchertitle viewswitcher.narrow {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
viewswitchertitle viewswitcher.narrow button.toggle > stack > box.narrow {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
viewswitchertitle viewswitcher.wide {
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
viewswitchertitle windowtitle {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
indicatorbin > indicator, indicatorbin > mask {
|
|
min-width: 6px;
|
|
min-height: 6px;
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
indicatorbin > indicator {
|
|
margin: 1px;
|
|
padding: 0;
|
|
background: alpha(currentColor, 0.4);
|
|
}
|
|
|
|
indicatorbin > indicator > label {
|
|
font-size: 0.6rem;
|
|
font-weight: bold;
|
|
padding: 2px 5px;
|
|
color: white;
|
|
}
|
|
|
|
indicatorbin > mask {
|
|
padding: 1px;
|
|
background: black;
|
|
}
|
|
|
|
indicatorbin.needs-attention > indicator {
|
|
background-color: #754ffe;
|
|
}
|
|
|
|
indicatorbin.needs-attention > indicator > label {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
tabbar .box {
|
|
background-color: #31313a;
|
|
color: #FFFFFF;
|
|
box-shadow: inset 0 -1px rgba(255, 255, 255, 0.08);
|
|
padding: 1px;
|
|
padding-top: 0;
|
|
}
|
|
|
|
tabbar .box:backdrop {
|
|
background-color: #424249;
|
|
transition: background-color 200ms ease-out;
|
|
}
|
|
|
|
tabbar .box:backdrop > scrolledwindow,
|
|
tabbar .box:backdrop > .start-action,
|
|
tabbar .box:backdrop > .end-action {
|
|
filter: opacity(0.5);
|
|
transition: filter 200ms ease-out;
|
|
}
|
|
|
|
tabbar tabbox {
|
|
padding-bottom: 0;
|
|
padding-top: 0;
|
|
min-height: 34px;
|
|
}
|
|
|
|
tabbar tabbox > tabboxchild {
|
|
border-radius: 7px;
|
|
}
|
|
|
|
tabbar tabbox > separator {
|
|
margin-top: 9px;
|
|
margin-bottom: 9px;
|
|
transition: opacity 150ms ease-in-out;
|
|
}
|
|
|
|
tabbar tabbox > separator.hidden {
|
|
opacity: 0;
|
|
}
|
|
|
|
tabbar tabbox > revealer > indicator {
|
|
min-width: 2px;
|
|
border-radius: 2px;
|
|
margin: 3px 6px;
|
|
background: #754ffe;
|
|
}
|
|
|
|
tabbar tab {
|
|
transition: background 150ms ease-in-out;
|
|
}
|
|
|
|
tabbar tab:selected {
|
|
background-color: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
tabbar tab:selected:hover {
|
|
background-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
tabbar tab:selected:active {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
tabbar tab:hover {
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
tabbar tab:active {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
tabbar tabbox.single-tab tab, tabbar tabbox.single-tab tab:hover, tabbar tabbox.single-tab tab:active {
|
|
background: none;
|
|
}
|
|
|
|
tabbar .start-action,
|
|
tabbar .end-action {
|
|
padding: 6px 5px;
|
|
}
|
|
|
|
tabbar .start-action:dir(ltr),
|
|
tabbar .end-action:dir(rtl) {
|
|
padding-right: 0;
|
|
}
|
|
|
|
tabbar .start-action:dir(rtl),
|
|
tabbar .end-action:dir(ltr) {
|
|
padding-left: 0;
|
|
}
|
|
|
|
tabbar.inline .box {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
box-shadow: none;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
tabbar.inline .box:backdrop {
|
|
background-color: transparent;
|
|
transition: none;
|
|
}
|
|
|
|
tabbar.inline .box:backdrop > scrolledwindow,
|
|
tabbar.inline .box:backdrop > .start-action,
|
|
tabbar.inline .box:backdrop > .end-action {
|
|
filter: none;
|
|
transition: none;
|
|
}
|
|
|
|
dnd tab {
|
|
background-color: #31313a;
|
|
background-image: image(rgba(255, 255, 255, 0.12));
|
|
color: #FFFFFF;
|
|
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 1px 3px 1px rgba(0, 0, 0, 0.07), 0 2px 6px 2px rgba(0, 0, 0, 0.03);
|
|
margin: 25px;
|
|
}
|
|
|
|
tabbar tab,
|
|
dnd tab {
|
|
min-height: 26px;
|
|
padding: 4px;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
tabbar tab button.image-button,
|
|
dnd tab button.image-button {
|
|
padding: 0;
|
|
margin: 0;
|
|
min-width: 24px;
|
|
min-height: 24px;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
tabbar tab indicator,
|
|
dnd tab indicator {
|
|
min-height: 2px;
|
|
border-radius: 2px;
|
|
background: alpha(#754ffe, 0.5);
|
|
transform: translateY(4px);
|
|
}
|
|
|
|
tabthumbnail {
|
|
border-radius: 11px;
|
|
transition: box-shadow 200ms ease-out, background-color ease-out;
|
|
}
|
|
|
|
tabthumbnail > box {
|
|
margin: 6px;
|
|
}
|
|
|
|
tabthumbnail:drop(active) {
|
|
box-shadow: inset 0 0 0 2px alpha(#FF6D00, 0.4);
|
|
background-color: alpha(#FF6D00, 0.1);
|
|
}
|
|
|
|
tabthumbnail .needs-attention:dir(ltr) {
|
|
transform: translate(8px, -8px);
|
|
}
|
|
|
|
tabthumbnail .needs-attention:dir(rtl) {
|
|
transform: translate(-8px, -8px);
|
|
}
|
|
|
|
tabthumbnail .needs-attention > widget {
|
|
background: #754ffe;
|
|
min-width: 12px;
|
|
min-height: 12px;
|
|
border-radius: 8px;
|
|
margin: 3px;
|
|
box-shadow: 0 1px 2px alpha(#754ffe, 0.4);
|
|
}
|
|
|
|
tabthumbnail .card {
|
|
background: none;
|
|
color: inherit;
|
|
}
|
|
|
|
tabthumbnail .card picture {
|
|
outline: none;
|
|
border-radius: 7px;
|
|
}
|
|
|
|
tabthumbnail.pinned .card {
|
|
background-color: rgba(86, 87, 245, 0.12);
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
tabthumbnail .icon-title-box {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
tabthumbnail .tab-unpin-icon {
|
|
margin: 6px;
|
|
min-width: 24px;
|
|
min-height: 24px;
|
|
}
|
|
|
|
tabthumbnail button.circular {
|
|
margin: 6px;
|
|
background-color: alpha(#754ffe, 0.15);
|
|
min-width: 24px;
|
|
min-height: 24px;
|
|
}
|
|
|
|
tabthumbnail button.circular:hover {
|
|
background-color: alpha(#754ffe, 0.2);
|
|
}
|
|
|
|
tabthumbnail button.circular:active {
|
|
background-color: alpha(#754ffe, 0.25);
|
|
}
|
|
|
|
taboverview > .overview .new-tab-button {
|
|
margin: 18px;
|
|
}
|
|
|
|
tabview:drop(active),
|
|
tabbox:drop(active),
|
|
tabgrid:drop(active) {
|
|
box-shadow: none;
|
|
}
|
|
|
|
flap > dimming,
|
|
leaflet > dimming,
|
|
navigation-view > dimming,
|
|
overlay-split-view > dimming {
|
|
background: none;
|
|
}
|
|
|
|
flap > border,
|
|
leaflet > border,
|
|
navigation-view > border,
|
|
overlay-split-view > border {
|
|
background: none;
|
|
}
|
|
|
|
flap > shadow,
|
|
leaflet > shadow,
|
|
navigation-view > shadow,
|
|
overlay-split-view > shadow {
|
|
min-width: 56px;
|
|
min-height: 56px;
|
|
}
|
|
|
|
flap > shadow.left,
|
|
leaflet > shadow.left,
|
|
navigation-view > shadow.left,
|
|
overlay-split-view > shadow.left {
|
|
background-image: linear-gradient(to right, alpha(rgba(0, 0, 0, 0.15), 0.7), alpha(rgba(0, 0, 0, 0.15), 0.14) 40px, alpha(rgba(0, 0, 0, 0.15), 0) 56px), linear-gradient(to right, alpha(rgba(0, 0, 0, 0.15), 0.4), alpha(rgba(0, 0, 0, 0.15), 0.14) 7px, alpha(rgba(0, 0, 0, 0.15), 0) 24px);
|
|
}
|
|
|
|
flap > shadow.right,
|
|
leaflet > shadow.right,
|
|
navigation-view > shadow.right,
|
|
overlay-split-view > shadow.right {
|
|
background-image: linear-gradient(to left, alpha(rgba(0, 0, 0, 0.15), 0.7), alpha(rgba(0, 0, 0, 0.15), 0.14) 40px, alpha(rgba(0, 0, 0, 0.15), 0) 56px), linear-gradient(to left, alpha(rgba(0, 0, 0, 0.15), 0.4), alpha(rgba(0, 0, 0, 0.15), 0.14) 7px, alpha(rgba(0, 0, 0, 0.15), 0) 24px);
|
|
}
|
|
|
|
flap > shadow.up,
|
|
leaflet > shadow.up,
|
|
navigation-view > shadow.up,
|
|
overlay-split-view > shadow.up {
|
|
background-image: linear-gradient(to bottom, alpha(rgba(0, 0, 0, 0.15), 0.7), alpha(rgba(0, 0, 0, 0.15), 0.14) 40px, alpha(rgba(0, 0, 0, 0.15), 0) 56px), linear-gradient(to bottom, alpha(rgba(0, 0, 0, 0.15), 0.4), alpha(rgba(0, 0, 0, 0.15), 0.14) 7px, alpha(rgba(0, 0, 0, 0.15), 0) 24px);
|
|
}
|
|
|
|
flap > shadow.down,
|
|
leaflet > shadow.down,
|
|
navigation-view > shadow.down,
|
|
overlay-split-view > shadow.down {
|
|
background-image: linear-gradient(to top, alpha(rgba(0, 0, 0, 0.15), 0.7), alpha(rgba(0, 0, 0, 0.15), 0.14) 40px, alpha(rgba(0, 0, 0, 0.15), 0) 56px), linear-gradient(to top, alpha(rgba(0, 0, 0, 0.15), 0.4), alpha(rgba(0, 0, 0, 0.15), 0.14) 7px, alpha(rgba(0, 0, 0, 0.15), 0) 24px);
|
|
}
|
|
|
|
toolbarview.undershoot-top scrolledwindow > undershoot.top {
|
|
box-shadow: inset 0 1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to bottom, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
toolbarview.undershoot-bottom scrolledwindow > undershoot.bottom {
|
|
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to top, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.unfolded stacksidebar.sidebar {
|
|
border: none;
|
|
}
|
|
|
|
.sidebar-pane {
|
|
background-color: #3b3b43;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.sidebar-pane:backdrop {
|
|
background-color: #34343b;
|
|
transition: background-color 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.sidebar-pane .toolbar,
|
|
.sidebar-pane .sidebar,
|
|
.sidebar-pane .navigation-sidebar,
|
|
.sidebar-pane headerbar,
|
|
.sidebar-pane searchbar > revealer > box {
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
|
|
.sidebar-pane toolbarview.undershoot-top scrolledwindow > undershoot.top {
|
|
box-shadow: inset 0 1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to bottom, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.sidebar-pane toolbarview.undershoot-bottom scrolledwindow > undershoot.bottom {
|
|
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to top, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.sidebar-pane scrolledwindow.undershoot-top > undershoot.top {
|
|
box-shadow: inset 0 1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to bottom, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.sidebar-pane scrolledwindow.undershoot-bottom > undershoot.bottom {
|
|
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to top, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.sidebar-pane scrolledwindow.undershoot-start:dir(ltr) > undershoot.left {
|
|
box-shadow: inset 1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to right, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.sidebar-pane scrolledwindow.undershoot-start:dir(rtl) > undershoot.right {
|
|
box-shadow: inset -1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to left, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.sidebar-pane scrolledwindow.undershoot-end:dir(ltr) > undershoot.right {
|
|
box-shadow: inset -1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to left, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.sidebar-pane scrolledwindow.undershoot-end:dir(rtl) > undershoot.left {
|
|
box-shadow: inset 1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to right, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.sidebar-pane flap > dimming,
|
|
.sidebar-pane leaflet > dimming,
|
|
.sidebar-pane navigation-view > dimming,
|
|
.sidebar-pane overlay-split-view > dimming {
|
|
background: none;
|
|
}
|
|
|
|
.sidebar-pane flap > border,
|
|
.sidebar-pane leaflet > border,
|
|
.sidebar-pane navigation-view > border,
|
|
.sidebar-pane overlay-split-view > border {
|
|
background: none;
|
|
}
|
|
|
|
.sidebar-pane flap > shadow,
|
|
.sidebar-pane leaflet > shadow,
|
|
.sidebar-pane navigation-view > shadow,
|
|
.sidebar-pane overlay-split-view > shadow {
|
|
min-width: 56px;
|
|
min-height: 56px;
|
|
}
|
|
|
|
.sidebar-pane flap > shadow.left,
|
|
.sidebar-pane leaflet > shadow.left,
|
|
.sidebar-pane navigation-view > shadow.left,
|
|
.sidebar-pane overlay-split-view > shadow.left {
|
|
background-image: linear-gradient(to right, alpha(rgba(0, 0, 0, 0.15), 0.7), alpha(rgba(0, 0, 0, 0.15), 0.14) 40px, alpha(rgba(0, 0, 0, 0.15), 0) 56px), linear-gradient(to right, alpha(rgba(0, 0, 0, 0.15), 0.4), alpha(rgba(0, 0, 0, 0.15), 0.14) 7px, alpha(rgba(0, 0, 0, 0.15), 0) 24px);
|
|
}
|
|
|
|
.sidebar-pane flap > shadow.right,
|
|
.sidebar-pane leaflet > shadow.right,
|
|
.sidebar-pane navigation-view > shadow.right,
|
|
.sidebar-pane overlay-split-view > shadow.right {
|
|
background-image: linear-gradient(to left, alpha(rgba(0, 0, 0, 0.15), 0.7), alpha(rgba(0, 0, 0, 0.15), 0.14) 40px, alpha(rgba(0, 0, 0, 0.15), 0) 56px), linear-gradient(to left, alpha(rgba(0, 0, 0, 0.15), 0.4), alpha(rgba(0, 0, 0, 0.15), 0.14) 7px, alpha(rgba(0, 0, 0, 0.15), 0) 24px);
|
|
}
|
|
|
|
.sidebar-pane flap > shadow.up,
|
|
.sidebar-pane leaflet > shadow.up,
|
|
.sidebar-pane navigation-view > shadow.up,
|
|
.sidebar-pane overlay-split-view > shadow.up {
|
|
background-image: linear-gradient(to bottom, alpha(rgba(0, 0, 0, 0.15), 0.7), alpha(rgba(0, 0, 0, 0.15), 0.14) 40px, alpha(rgba(0, 0, 0, 0.15), 0) 56px), linear-gradient(to bottom, alpha(rgba(0, 0, 0, 0.15), 0.4), alpha(rgba(0, 0, 0, 0.15), 0.14) 7px, alpha(rgba(0, 0, 0, 0.15), 0) 24px);
|
|
}
|
|
|
|
.sidebar-pane flap > shadow.down,
|
|
.sidebar-pane leaflet > shadow.down,
|
|
.sidebar-pane navigation-view > shadow.down,
|
|
.sidebar-pane overlay-split-view > shadow.down {
|
|
background-image: linear-gradient(to top, alpha(rgba(0, 0, 0, 0.15), 0.7), alpha(rgba(0, 0, 0, 0.15), 0.14) 40px, alpha(rgba(0, 0, 0, 0.15), 0) 56px), linear-gradient(to top, alpha(rgba(0, 0, 0, 0.15), 0.4), alpha(rgba(0, 0, 0, 0.15), 0.14) 7px, alpha(rgba(0, 0, 0, 0.15), 0) 24px);
|
|
}
|
|
|
|
.sidebar-pane banner > revealer > widget {
|
|
background-color: gtkmix(#754ffe, #3b3b43, 30%);
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.sidebar-pane banner > revealer > widget:backdrop {
|
|
background-color: gtkmix(#754ffe, #3b3b43, 30%);
|
|
}
|
|
|
|
.sidebar-pane:dir(ltr), .sidebar-pane:dir(ltr) banner > revealer > widget, .sidebar-pane.end:dir(rtl), .sidebar-pane.end:dir(rtl) banner > revealer > widget {
|
|
box-shadow: none;
|
|
border-right: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.sidebar-pane:dir(rtl), .sidebar-pane:dir(rtl) banner > revealer > widget, .sidebar-pane.end:dir(ltr), .sidebar-pane.end:dir(ltr) banner > revealer > widget {
|
|
box-shadow: none;
|
|
border-left: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
/* Middle pane in three-pane setups */
|
|
.content-pane .sidebar-pane,
|
|
.sidebar-pane .content-pane {
|
|
background-color: #31313a;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.content-pane .sidebar-pane:backdrop,
|
|
.sidebar-pane .content-pane:backdrop {
|
|
background-color: #34343b;
|
|
transition: background-color 225ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.content-pane .sidebar-pane toolbarview.undershoot-top scrolledwindow > undershoot.top,
|
|
.sidebar-pane .content-pane toolbarview.undershoot-top scrolledwindow > undershoot.top {
|
|
box-shadow: inset 0 1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to bottom, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane toolbarview.undershoot-bottom scrolledwindow > undershoot.bottom,
|
|
.sidebar-pane .content-pane toolbarview.undershoot-bottom scrolledwindow > undershoot.bottom {
|
|
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to top, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane scrolledwindow.undershoot-top > undershoot.top,
|
|
.sidebar-pane .content-pane scrolledwindow.undershoot-top > undershoot.top {
|
|
box-shadow: inset 0 1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to bottom, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane scrolledwindow.undershoot-bottom > undershoot.bottom,
|
|
.sidebar-pane .content-pane scrolledwindow.undershoot-bottom > undershoot.bottom {
|
|
box-shadow: inset 0 -1px rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to top, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane scrolledwindow.undershoot-start:dir(ltr) > undershoot.left,
|
|
.sidebar-pane .content-pane scrolledwindow.undershoot-start:dir(ltr) > undershoot.left {
|
|
box-shadow: inset 1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to right, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane scrolledwindow.undershoot-start:dir(rtl) > undershoot.right,
|
|
.sidebar-pane .content-pane scrolledwindow.undershoot-start:dir(rtl) > undershoot.right {
|
|
box-shadow: inset -1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to left, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane scrolledwindow.undershoot-end:dir(ltr) > undershoot.right,
|
|
.sidebar-pane .content-pane scrolledwindow.undershoot-end:dir(ltr) > undershoot.right {
|
|
box-shadow: inset -1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to left, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane scrolledwindow.undershoot-end:dir(rtl) > undershoot.left,
|
|
.sidebar-pane .content-pane scrolledwindow.undershoot-end:dir(rtl) > undershoot.left {
|
|
box-shadow: inset 1px 0 rgba(0, 0, 0, 0.08);
|
|
background: linear-gradient(to right, alpha(rgba(0, 0, 0, 0.08), 0.75), transparent 4px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane flap > dimming,
|
|
.content-pane .sidebar-pane leaflet > dimming,
|
|
.content-pane .sidebar-pane navigation-view > dimming,
|
|
.content-pane .sidebar-pane overlay-split-view > dimming,
|
|
.sidebar-pane .content-pane flap > dimming,
|
|
.sidebar-pane .content-pane leaflet > dimming,
|
|
.sidebar-pane .content-pane navigation-view > dimming,
|
|
.sidebar-pane .content-pane overlay-split-view > dimming {
|
|
background: none;
|
|
}
|
|
|
|
.content-pane .sidebar-pane flap > border,
|
|
.content-pane .sidebar-pane leaflet > border,
|
|
.content-pane .sidebar-pane navigation-view > border,
|
|
.content-pane .sidebar-pane overlay-split-view > border,
|
|
.sidebar-pane .content-pane flap > border,
|
|
.sidebar-pane .content-pane leaflet > border,
|
|
.sidebar-pane .content-pane navigation-view > border,
|
|
.sidebar-pane .content-pane overlay-split-view > border {
|
|
background: none;
|
|
}
|
|
|
|
.content-pane .sidebar-pane flap > shadow,
|
|
.content-pane .sidebar-pane leaflet > shadow,
|
|
.content-pane .sidebar-pane navigation-view > shadow,
|
|
.content-pane .sidebar-pane overlay-split-view > shadow,
|
|
.sidebar-pane .content-pane flap > shadow,
|
|
.sidebar-pane .content-pane leaflet > shadow,
|
|
.sidebar-pane .content-pane navigation-view > shadow,
|
|
.sidebar-pane .content-pane overlay-split-view > shadow {
|
|
min-width: 56px;
|
|
min-height: 56px;
|
|
}
|
|
|
|
.content-pane .sidebar-pane flap > shadow.left,
|
|
.content-pane .sidebar-pane leaflet > shadow.left,
|
|
.content-pane .sidebar-pane navigation-view > shadow.left,
|
|
.content-pane .sidebar-pane overlay-split-view > shadow.left,
|
|
.sidebar-pane .content-pane flap > shadow.left,
|
|
.sidebar-pane .content-pane leaflet > shadow.left,
|
|
.sidebar-pane .content-pane navigation-view > shadow.left,
|
|
.sidebar-pane .content-pane overlay-split-view > shadow.left {
|
|
background-image: linear-gradient(to right, alpha(rgba(255, 255, 255, 0.08), 0.7), alpha(rgba(255, 255, 255, 0.08), 0.14) 40px, alpha(rgba(255, 255, 255, 0.08), 0) 56px), linear-gradient(to right, alpha(rgba(255, 255, 255, 0.08), 0.4), alpha(rgba(255, 255, 255, 0.08), 0.14) 7px, alpha(rgba(255, 255, 255, 0.08), 0) 24px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane flap > shadow.right,
|
|
.content-pane .sidebar-pane leaflet > shadow.right,
|
|
.content-pane .sidebar-pane navigation-view > shadow.right,
|
|
.content-pane .sidebar-pane overlay-split-view > shadow.right,
|
|
.sidebar-pane .content-pane flap > shadow.right,
|
|
.sidebar-pane .content-pane leaflet > shadow.right,
|
|
.sidebar-pane .content-pane navigation-view > shadow.right,
|
|
.sidebar-pane .content-pane overlay-split-view > shadow.right {
|
|
background-image: linear-gradient(to left, alpha(rgba(255, 255, 255, 0.08), 0.7), alpha(rgba(255, 255, 255, 0.08), 0.14) 40px, alpha(rgba(255, 255, 255, 0.08), 0) 56px), linear-gradient(to left, alpha(rgba(255, 255, 255, 0.08), 0.4), alpha(rgba(255, 255, 255, 0.08), 0.14) 7px, alpha(rgba(255, 255, 255, 0.08), 0) 24px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane flap > shadow.up,
|
|
.content-pane .sidebar-pane leaflet > shadow.up,
|
|
.content-pane .sidebar-pane navigation-view > shadow.up,
|
|
.content-pane .sidebar-pane overlay-split-view > shadow.up,
|
|
.sidebar-pane .content-pane flap > shadow.up,
|
|
.sidebar-pane .content-pane leaflet > shadow.up,
|
|
.sidebar-pane .content-pane navigation-view > shadow.up,
|
|
.sidebar-pane .content-pane overlay-split-view > shadow.up {
|
|
background-image: linear-gradient(to bottom, alpha(rgba(255, 255, 255, 0.08), 0.7), alpha(rgba(255, 255, 255, 0.08), 0.14) 40px, alpha(rgba(255, 255, 255, 0.08), 0) 56px), linear-gradient(to bottom, alpha(rgba(255, 255, 255, 0.08), 0.4), alpha(rgba(255, 255, 255, 0.08), 0.14) 7px, alpha(rgba(255, 255, 255, 0.08), 0) 24px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane flap > shadow.down,
|
|
.content-pane .sidebar-pane leaflet > shadow.down,
|
|
.content-pane .sidebar-pane navigation-view > shadow.down,
|
|
.content-pane .sidebar-pane overlay-split-view > shadow.down,
|
|
.sidebar-pane .content-pane flap > shadow.down,
|
|
.sidebar-pane .content-pane leaflet > shadow.down,
|
|
.sidebar-pane .content-pane navigation-view > shadow.down,
|
|
.sidebar-pane .content-pane overlay-split-view > shadow.down {
|
|
background-image: linear-gradient(to top, alpha(rgba(255, 255, 255, 0.08), 0.7), alpha(rgba(255, 255, 255, 0.08), 0.14) 40px, alpha(rgba(255, 255, 255, 0.08), 0) 56px), linear-gradient(to top, alpha(rgba(255, 255, 255, 0.08), 0.4), alpha(rgba(255, 255, 255, 0.08), 0.14) 7px, alpha(rgba(255, 255, 255, 0.08), 0) 24px);
|
|
}
|
|
|
|
.content-pane .sidebar-pane banner > revealer > widget,
|
|
.sidebar-pane .content-pane banner > revealer > widget {
|
|
background-color: gtkmix(#754ffe, #31313a, 30%);
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.content-pane .sidebar-pane banner > revealer > widget:backdrop,
|
|
.sidebar-pane .content-pane banner > revealer > widget:backdrop {
|
|
background-color: gtkmix(#754ffe, #31313a, 30%);
|
|
}
|
|
|
|
.content-pane .sidebar-pane:dir(ltr), .content-pane .sidebar-pane:dir(ltr) banner > revealer > widget, .content-pane .sidebar-pane.end:dir(rtl), .content-pane .sidebar-pane.end:dir(rtl) banner > revealer > widget,
|
|
.sidebar-pane .content-pane:dir(ltr),
|
|
.sidebar-pane .content-pane:dir(ltr) banner > revealer > widget,
|
|
.sidebar-pane .content-pane.end:dir(rtl),
|
|
.sidebar-pane .content-pane.end:dir(rtl) banner > revealer > widget {
|
|
box-shadow: none;
|
|
border-right: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.content-pane .sidebar-pane:dir(rtl), .content-pane .sidebar-pane:dir(rtl) banner > revealer > widget, .content-pane .sidebar-pane.end:dir(ltr), .content-pane .sidebar-pane.end:dir(ltr) banner > revealer > widget,
|
|
.sidebar-pane .content-pane:dir(rtl),
|
|
.sidebar-pane .content-pane:dir(rtl) banner > revealer > widget,
|
|
.sidebar-pane .content-pane.end:dir(ltr),
|
|
.sidebar-pane .content-pane.end:dir(ltr) banner > revealer > widget {
|
|
box-shadow: none;
|
|
border-left: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
.sidebar-pane .sidebar-pane {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
}
|
|
|
|
.top-bar {
|
|
padding: 0;
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.top-bar headerbar, .top-bar headerbar:backdrop,
|
|
.top-bar box > headerbar:only-child,
|
|
.top-bar box > headerbar:only-child:backdrop {
|
|
background-color: transparent;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
|
|
border: none;
|
|
}
|
|
|
|
.top-bar .collapse-spacing {
|
|
padding: 0;
|
|
}
|
|
|
|
themeselector,
|
|
panelthemeselector {
|
|
margin: 9px;
|
|
}
|
|
|
|
themeselector checkbutton,
|
|
panelthemeselector checkbutton {
|
|
padding: 0;
|
|
min-height: 44px;
|
|
min-width: 44px;
|
|
padding: 1px;
|
|
background-clip: content-box;
|
|
border-radius: 9999px;
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
themeselector checkbutton.follow:checked, themeselector checkbutton.light:checked, themeselector checkbutton.dark:checked,
|
|
panelthemeselector checkbutton.follow:checked,
|
|
panelthemeselector checkbutton.light:checked,
|
|
panelthemeselector checkbutton.dark:checked {
|
|
box-shadow: inset 0 0 0 2px #754ffe;
|
|
}
|
|
|
|
themeselector checkbutton.follow,
|
|
panelthemeselector checkbutton.follow {
|
|
background-image: linear-gradient(to bottom right, #ffffff 50%, #202020 50%);
|
|
}
|
|
|
|
themeselector checkbutton.light,
|
|
panelthemeselector checkbutton.light {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
themeselector checkbutton.dark,
|
|
panelthemeselector checkbutton.dark {
|
|
background-color: #202020;
|
|
}
|
|
|
|
themeselector checkbutton.theme-selector radio,
|
|
panelthemeselector checkbutton.theme-selector radio {
|
|
-gtk-icon-source: none;
|
|
border: none;
|
|
background: none;
|
|
box-shadow: none;
|
|
min-height: 20px;
|
|
min-width: 20px;
|
|
padding: 0;
|
|
}
|
|
|
|
themeselector checkbutton.theme-selector radio:hover, themeselector checkbutton.theme-selector radio:active, themeselector checkbutton.theme-selector radio:checked,
|
|
panelthemeselector checkbutton.theme-selector radio:hover,
|
|
panelthemeselector checkbutton.theme-selector radio:active,
|
|
panelthemeselector checkbutton.theme-selector radio:checked {
|
|
background-color: transparent;
|
|
}
|
|
|
|
themeselector checkbutton.theme-selector radio:checked,
|
|
panelthemeselector checkbutton.theme-selector radio:checked {
|
|
-gtk-icon-size: 20px;
|
|
-gtk-icon-source: -gtk-scaled(-gtk-recolor(url("assets/scalable/check-symbolic.svg")), -gtk-recolor(url("assets/scalable/check-symbolic@2.svg")));
|
|
color: #FFFFFF;
|
|
background-color: #754ffe;
|
|
}
|
|
|
|
themeselector checkbutton.theme-selector radio:checked, themeselector checkbutton.theme-selector radio:checked:hover, themeselector checkbutton.theme-selector radio:checked:active,
|
|
panelthemeselector checkbutton.theme-selector radio:checked,
|
|
panelthemeselector checkbutton.theme-selector radio:checked:hover,
|
|
panelthemeselector checkbutton.theme-selector radio:checked:active {
|
|
box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
themeswitcher {
|
|
padding: 6px;
|
|
}
|
|
|
|
themeswitcher .check {
|
|
min-height: 20px;
|
|
min-width: 20px;
|
|
background: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
border-radius: 9999px;
|
|
color: #FFFFFF;
|
|
background-color: #754ffe;
|
|
}
|
|
|
|
themeswitcher .check, themeswitcher .check:hover, themeswitcher .check:active {
|
|
box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.08), 0 1px 2px 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
themeswitcher checkbutton {
|
|
padding: 0;
|
|
min-height: 44px;
|
|
min-width: 44px;
|
|
padding: 1px;
|
|
background-clip: content-box;
|
|
border-radius: 9999px;
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
themeswitcher checkbutton:checked {
|
|
box-shadow: inset 0 0 0 2px #754ffe;
|
|
}
|
|
|
|
themeswitcher checkbutton radio, themeswitcher checkbutton radio:hover, themeswitcher checkbutton radio:active, themeswitcher checkbutton radio:checked, themeswitcher checkbutton radio:checked:hover, themeswitcher checkbutton radio:checked:active {
|
|
background-color: transparent;
|
|
border: none;
|
|
background: none;
|
|
box-shadow: none;
|
|
color: transparent;
|
|
-gtk-icon-source: none;
|
|
-gtk-icon-size: 0;
|
|
}
|
|
|
|
themeswitcher checkbutton.system {
|
|
background: linear-gradient(-45deg, #1e1e1e 50%, white 50%);
|
|
}
|
|
|
|
themeswitcher checkbutton.light {
|
|
color: alpha(black, 0.8);
|
|
background-color: white;
|
|
}
|
|
|
|
themeswitcher checkbutton.dark {
|
|
color: white;
|
|
background-color: #1e1e1e;
|
|
}
|
|
|
|
/* GTK NAMED COLORS
|
|
----------------
|
|
use responsibly! */
|
|
/*
|
|
widget text/foreground color */
|
|
@define-color theme_fg_color #FFFFFF;
|
|
/*
|
|
text color for entries, views and content in general */
|
|
@define-color theme_text_color currentColor;
|
|
/*
|
|
widget base background color */
|
|
@define-color theme_bg_color #34343b;
|
|
/*
|
|
text widgets and the like base background color */
|
|
@define-color theme_base_color #31313a;
|
|
/*
|
|
base background color of selections */
|
|
@define-color theme_selected_bg_color #754ffe;
|
|
/*
|
|
text/foreground color of selections */
|
|
@define-color theme_selected_fg_color #FFFFFF;
|
|
/*
|
|
base background color of insensitive widgets */
|
|
@define-color insensitive_bg_color #34343b;
|
|
/*
|
|
text foreground color of insensitive widgets */
|
|
@define-color insensitive_fg_color alpha(currentColor, 0.5);
|
|
/*
|
|
insensitive text widgets and the like base background color */
|
|
@define-color insensitive_base_color #3b3b43;
|
|
/*
|
|
widget text/foreground color on backdrop windows */
|
|
@define-color theme_unfocused_fg_color #FFFFFF;
|
|
/*
|
|
text color for entries, views and content in general on backdrop windows */
|
|
@define-color theme_unfocused_text_color currentColor;
|
|
/*
|
|
widget base background color on backdrop windows */
|
|
@define-color theme_unfocused_bg_color #34343b;
|
|
/*
|
|
text widgets and the like base background color on backdrop windows */
|
|
@define-color theme_unfocused_base_color #31313a;
|
|
/*
|
|
base background color of selections on backdrop windows */
|
|
@define-color theme_unfocused_selected_bg_color #754ffe;
|
|
/*
|
|
text/foreground color of selections on backdrop windows */
|
|
@define-color theme_unfocused_selected_fg_color #FFFFFF;
|
|
/*
|
|
insensitive color on backdrop windows */
|
|
@define-color unfocused_insensitive_color alpha(currentColor, 0.5);
|
|
/*
|
|
widgets main borders color */
|
|
@define-color borders alpha(currentColor, 0.12);
|
|
/*
|
|
widgets main borders color on backdrop windows */
|
|
@define-color unfocused_borders alpha(currentColor, 0.12);
|
|
/*
|
|
these are pretty self explicative */
|
|
@define-color warning_color #FF6D00;
|
|
@define-color error_color #DD2C00;
|
|
@define-color success_color #00C853;
|
|
/*
|
|
FIXME this is really an API */
|
|
@define-color content_view_bg #31313a;
|
|
@define-color placeholder_text_color #c1c1c4;
|
|
/* Very contrasty background for text views (@theme_text_color foreground) */
|
|
@define-color text_view_bg #232329;
|
|
@define-color budgie_tasklist_indicator_color #7C4DFF;
|
|
@define-color budgie_tasklist_indicator_color_active #7C4DFF;
|
|
@define-color budgie_tasklist_indicator_color_active_window rgba(90, 62, 174, 0.931);
|
|
@define-color budgie_tasklist_indicator_color_attention #FF6D00;
|
|
@define-color STRAWBERRY_100 #FF9262;
|
|
@define-color STRAWBERRY_300 #FF793E;
|
|
@define-color STRAWBERRY_500 #F15D22;
|
|
@define-color STRAWBERRY_700 #CF3B00;
|
|
@define-color STRAWBERRY_900 #AC1800;
|
|
@define-color ORANGE_100 #FFDB91;
|
|
@define-color ORANGE_300 #FFCA40;
|
|
@define-color ORANGE_500 #FAA41A;
|
|
@define-color ORANGE_700 #DE8800;
|
|
@define-color ORANGE_900 #C26C00;
|
|
@define-color BANANA_100 #FFFFA8;
|
|
@define-color BANANA_300 #FFFA7D;
|
|
@define-color BANANA_500 #FFCE51;
|
|
@define-color BANANA_700 #D1A023;
|
|
@define-color BANANA_900 #A27100;
|
|
@define-color LIME_100 #A2F3BE;
|
|
@define-color LIME_300 #8ADBA6;
|
|
@define-color LIME_500 #73C48F;
|
|
@define-color LIME_700 #479863;
|
|
@define-color LIME_900 #1C6D38;
|
|
@define-color BLUEBERRY_100 #94A6FF;
|
|
@define-color BLUEBERRY_300 #6A7CE0;
|
|
@define-color BLUEBERRY_500 #3F51B5;
|
|
@define-color BLUEBERRY_700 #213397;
|
|
@define-color BLUEBERRY_900 #031579;
|
|
@define-color GRAPE_100 #D25DE6;
|
|
@define-color GRAPE_300 #B84ACB;
|
|
@define-color GRAPE_500 #9C27B0;
|
|
@define-color GRAPE_700 #830E97;
|
|
@define-color GRAPE_900 #6A007E;
|
|
@define-color COCOA_100 #9F9792;
|
|
@define-color COCOA_300 #7B736E;
|
|
@define-color COCOA_500 #574F4A;
|
|
@define-color COCOA_700 #463E39;
|
|
@define-color COCOA_900 #342C27;
|
|
@define-color SILVER_100 #EEE;
|
|
@define-color SILVER_300 #CCC;
|
|
@define-color SILVER_500 #AAA;
|
|
@define-color SILVER_700 #888;
|
|
@define-color SILVER_900 #666;
|
|
@define-color SLATE_100 #888;
|
|
@define-color SLATE_300 #666;
|
|
@define-color SLATE_500 #444;
|
|
@define-color SLATE_700 #222;
|
|
@define-color SLATE_900 #111;
|
|
@define-color BLACK_100 #474341;
|
|
@define-color BLACK_300 #403C3A;
|
|
@define-color BLACK_500 #393634;
|
|
@define-color BLACK_700 #33302F;
|
|
@define-color BLACK_900 #2B2928;
|