5721 lines
161 KiB
CSS
5721 lines
161 KiB
CSS
/***************
|
|
* Base States *
|
|
***************/
|
|
.background {
|
|
background-color: #333333;
|
|
color: white;
|
|
}
|
|
|
|
.background.csd {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.background.maximized, .background.tiled, .background.fullscreen, .background.solid-csd {
|
|
border-radius: 0;
|
|
}
|
|
|
|
dnd {
|
|
color: white;
|
|
}
|
|
|
|
.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: #2B2B2B;
|
|
color: white;
|
|
}
|
|
|
|
iconview:disabled, .view:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
textview {
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
}
|
|
|
|
textview text {
|
|
background-color: #2B2B2B;
|
|
}
|
|
|
|
textview border {
|
|
background-color: #303030;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
iconview:hover, iconview:selected {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
rubberband, .content-view rubberband, .content-view columnview.view > rubberband,
|
|
.content-view treeview.view > rubberband, .content-view .rubberband, columnview.view > rubberband,
|
|
treeview.view > rubberband, gridview > rubberband, flowbox > rubberband {
|
|
border: 1px solid #3281ea;
|
|
background-color: rgba(50, 129, 234, 0.3);
|
|
}
|
|
|
|
flowbox > flowboxchild {
|
|
padding: 4px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.content-view .tile:selected {
|
|
background-color: transparent;
|
|
}
|
|
|
|
gridview > child {
|
|
padding: 3px;
|
|
}
|
|
|
|
gridview > child:selected {
|
|
outline-color: alpha(currentColor, 0.06);
|
|
}
|
|
|
|
gridview > child box {
|
|
border-spacing: 8px;
|
|
margin: 12px;
|
|
}
|
|
|
|
coverflow cover {
|
|
color: white;
|
|
background-color: #2B2B2B;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
label {
|
|
caret-color: currentColor;
|
|
}
|
|
|
|
label.separator {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
label:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar label:disabled, tab label:disabled, button label:disabled {
|
|
color: inherit;
|
|
}
|
|
|
|
label.osd {
|
|
border-radius: 4px;
|
|
background-color: rgba(54, 54, 54, 0.9);
|
|
color: white;
|
|
}
|
|
|
|
.dim-label, row.expander:not(:checked) image.expander-row-arrow, row label.subtitle {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
window.assistant .sidebar {
|
|
padding: 4px 0;
|
|
}
|
|
|
|
window.assistant .sidebar label {
|
|
min-height: 28px;
|
|
padding: 0 12px;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
font-weight: 500;
|
|
}
|
|
|
|
window.assistant .sidebar label.highlight {
|
|
color: white;
|
|
}
|
|
|
|
toast, .osd popover.background > arrow,
|
|
.osd popover.background > contents, popover.background.touch-selection > arrow,
|
|
popover.background.touch-selection > contents, popover.background.magnifier > arrow,
|
|
popover.background.magnifier > contents, .osd {
|
|
color: white;
|
|
background-color: #2B2B2B;
|
|
background-clip: padding-box;
|
|
border-radius: 4px;
|
|
border: none;
|
|
box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.osd {
|
|
padding: 4px;
|
|
margin: 4px;
|
|
}
|
|
|
|
.osd.circular {
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
/*********************
|
|
* 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 {
|
|
font-weight: 400;
|
|
font-size: 9pt;
|
|
}
|
|
|
|
.caption-heading {
|
|
font-weight: 700;
|
|
font-size: 9pt;
|
|
}
|
|
|
|
/****************
|
|
* Text Entries *
|
|
****************/
|
|
.linked:not(.vertical) > spinbutton.vertical:not(:only-child), .linked:not(.vertical) > spinbutton:not(:only-child):not(.vertical), .linked:not(.vertical) > entry:not(:only-child) {
|
|
border-image-width: 4px 4px 4px 4px;
|
|
border-image-slice: 4 4 4 4;
|
|
border-image-repeat: stretch;
|
|
border-image-source: -gtk-scaled(url("assets/linked-entry-normal-dark.png"), url("assets/linked-entry-normal-dark@2.png"));
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:not(:only-child):focus-within, .linked:not(.vertical) > spinbutton:not(:only-child):focus-within:not(.vertical), .linked:not(.vertical) > entry:not(:only-child):focus-within {
|
|
border-image-source: -gtk-scaled(url("assets/linked-entry-focus-dark.png"), url("assets/linked-entry-focus-dark@2.png"));
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:not(:only-child):disabled, .linked:not(.vertical) > spinbutton:not(:only-child):disabled:not(.vertical), .linked:not(.vertical) > entry:not(:only-child):disabled {
|
|
border-image-source: -gtk-scaled(url("assets/linked-entry-disabled-dark.png"), url("assets/linked-entry-disabled-dark@2.png"));
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:first-child, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child {
|
|
border-image-source: -gtk-scaled(url("assets/linked-entry-firstchild-normal-dark.png"), url("assets/linked-entry-firstchild-normal-dark@2.png"));
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:first-child:focus-within, .linked:not(.vertical) > spinbutton:first-child:focus-within:not(.vertical), .linked:not(.vertical) > entry:first-child:focus-within {
|
|
border-image-source: -gtk-scaled(url("assets/linked-entry-firstchild-focus-dark.png"), url("assets/linked-entry-firstchild-focus-dark@2.png"));
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:first-child:disabled, .linked:not(.vertical) > spinbutton:first-child:disabled:not(.vertical), .linked:not(.vertical) > entry:first-child:disabled {
|
|
border-image-source: -gtk-scaled(url("assets/linked-entry-firstchild-disabled-dark.png"), url("assets/linked-entry-firstchild-disabled-dark@2.png"));
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:last-child, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child {
|
|
border-image-source: -gtk-scaled(url("assets/linked-entry-lastchild-normal-dark.png"), url("assets/linked-entry-lastchild-normal-dark@2.png"));
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:last-child:focus-within, .linked:not(.vertical) > spinbutton:last-child:focus-within:not(.vertical), .linked:not(.vertical) > entry:last-child:focus-within {
|
|
border-image-source: -gtk-scaled(url("assets/linked-entry-lastchild-focus-dark.png"), url("assets/linked-entry-lastchild-focus-dark@2.png"));
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:last-child:disabled, .linked:not(.vertical) > spinbutton:last-child:disabled:not(.vertical), .linked:not(.vertical) > entry:last-child:disabled {
|
|
border-image-source: -gtk-scaled(url("assets/linked-entry-lastchild-disabled-dark.png"), url("assets/linked-entry-lastchild-disabled-dark@2.png"));
|
|
}
|
|
|
|
spinbutton.vertical, spinbutton:not(.vertical),
|
|
entry {
|
|
min-height: 24px;
|
|
padding: 0 8px;
|
|
border-spacing: 4px;
|
|
border-radius: 4px;
|
|
caret-color: currentColor;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
background-clip: padding-box;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
border-image-width: 4px 4px 4px 4px;
|
|
border-image-slice: 4 4 4 4;
|
|
border-image-repeat: stretch;
|
|
border-image-source: -gtk-scaled(url("assets/entry-normal-dark.png"), url("assets/entry-normal-dark@2.png"));
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.vertical:hover, spinbutton:hover:not(.vertical), spinbutton.vertical:drop(active), spinbutton:drop(active):not(.vertical),
|
|
entry:hover,
|
|
entry:drop(active) {
|
|
border-image-source: -gtk-scaled(url("assets/entry-normal-dark.png"), url("assets/entry-normal-dark@2.png"));
|
|
}
|
|
|
|
spinbutton.vertical:focus-within, spinbutton:focus-within:not(.vertical),
|
|
entry:focus-within {
|
|
border-image-source: -gtk-scaled(url("assets/entry-focus-dark.png"), url("assets/entry-focus-dark@2.png"));
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
spinbutton.vertical:disabled, spinbutton:disabled:not(.vertical),
|
|
entry:disabled {
|
|
border-image-source: -gtk-scaled(url("assets/entry-disabled-dark.png"), url("assets/entry-disabled-dark@2.png"));
|
|
background-color: #303030;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
spinbutton.flat.vertical, spinbutton.flat:not(.vertical),
|
|
entry.flat {
|
|
min-height: 0;
|
|
padding: 2px;
|
|
border-radius: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
spinbutton.vertical image, spinbutton:not(.vertical) image,
|
|
entry image {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
spinbutton.vertical image:hover, spinbutton:not(.vertical) image:hover, spinbutton.vertical image:active, spinbutton:not(.vertical) image:active,
|
|
entry image:hover,
|
|
entry image:active {
|
|
color: white;
|
|
}
|
|
|
|
spinbutton.vertical image:disabled, spinbutton:not(.vertical) image:disabled,
|
|
entry image:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
spinbutton.vertical image.left, spinbutton:not(.vertical) image.left,
|
|
entry image.left {
|
|
margin-left: -2px;
|
|
margin-right: 6px;
|
|
}
|
|
|
|
spinbutton.vertical image.right, spinbutton:not(.vertical) image.right,
|
|
entry image.right {
|
|
margin-left: 6px;
|
|
margin-right: -2px;
|
|
}
|
|
|
|
spinbutton.vertical undershoot.left, spinbutton:not(.vertical) undershoot.left,
|
|
entry undershoot.left {
|
|
background-color: transparent;
|
|
background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.3) 50%);
|
|
padding-left: 1px;
|
|
background-size: 1px 12px;
|
|
background-repeat: repeat-y;
|
|
background-origin: content-box;
|
|
background-position: left top;
|
|
margin: 0 4px;
|
|
margin: 4px 0;
|
|
}
|
|
|
|
spinbutton.vertical undershoot.right, spinbutton:not(.vertical) undershoot.right,
|
|
entry undershoot.right {
|
|
background-color: transparent;
|
|
background-image: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.3) 50%);
|
|
padding-right: 1px;
|
|
background-size: 1px 12px;
|
|
background-repeat: repeat-y;
|
|
background-origin: content-box;
|
|
background-position: right top;
|
|
margin: 0 4px;
|
|
margin: 4px 0;
|
|
}
|
|
|
|
spinbutton.error.vertical, spinbutton.error:not(.vertical),
|
|
entry.error {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 0 0 1px transparent;
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-top-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
spinbutton.error.vertical:disabled, spinbutton.error:disabled:not(.vertical),
|
|
entry.error:disabled {
|
|
box-shadow: inset 0 0 0 1px transparent;
|
|
background-color: #303030;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
border-color: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
spinbutton.warning.vertical, spinbutton.warning:not(.vertical),
|
|
entry.warning {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 0 0 1px transparent;
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-top-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
spinbutton.warning.vertical:disabled, spinbutton.warning:disabled:not(.vertical),
|
|
entry.warning:disabled {
|
|
box-shadow: inset 0 0 0 1px transparent;
|
|
background-color: #303030;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
border-color: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
spinbutton.vertical > progress, spinbutton:not(.vertical) > progress,
|
|
spinbutton.vertical progress > trough > progress,
|
|
spinbutton:not(.vertical) progress > trough > progress,
|
|
entry > progress,
|
|
entry progress > trough > progress {
|
|
margin: 2px -8px;
|
|
border-bottom: 2px solid #3281ea;
|
|
background-color: transparent;
|
|
}
|
|
|
|
treeview entry.flat, treeview entry {
|
|
background-color: #2B2B2B;
|
|
}
|
|
|
|
treeview entry.flat, treeview entry.flat:focus, treeview entry, treeview entry:focus {
|
|
border-image: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
|
|
.entry-tag {
|
|
margin: 2px;
|
|
border-radius: 4px;
|
|
box-shadow: none;
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
color: white;
|
|
}
|
|
|
|
|
|
.entry-tag:hover {
|
|
background-image: image(alpha(currentColor, 0.08));
|
|
}
|
|
|
|
: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, #3281ea 0%, rgba(50, 129, 234, 0) 0%);
|
|
}
|
|
to {
|
|
background-image: radial-gradient(farthest-side, #3281ea 95%, rgba(50, 129, 234, 0));
|
|
}
|
|
}
|
|
|
|
toast button, menubutton.osd > button, infobar.error > revealer > box button, infobar.error:backdrop > revealer > box button, infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, infobar.action > revealer > box button, infobar.action:backdrop > revealer > box button, infobar.question > revealer > box button, infobar.question:backdrop > revealer > box button, popover.background.touch-selection button, popover.background.magnifier button, .selection-mode headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action), headerbar.selection-mode button:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
toast button:focus, menubutton.osd > button:focus, infobar.error > revealer > box button:focus, infobar.warning > revealer > box button:focus, infobar.action > revealer > box button:focus, infobar.question > revealer > box button:focus, popover.background.touch-selection button:focus, popover.background.magnifier button:focus, .selection-mode headerbar windowcontrols > button:focus:not(.suggested-action):not(.destructive-action), headerbar.selection-mode button:focus:not(.suggested-action):not(.destructive-action), toast button:hover, menubutton.osd > button:hover, infobar.error > revealer > box button:hover, infobar.warning > revealer > box button:hover, infobar.action > revealer > box button:hover, infobar.question > revealer > box button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover, .selection-mode headerbar windowcontrols > button:hover:not(.suggested-action):not(.destructive-action), headerbar.selection-mode button:hover:not(.suggested-action):not(.destructive-action), toast button:active, menubutton.osd > button:active, infobar.error > revealer > box button:active, infobar.warning > revealer > box button:active, infobar.action > revealer > box button:active, infobar.question > revealer > box button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, .selection-mode headerbar windowcontrols > button:active:not(.suggested-action):not(.destructive-action), headerbar.selection-mode button:active:not(.suggested-action):not(.destructive-action), toast button:checked, menubutton.osd > button:checked, infobar.error > revealer > box button:checked, infobar.warning > revealer > box button:checked, infobar.action > revealer > box button:checked, infobar.question > revealer > box button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, .selection-mode headerbar windowcontrols > button:checked:not(.suggested-action):not(.destructive-action), headerbar.selection-mode button:checked:not(.suggested-action):not(.destructive-action) {
|
|
color: white;
|
|
}
|
|
|
|
toast button:disabled, menubutton.osd > button:disabled, infobar.error > revealer > box button:disabled, infobar.warning > revealer > box button:disabled, infobar.action > revealer > box button:disabled, infobar.question > revealer > box button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, .selection-mode headerbar windowcontrols > button:disabled:not(.suggested-action):not(.destructive-action), headerbar.selection-mode button:disabled:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
toast button:checked:disabled, menubutton.osd > button:checked:disabled, infobar.error > revealer > box button:checked:disabled, infobar.warning > revealer > box button:checked:disabled, infobar.action > revealer > box button:checked:disabled, infobar.question > revealer > box button:checked:disabled, popover.background.touch-selection button:checked:disabled, popover.background.magnifier button:checked:disabled, .selection-mode headerbar windowcontrols > button:checked:disabled:not(.suggested-action):not(.destructive-action), headerbar.selection-mode button:checked:disabled:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
button {
|
|
min-height: 24px;
|
|
min-width: 16px;
|
|
padding: 2px 6px;
|
|
border-radius: 4px;
|
|
font-weight: 500;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
background-clip: padding-box;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
outline: none;
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-top-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
button:focus, button:checked:focus {
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px rgba(255, 255, 255, 0.7);
|
|
border-color: transparent;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
button:hover {
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
border-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
button:active {
|
|
animation: none;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 0 2px transparent;
|
|
}
|
|
|
|
button:disabled {
|
|
box-shadow: none;
|
|
background-color: #303030;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
border-color: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
button:checked {
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
background-clip: border-box;
|
|
background-color: #3281ea;
|
|
color: white;
|
|
border-color: #498fec;
|
|
border-bottom-color: #1b73e8;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
button:checked:hover {
|
|
box-shadow: inset 0 0 0 9999px transparent;
|
|
}
|
|
|
|
button:checked:disabled {
|
|
box-shadow: none;
|
|
background-color: rgba(50, 129, 234, 0.35);
|
|
border-color: rgba(50, 129, 234, 0.35);
|
|
background-clip: padding-box;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
button:drop(active) {
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
border-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button, calendar > header > button, check,
|
|
radio, scrollbar button, notebook > header > tabs > arrow, spinbutton.vertical > button, spinbutton:not(.vertical) > button,
|
|
list > row button.image-button:not(.flat), modelbutton.flat, tabbar tab button.image-button,
|
|
dnd tab button.image-button, splitbutton.flat > button,
|
|
splitbutton.flat > menubutton > button, menubutton.flat > button, filechooser #pathbarbox > stack > box > button, window.dialog.message.csd .dialog-action-area > button, .app-notification button, popover.background.menu button,
|
|
popover.background button.model,
|
|
pathbar > button, headerbar button:not(.suggested-action):not(.destructive-action), .toolbar button,
|
|
toolbar button, dropdown > .linked:not(.vertical) > button:not(:only-child),
|
|
combobox > .linked:not(.vertical) > button:not(:only-child), toast button, menubutton.osd > button, infobar.error > revealer > box button, infobar.error:backdrop > revealer > box button, infobar.warning > revealer > box button, infobar.warning:backdrop > revealer > box button, infobar.action > revealer > box button, infobar.action:backdrop > revealer > box button, infobar.question > revealer > box button, infobar.question:backdrop > revealer > box button, popover.background.touch-selection button, popover.background.magnifier button, .selection-mode headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action), headerbar.selection-mode button:not(.suggested-action):not(.destructive-action), button.flat {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
outline: none;
|
|
box-shadow: inset 0 0 0 9999px transparent;
|
|
background-color: transparent;
|
|
border: none;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button:focus, calendar > header > button:focus, check:focus,
|
|
radio:focus, scrollbar button:focus, notebook > header > tabs > arrow:focus, spinbutton.vertical > button:focus, spinbutton:not(.vertical) > button:focus,
|
|
list > row button.image-button:focus:not(.flat), modelbutton.flat:focus, tabbar tab button.image-button:focus,
|
|
dnd tab button.image-button:focus, splitbutton.flat > button:focus,
|
|
splitbutton.flat > menubutton > button:focus, menubutton.flat > button:focus, filechooser #pathbarbox > stack > box > button:focus, window.dialog.message.csd .dialog-action-area > button:focus, .app-notification button:focus, popover.background.menu button:focus,
|
|
popover.background button.model:focus,
|
|
pathbar > button:focus, headerbar button:focus:not(.suggested-action):not(.destructive-action), .toolbar button:focus,
|
|
toolbar button:focus, dropdown > .linked:not(.vertical) > button:focus:not(:only-child),
|
|
combobox > .linked:not(.vertical) > button:focus:not(:only-child), toast button:focus, menubutton.osd > button:focus, infobar.error > revealer > box button:focus, infobar.warning > revealer > box button:focus, infobar.action > revealer > box button:focus, infobar.question > revealer > box button:focus, popover.background.touch-selection button:focus, popover.background.magnifier button:focus, .selection-mode headerbar windowcontrols > button:focus:not(.suggested-action):not(.destructive-action), button.flat:focus, button.flat:checked:focus {
|
|
box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08);
|
|
color: white;
|
|
border-color: transparent;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button:hover, calendar > header > button:hover, check:hover,
|
|
radio:hover, scrollbar button:hover, notebook > header > tabs > arrow:hover, spinbutton.vertical > button:hover, spinbutton:not(.vertical) > button:hover,
|
|
list > row button.image-button:hover:not(.flat), modelbutton.flat:hover, tabbar tab button.image-button:hover,
|
|
dnd tab button.image-button:hover, splitbutton.flat > button:hover,
|
|
splitbutton.flat > menubutton > button:hover, menubutton.flat > button:hover, filechooser #pathbarbox > stack > box > button:hover, window.dialog.message.csd .dialog-action-area > button:hover, .app-notification button:hover, popover.background.menu button:hover,
|
|
popover.background button.model:hover,
|
|
pathbar > button:hover, headerbar button:hover:not(.suggested-action):not(.destructive-action), .toolbar button:hover,
|
|
toolbar button:hover, dropdown > .linked:not(.vertical) > button:hover:not(:only-child),
|
|
combobox > .linked:not(.vertical) > button:hover:not(:only-child), toast button:hover, menubutton.osd > button:hover, infobar.error > revealer > box button:hover, infobar.warning > revealer > box button:hover, infobar.action > revealer > box button:hover, infobar.question > revealer > box button:hover, popover.background.touch-selection button:hover, popover.background.magnifier button:hover, .selection-mode headerbar windowcontrols > button:hover:not(.suggested-action):not(.destructive-action), button.flat:hover {
|
|
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08);
|
|
color: white;
|
|
border-color: transparent;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button:active, calendar > header > button:active, check:active,
|
|
radio:active, scrollbar button:active, notebook > header > tabs > arrow:active, spinbutton.vertical > button:active, spinbutton:not(.vertical) > button:active,
|
|
list > row button.image-button:active:not(.flat), modelbutton.flat:active, tabbar tab button.image-button:active,
|
|
dnd tab button.image-button:active, splitbutton.flat > button:active,
|
|
splitbutton.flat > menubutton > button:active, menubutton.flat > button:active, filechooser #pathbarbox > stack > box > button:active, window.dialog.message.csd .dialog-action-area > button:active, .app-notification button:active, popover.background.menu button:active,
|
|
popover.background button.model:active,
|
|
pathbar > button:active, headerbar button:active:not(.suggested-action):not(.destructive-action), .toolbar button:active,
|
|
toolbar button:active, dropdown > .linked:not(.vertical) > button:active:not(:only-child),
|
|
combobox > .linked:not(.vertical) > button:active:not(:only-child), toast button:active, menubutton.osd > button:active, infobar.error > revealer > box button:active, infobar.warning > revealer > box button:active, infobar.action > revealer > box button:active, infobar.question > revealer > box button:active, popover.background.touch-selection button:active, popover.background.magnifier button:active, .selection-mode headerbar windowcontrols > button:active:not(.suggested-action):not(.destructive-action), button.flat:active {
|
|
animation: none;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.16);
|
|
color: white;
|
|
border-color: transparent;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button:disabled, calendar > header > button:disabled, check:disabled,
|
|
radio:disabled, scrollbar button:disabled, notebook > header > tabs > arrow:disabled, spinbutton.vertical > button:disabled, spinbutton:not(.vertical) > button:disabled,
|
|
list > row button.image-button:disabled:not(.flat), modelbutton.flat:disabled, tabbar tab button.image-button:disabled,
|
|
dnd tab button.image-button:disabled, splitbutton.flat > button:disabled,
|
|
splitbutton.flat > menubutton > button:disabled, menubutton.flat > button:disabled, filechooser #pathbarbox > stack > box > button:disabled, window.dialog.message.csd .dialog-action-area > button:disabled, .app-notification button:disabled, popover.background.menu button:disabled,
|
|
popover.background button.model:disabled,
|
|
pathbar > button:disabled, headerbar button:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:disabled,
|
|
toolbar button:disabled, dropdown > .linked:not(.vertical) > button:disabled:not(:only-child),
|
|
combobox > .linked:not(.vertical) > button:disabled:not(:only-child), toast button:disabled, menubutton.osd > button:disabled, infobar.error > revealer > box button:disabled, infobar.warning > revealer > box button:disabled, infobar.action > revealer > box button:disabled, infobar.question > revealer > box button:disabled, popover.background.touch-selection button:disabled, popover.background.magnifier button:disabled, .selection-mode headerbar windowcontrols > button:disabled:not(.suggested-action):not(.destructive-action), button.flat:disabled {
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
tabbar tab button.image-button:checked,
|
|
dnd tab button.image-button:checked, splitbutton.flat > button:checked,
|
|
splitbutton.flat > menubutton > button:checked, menubutton.flat > button:checked, filechooser #pathbarbox > stack > box > button:checked, window.dialog.message.csd .dialog-action-area > button:checked, .app-notification button:checked, popover.background.menu button:checked,
|
|
popover.background button.model:checked,
|
|
pathbar > button:checked, headerbar button:checked:not(.suggested-action):not(.destructive-action), .toolbar button:checked,
|
|
toolbar button:checked, dropdown > .linked:not(.vertical) > button:checked:not(:only-child),
|
|
combobox > .linked:not(.vertical) > button:checked:not(:only-child), toast button:checked, menubutton.osd > button:checked, infobar.error > revealer > box button:checked, infobar.warning > revealer > box button:checked, infobar.action > revealer > box button:checked, infobar.question > revealer > box button:checked, popover.background.touch-selection button:checked, popover.background.magnifier button:checked, .selection-mode headerbar windowcontrols > button:checked:not(.suggested-action):not(.destructive-action), button.flat:checked, button.flat:checked:hover {
|
|
background-color: alpha(currentColor, 0.1);
|
|
color: white;
|
|
}
|
|
|
|
tabbar tab button.image-button:checked:disabled,
|
|
dnd tab button.image-button:checked:disabled, splitbutton.flat > button:checked:disabled,
|
|
splitbutton.flat > menubutton > button:checked:disabled, menubutton.flat > button:checked:disabled, filechooser #pathbarbox > stack > box > button:checked:disabled, window.dialog.message.csd .dialog-action-area > button:checked:disabled, .app-notification button:checked:disabled, popover.background.menu button:checked:disabled,
|
|
popover.background button.model:checked:disabled,
|
|
pathbar > button:checked:disabled, headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action), .toolbar button:checked:disabled,
|
|
toolbar button:checked:disabled, dropdown > .linked:not(.vertical) > button:checked:disabled:not(:only-child),
|
|
combobox > .linked:not(.vertical) > button:checked:disabled:not(:only-child), toast button:checked:disabled, menubutton.osd > button:checked:disabled, infobar.error > revealer > box button:checked:disabled, infobar.warning > revealer > box button:checked:disabled, infobar.action > revealer > box button:checked:disabled, infobar.question > revealer > box button:checked:disabled, popover.background.touch-selection button:checked:disabled, popover.background.magnifier button:checked:disabled, button.flat:checked:disabled {
|
|
background-color: alpha(currentColor, 0.1);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
button.text-button {
|
|
min-width: 32px;
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
button.text-button.flat {
|
|
min-width: 48px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
button.image-button {
|
|
min-width: 24px;
|
|
padding: 2px;
|
|
}
|
|
|
|
button.text-button.image-button {
|
|
min-width: 24px;
|
|
padding: 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
button.text-button.image-button label:first-child {
|
|
margin-left: 14px;
|
|
}
|
|
|
|
button.text-button.image-button label:last-child {
|
|
margin-right: 14px;
|
|
}
|
|
|
|
button.text-button.image-button.flat label:first-child {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
button.text-button.image-button.flat label:last-child {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
button.text-button.image-button image:not(:only-child) {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.linked > button:not(:only-child):focus {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
outline: none;
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-top-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.linked > button:not(:only-child):checked:focus {
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
background-clip: border-box;
|
|
background-color: #3281ea;
|
|
color: white;
|
|
border-color: #498fec;
|
|
border-bottom-color: #1b73e8;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.linked:not(.vertical) > button.flat:not(:only-child), .linked.vertical > button.flat:not(:only-child) {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.linked:not(.vertical) > button.flat:not(:only-child).image-button:not(.text-button), .linked.vertical > button.flat:not(:only-child).image-button:not(.text-button) {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.linked:not(.vertical) > button.flat:focus, .linked.vertical > button.flat:focus {
|
|
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08);
|
|
}
|
|
|
|
button.osd {
|
|
padding: 6px 10px;
|
|
}
|
|
|
|
button.osd.image-button {
|
|
padding: 6px;
|
|
}
|
|
|
|
button.osd:disabled {
|
|
opacity: 0;
|
|
}
|
|
|
|
button.suggested-action {
|
|
background-color: #3281ea;
|
|
color: white;
|
|
box-shadow: none;
|
|
border-color: #3281ea;
|
|
background-clip: border-box;
|
|
}
|
|
|
|
button.suggested-action:disabled {
|
|
box-shadow: none;
|
|
background-color: #303030;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
border-color: rgba(255, 255, 255, 0.04);
|
|
border-color: transparent;
|
|
}
|
|
|
|
button.suggested-action:hover {
|
|
box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(50, 129, 234, 0.2), 0 4px 3px 0 rgba(50, 129, 234, 0.14), 0 1px 6px 0 rgba(50, 129, 234, 0.12);
|
|
}
|
|
|
|
button.suggested-action:checked {
|
|
background-clip: border-box;
|
|
background-color: #70a7f0;
|
|
border-color: #70a7f0;
|
|
}
|
|
|
|
button.suggested-action:checked:hover {
|
|
box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(50, 129, 234, 0.3), 0 2px 3px -1px rgba(50, 129, 234, 0.24), 0 2px 5px 0 rgba(50, 129, 234, 0.12);
|
|
}
|
|
|
|
button.suggested-action:focus {
|
|
box-shadow: 0 0 0 2px rgba(50, 129, 234, 0.35);
|
|
}
|
|
|
|
button.suggested-action.flat {
|
|
background-color: transparent;
|
|
color: #3281ea;
|
|
}
|
|
|
|
button.suggested-action.flat:disabled {
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
button.suggested-action.flat:checked {
|
|
background-color: rgba(50, 129, 234, 0.3);
|
|
}
|
|
|
|
button.destructive-action {
|
|
background-color: #F28B82;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
box-shadow: none;
|
|
border-color: #F28B82;
|
|
background-clip: border-box;
|
|
}
|
|
|
|
button.destructive-action:disabled {
|
|
box-shadow: none;
|
|
background-color: #303030;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
border-color: rgba(255, 255, 255, 0.04);
|
|
border-color: transparent;
|
|
}
|
|
|
|
button.destructive-action:hover {
|
|
box-shadow: inset 0 0 0 9999px transparent, 0 2px 2.4px -1px rgba(242, 139, 130, 0.2), 0 4px 3px 0 rgba(242, 139, 130, 0.14), 0 1px 6px 0 rgba(242, 139, 130, 0.12);
|
|
}
|
|
|
|
button.destructive-action:checked {
|
|
background-clip: border-box;
|
|
background-color: rgba(182, 105, 98, 0.961);
|
|
border-color: rgba(182, 105, 98, 0.961);
|
|
}
|
|
|
|
button.destructive-action:checked:hover {
|
|
box-shadow: inset 0 0 0 9999px transparent, 0 3px 3px -3px rgba(242, 139, 130, 0.3), 0 2px 3px -1px rgba(242, 139, 130, 0.24), 0 2px 5px 0 rgba(242, 139, 130, 0.12);
|
|
}
|
|
|
|
button.destructive-action:focus {
|
|
box-shadow: 0 0 0 2px rgba(242, 139, 130, 0.35);
|
|
}
|
|
|
|
button.destructive-action.flat {
|
|
background-color: transparent;
|
|
color: #F28B82;
|
|
}
|
|
|
|
button.destructive-action.flat:disabled {
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
button.destructive-action.flat:checked {
|
|
background-color: rgba(242, 139, 130, 0.3);
|
|
}
|
|
|
|
stackswitcher > button > label {
|
|
margin: 0 -6px;
|
|
padding: 0 6px;
|
|
}
|
|
|
|
stackswitcher > button > image {
|
|
margin: -3px -6px;
|
|
padding: 3px 6px;
|
|
}
|
|
|
|
stackswitcher > button.needs-attention:checked > label,
|
|
stackswitcher > button.needs-attention:checked > image {
|
|
animation: none;
|
|
background-image: none;
|
|
}
|
|
|
|
button.font > box, button.file > box {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
button.font > box > box > label, button.file > box > box > label {
|
|
font-weight: bold;
|
|
}
|
|
|
|
menubutton.circular > button, filechooser #pathbarbox > stack > box > button, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action), button.close, button.circular {
|
|
border-radius: 9999px;
|
|
}
|
|
|
|
menubutton.circular > button label, filechooser #pathbarbox > stack > box > button label, headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action) label, button.close label, button.circular label {
|
|
padding: 0;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row button.sidebar-button, popover.menu box.circular-buttons button.circular.image-button.model, spinbutton.vertical > button, spinbutton:not(.vertical) > button {
|
|
min-height: 20px;
|
|
min-width: 20px;
|
|
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) > spinbutton.vertical, .linked:not(.vertical) > spinbutton:not(.vertical), .linked:not(.vertical) > entry {
|
|
border-radius: 0;
|
|
border-right-width: 0;
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:first-child, .linked:not(.vertical) > spinbutton:first-child:not(.vertical), .linked:not(.vertical) > entry:first-child {
|
|
border-top-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:last-child, .linked:not(.vertical) > spinbutton:last-child:not(.vertical), .linked:not(.vertical) > entry:last-child {
|
|
border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
.linked:not(.vertical) > spinbutton.vertical:only-child, .linked:not(.vertical) > spinbutton:only-child:not(.vertical), .linked:not(.vertical) > entry:only-child {
|
|
border-radius: 4px;
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
.linked:not(.vertical) > button {
|
|
border-radius: 0;
|
|
border-left-width: 0;
|
|
border-right-width: 0;
|
|
}
|
|
|
|
.linked:not(.vertical) > button:first-child {
|
|
border-top-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
border-left-width: 1px;
|
|
}
|
|
|
|
.linked:not(.vertical) > button:last-child {
|
|
border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
.linked:not(.vertical) > button:only-child {
|
|
border-radius: 4px;
|
|
border-left-width: 1px;
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
.linked.vertical > button {
|
|
border-radius: 0;
|
|
border-top-width: 0;
|
|
border-bottom-width: 0;
|
|
}
|
|
|
|
.linked.vertical > button:first-child {
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
border-top-width: 1px;
|
|
}
|
|
|
|
.linked.vertical > button:last-child {
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
.linked.vertical > button:only-child {
|
|
border-radius: 4px;
|
|
border-top-width: 1px;
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry.error + entry,
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry + entry.error {
|
|
border-left-color: #F28B82;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry.warning + entry,
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry + entry.warning {
|
|
border-left-color: #FDD633;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry.error + entry.warning,
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry.warning + entry.error {
|
|
border-left-color: #f8b15b;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry:not(:only-child) + button:not(.combo) {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry:focus-within + entry {
|
|
border-left-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry:focus-within:not(:only-child) + button:not(.combo) {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry:hover + entry {
|
|
border-left-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry:hover:not(:only-child) + button:not(.combo) {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry:drop(active) + entry {
|
|
border-left-color: #FF7043;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry:drop(active):not(:only-child) + button:not(.combo) {
|
|
border-left: 1px solid #FF7043;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry.warning:focus-within + entry {
|
|
border-left-color: #FDD633;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry.warning:focus-within:not(:only-child) + button:not(.combo) {
|
|
border-left: 1px solid #FDD633;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry.error:focus-within + entry {
|
|
border-left-color: #F28B82;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > entry.error:focus-within:not(:only-child) + button:not(.combo) {
|
|
border-left: 1px solid #F28B82;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > spinbutton + spinbutton,
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > spinbutton + button {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > spinbutton:focus-within + spinbutton,
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > spinbutton:focus-within + button {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > spinbutton + spinbutton:focus {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > spinbutton + button:checked {
|
|
border-left: 1px solid #3281ea;
|
|
}
|
|
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > button:active + entry,
|
|
.linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar) > button:checked + entry {
|
|
border-left-color: #3281ea;
|
|
}
|
|
|
|
.linked:not(.vertical) > button + button {
|
|
margin: 0;
|
|
}
|
|
|
|
.linked:not(.vertical) headerbar:not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry:not(:only-child) + button:not(.combo), .titlebar .linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry:not(:only-child) + button:not(.combo) {
|
|
border-left: none;
|
|
}
|
|
|
|
.linked:not(.vertical) headerbar:not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry:focus-within:not(:only-child) + button:not(.combo), .titlebar .linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry:focus-within:not(:only-child) + button:not(.combo) {
|
|
border-left: none;
|
|
}
|
|
|
|
.linked:not(.vertical) headerbar:not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry:drop(active):not(:only-child) + button:not(.combo), .titlebar .linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry:drop(active):not(:only-child) + button:not(.combo) {
|
|
border-left: none;
|
|
}
|
|
|
|
.linked:not(.vertical) headerbar:not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry.warning:focus-within:not(:only-child) + button:not(.combo), .titlebar .linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry.warning:focus-within:not(:only-child) + button:not(.combo) {
|
|
border-left: none;
|
|
}
|
|
|
|
.linked:not(.vertical) headerbar:not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry.error:focus-within:not(:only-child) + button:not(.combo), .titlebar .linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > entry.error:focus-within:not(:only-child) + button:not(.combo) {
|
|
border-left: none;
|
|
}
|
|
|
|
.linked:not(.vertical) headerbar:not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > button:active + entry,
|
|
.linked:not(.vertical) headerbar:not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > button:checked + entry, .titlebar .linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > button:active + entry,
|
|
.titlebar .linked:not(.vertical):not(.path-bar):not(.nautilus-path-bar):not(.stack-switcher) > button:checked + entry {
|
|
border-left-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.linked.vertical > entry.error + entry,
|
|
.linked.vertical > entry + entry.error {
|
|
border-top-color: #F28B82;
|
|
}
|
|
|
|
.linked.vertical > entry.warning + entry,
|
|
.linked.vertical > entry + entry.warning {
|
|
border-top-color: #FDD633;
|
|
}
|
|
|
|
.linked.vertical > entry.error + entry.warning,
|
|
.linked.vertical > entry.warning + entry.error {
|
|
border-top-color: #f8b15b;
|
|
}
|
|
|
|
.linked.vertical > entry:not(:only-child) + button:not(.combo) {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.linked.vertical > entry:focus-within + entry {
|
|
border-top-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked.vertical > entry:focus-within:not(:only-child) + button:not(.combo) {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked.vertical > entry:hover + entry {
|
|
border-top-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked.vertical > entry:hover:not(:only-child) + button:not(.combo) {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked.vertical > entry:drop(active) + entry {
|
|
border-top-color: #FF7043;
|
|
}
|
|
|
|
.linked.vertical > entry:drop(active):not(:only-child) + button:not(.combo) {
|
|
border-top: 1px solid #FF7043;
|
|
}
|
|
|
|
.linked.vertical > entry.warning:focus-within + entry {
|
|
border-top-color: #FDD633;
|
|
}
|
|
|
|
.linked.vertical > entry.warning:focus-within:not(:only-child) + button:not(.combo) {
|
|
border-top: 1px solid #FDD633;
|
|
}
|
|
|
|
.linked.vertical > entry.error:focus-within + entry {
|
|
border-top-color: #F28B82;
|
|
}
|
|
|
|
.linked.vertical > entry.error:focus-within:not(:only-child) + button:not(.combo) {
|
|
border-top: 1px solid #F28B82;
|
|
}
|
|
|
|
.linked.vertical > spinbutton + spinbutton,
|
|
.linked.vertical > spinbutton + button {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.linked.vertical > spinbutton:focus-within + spinbutton,
|
|
.linked.vertical > spinbutton:focus-within + button {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked.vertical > spinbutton + spinbutton:focus {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.linked.vertical > spinbutton + button:checked {
|
|
border-top: 1px solid #3281ea;
|
|
}
|
|
|
|
.linked.vertical > button:active + entry,
|
|
.linked.vertical > button:checked + entry {
|
|
border-top-color: #3281ea;
|
|
}
|
|
|
|
modelbutton.flat {
|
|
min-height: 28px;
|
|
padding: 0 6px;
|
|
border-radius: 4px;
|
|
color: white;
|
|
}
|
|
|
|
modelbutton.flat arrow.left {
|
|
-gtk-icon-source: -gtk-icontheme("go-previous-symbolic");
|
|
}
|
|
|
|
modelbutton.flat arrow.right {
|
|
-gtk-icon-source: -gtk-icontheme("go-next-symbolic");
|
|
}
|
|
|
|
button.color {
|
|
min-height: 20px;
|
|
min-width: 20px;
|
|
padding: 4px;
|
|
}
|
|
|
|
|
|
list > row button.image-button:not(.flat).suggested-action {
|
|
background-color: #3281ea;
|
|
color: white;
|
|
}
|
|
|
|
|
|
list > row button.image-button:not(.flat).destructive-action {
|
|
background-color: #F28B82;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
/*********
|
|
* Links *
|
|
*********/
|
|
link {
|
|
color: #3281ea;
|
|
}
|
|
|
|
link:visited {
|
|
color: #CE93D8;
|
|
}
|
|
|
|
button.link:link, button.link:link:focus, button.link:link:hover, button.link:link:active {
|
|
color: #3281ea;
|
|
}
|
|
|
|
button.link:visited, button.link:visited:focus, button.link:visited:hover, button.link:visited:active {
|
|
color: #CE93D8;
|
|
}
|
|
|
|
button.link > label {
|
|
text-decoration-line: underline;
|
|
}
|
|
|
|
/*****************
|
|
* GtkSpinButton *
|
|
*****************/
|
|
spinbutton:not(.vertical) {
|
|
padding: 0;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
spinbutton:not(.vertical) > text {
|
|
min-width: 20px;
|
|
margin: 0;
|
|
padding-left: 8px;
|
|
border: none;
|
|
border-image: none;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
spinbutton:not(.vertical) > button {
|
|
border: solid 4px transparent;
|
|
}
|
|
|
|
spinbutton:not(.vertical) > button:focus:not(:hover):not(:active):not(:disabled) {
|
|
box-shadow: inset 0 0 0 9999px transparent;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
spinbutton:not(.vertical) > button.up:dir(ltr), spinbutton:not(.vertical) > button.down:dir(rtl) {
|
|
margin-left: -2px;
|
|
}
|
|
|
|
spinbutton:not(.vertical) > button.up:dir(rtl), spinbutton:not(.vertical) > button.down:dir(ltr) {
|
|
margin-right: -2px;
|
|
}
|
|
|
|
spinbutton.vertical {
|
|
padding: 0;
|
|
}
|
|
|
|
spinbutton.vertical:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
spinbutton.vertical > text {
|
|
margin: 0;
|
|
border: none;
|
|
border-image: none;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
spinbutton.vertical > button {
|
|
padding: 0;
|
|
border: solid 4px transparent;
|
|
}
|
|
|
|
spinbutton.vertical > button:focus:not(:hover):not(:active) {
|
|
box-shadow: inset 0 0 0 9999px transparent;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
spinbutton.vertical > button.up {
|
|
margin: 0 2px;
|
|
}
|
|
|
|
spinbutton.vertical > button.down {
|
|
margin: 0 2px;
|
|
}
|
|
|
|
list > row spinbutton:not(.vertical) > button {
|
|
margin: 4px;
|
|
}
|
|
|
|
list > row spinbutton:not(.vertical) > button.up:dir(ltr), list > row spinbutton:not(.vertical) > button.down:dir(rtl) {
|
|
margin-left: 2px;
|
|
}
|
|
|
|
list > row spinbutton:not(.vertical) > button.up:dir(rtl), list > row spinbutton:not(.vertical) > button.down:dir(ltr) {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
/**************
|
|
* ComboBoxes *
|
|
**************/
|
|
dropdown > popover.menu.background > contents {
|
|
padding: 0;
|
|
}
|
|
|
|
dropdown > button > box {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
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: 6px;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
dropdown popover,
|
|
combobox popover {
|
|
margin-top: 2px;
|
|
padding: 0;
|
|
}
|
|
|
|
dropdown popover .dropdown-searchbar,
|
|
combobox popover .dropdown-searchbar {
|
|
padding: 4px;
|
|
}
|
|
|
|
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: 0;
|
|
border-bottom-left-radius: 0;
|
|
}
|
|
|
|
dropdown.linked button:nth-child(2):dir(rtl),
|
|
combobox.linked button:nth-child(2):dir(rtl) {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
dropdown > .linked:not(.vertical) > entry:not(:only-child),
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child) {
|
|
border-radius: 4px;
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
dropdown > .linked:not(.vertical) > entry:not(:only-child), dropdown > .linked:not(.vertical) > entry:not(:only-child):first-child, dropdown > .linked:not(.vertical) > entry:not(:only-child):last-child,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child),
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):first-child,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):last-child {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border-image 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
border-image-width: 4px 4px 4px 4px;
|
|
border-image-slice: 4 4 4 4;
|
|
border-image-repeat: stretch;
|
|
border-image-source: -gtk-scaled(url("assets/entry-normal-dark.png"), url("assets/entry-normal-dark@2.png"));
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
dropdown > .linked:not(.vertical) > entry:not(:only-child):focus-within, dropdown > .linked:not(.vertical) > entry:not(:only-child):first-child:focus-within, dropdown > .linked:not(.vertical) > entry:not(:only-child):last-child:focus-within,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):focus-within,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):first-child:focus-within,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):last-child:focus-within {
|
|
border-image-source: -gtk-scaled(url("assets/entry-focus-dark.png"), url("assets/entry-focus-dark@2.png"));
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
dropdown > .linked:not(.vertical) > entry:not(:only-child):disabled, dropdown > .linked:not(.vertical) > entry:not(:only-child):first-child:disabled, dropdown > .linked:not(.vertical) > entry:not(:only-child):last-child:disabled,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):disabled,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):first-child:disabled,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):last-child:disabled {
|
|
border-image-source: -gtk-scaled(url("assets/entry-disabled-dark.png"), url("assets/entry-disabled-dark@2.png"));
|
|
background-color: #303030;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
dropdown > .linked:not(.vertical) > entry:not(:only-child):first-child,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):first-child {
|
|
margin-right: -28px;
|
|
padding-right: 28px;
|
|
}
|
|
|
|
dropdown > .linked:not(.vertical) > entry:not(:only-child):last-child,
|
|
combobox > .linked:not(.vertical) > entry:not(:only-child):last-child {
|
|
margin-left: -28px;
|
|
padding-left: 28px;
|
|
}
|
|
|
|
dropdown > .linked:not(.vertical) > button:not(:only-child),
|
|
combobox > .linked:not(.vertical) > button:not(:only-child) {
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
margin: 4px;
|
|
padding: 2px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox > box > button.combo {
|
|
border-radius: 0;
|
|
border-left-width: 0;
|
|
border-right-width: 0;
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox > box > button.combo:focus {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
outline: none;
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-top-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox > box > button.combo:checked:focus {
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
background-clip: border-box;
|
|
background-color: #3281ea;
|
|
color: white;
|
|
border-color: #498fec;
|
|
border-bottom-color: #1b73e8;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox:first-child > box > button.combo {
|
|
border-top-left-radius: 4px;
|
|
border-bottom-left-radius: 4px;
|
|
border-left-width: 1px;
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox:last-child > box > button.combo {
|
|
border-top-right-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
.linked:not(.vertical) > combobox:only-child > box > button.combo {
|
|
border-radius: 4px;
|
|
border-left-width: 1px;
|
|
border-right-width: 1px;
|
|
}
|
|
|
|
.linked.vertical > combobox > box > button.combo {
|
|
border-radius: 0;
|
|
border-top-width: 0;
|
|
border-bottom-width: 0;
|
|
}
|
|
|
|
.linked.vertical > combobox:first-child > box > button.combo {
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
border-top-width: 1px;
|
|
}
|
|
|
|
.linked.vertical > combobox:last-child > box > button.combo {
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
.linked.vertical > combobox:only-child > box > button.combo {
|
|
border-radius: 4px;
|
|
border-top-width: 1px;
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
/************
|
|
* Toolbars *
|
|
************/
|
|
.toolbar,
|
|
toolbar {
|
|
padding: 2px 4px;
|
|
background-color: #333333;
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
.osd .toolbar, .osd toolbar {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.app-notification, .toolbar.osd,
|
|
toolbar.osd {
|
|
transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
padding: 4px;
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1);
|
|
background-color: #3C3C3C;
|
|
border: none;
|
|
}
|
|
|
|
.app-notification:backdrop, .toolbar.osd:backdrop,
|
|
toolbar.osd:backdrop {
|
|
box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), 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;
|
|
}
|
|
|
|
.bottom.app-notification, .toolbar.osd.bottom,
|
|
toolbar.osd.bottom {
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4));
|
|
}
|
|
|
|
.toolbar.horizontal > separator,
|
|
toolbar.horizontal > separator {
|
|
margin: 2px;
|
|
}
|
|
|
|
.toolbar.vertical > separator,
|
|
toolbar.vertical > separator {
|
|
margin: 2px;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) scale,
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) entry,
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) spinbutton,
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) button,
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) scale,
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) entry,
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) spinbutton,
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) button {
|
|
margin: 2px;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked entry:not(:first-child),
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked spinbutton:not(:first-child),
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked button:not(:first-child),
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked entry:not(:first-child),
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked spinbutton:not(:first-child),
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked button:not(:first-child) {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked entry:not(:last-child),
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked spinbutton:not(:last-child),
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked button:not(:last-child),
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked entry:not(:last-child),
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked spinbutton:not(:last-child),
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) .linked button:not(:last-child) {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) spinbutton entry,
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) spinbutton button,
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) spinbutton entry,
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) spinbutton button {
|
|
margin: 0;
|
|
}
|
|
|
|
.toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) switch,
|
|
toolbar:not(.inline-toolbar):not(.osd):not(.primary-toolbar) switch {
|
|
margin: 6px 2px;
|
|
}
|
|
|
|
.toolbar button {
|
|
margin: 1px;
|
|
}
|
|
|
|
searchbar > revealer > box {
|
|
padding: 4px;
|
|
border-spacing: 4px;
|
|
border-style: solid;
|
|
border-width: 0 0 1px;
|
|
border-color: rgba(255, 255, 255, 0.12);
|
|
background-color: #333333;
|
|
background-clip: border-box;
|
|
box-shadow: none;
|
|
}
|
|
|
|
searchbar > revealer > box entry {
|
|
margin: 0;
|
|
}
|
|
|
|
/***************
|
|
* Header bars *
|
|
***************/
|
|
headerbar button:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
border-radius: 4px;
|
|
padding: 1px 6px;
|
|
}
|
|
|
|
headerbar .linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
headerbar button:focus:not(.suggested-action):not(.destructive-action), headerbar button:hover:not(.suggested-action):not(.destructive-action), headerbar button:active:not(.suggested-action):not(.destructive-action), headerbar button:checked:not(.suggested-action):not(.destructive-action) {
|
|
color: white;
|
|
}
|
|
|
|
headerbar button:disabled:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar button:checked:disabled:not(.suggested-action):not(.destructive-action) {
|
|
background-color: transparent;
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar button:backdrop:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar button:backdrop:focus:not(.suggested-action):not(.destructive-action), headerbar button:backdrop:hover:not(.suggested-action):not(.destructive-action), headerbar button:backdrop:active:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar button:backdrop:disabled:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar button:backdrop:checked:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar button:backdrop:checked:disabled:not(.suggested-action):not(.destructive-action) {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar entry {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
headerbar entry:hover {
|
|
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
headerbar entry:focus {
|
|
box-shadow: inset 0 0 0 2px #a6c8f6;
|
|
}
|
|
|
|
headerbar entry:disabled {
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar entry image {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar entry image:hover, headerbar entry image:active {
|
|
color: white;
|
|
}
|
|
|
|
headerbar entry image:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 -1px rgba(255, 255, 255, 0.12);
|
|
color: white;
|
|
min-height: 36px;
|
|
background-color: rgba(32, 32, 32, 0.98);
|
|
}
|
|
|
|
headerbar:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar:backdrop {
|
|
background-color: #2C2C2C;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar:backdrop:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar .title {
|
|
padding: 0 8px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
headerbar .subtitle {
|
|
padding: 0 8px;
|
|
font-size: smaller;
|
|
}
|
|
|
|
headerbar .subtitle,
|
|
headerbar .dim-label,
|
|
headerbar row.expander:not(:checked) image.expander-row-arrow,
|
|
row.expander:not(:checked) headerbar image.expander-row-arrow,
|
|
headerbar row label.subtitle,
|
|
row headerbar label.subtitle {
|
|
transition: color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar .subtitle:backdrop,
|
|
headerbar .dim-label:backdrop,
|
|
headerbar row.expander:not(:checked) image.expander-row-arrow:backdrop,
|
|
row.expander:not(:checked) headerbar image.expander-row-arrow:backdrop {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar .titlebar {
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
headerbar > windowhandle > box {
|
|
padding: 0 4px;
|
|
}
|
|
|
|
headerbar > windowhandle > box,
|
|
headerbar > windowhandle > box > box.start,
|
|
headerbar > windowhandle > box > box.end {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
headerbar entry,
|
|
headerbar spinbutton,
|
|
headerbar button {
|
|
margin-top: 4px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
headerbar menubutton {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
headerbar separator:not(.sidebar) {
|
|
margin-top: 9px;
|
|
margin-bottom: 9px;
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
headerbar switch {
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar switch:hover {
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar switch checked {
|
|
box-shadow: none;
|
|
}
|
|
|
|
headerbar switch slider {
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
headerbar spinbutton > button {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
headerbar .entry-tag {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
headerbar.windowhandle > viewswitcher > box > button:not(.suggested-action):not(.destructive-action) {
|
|
border-radius: 0;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
headerbar.windowhandle > button.popup label, headerbar.windowhandle > button.popup image {
|
|
min-height: 0;
|
|
}
|
|
|
|
headerbar headerbar + separator {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
headerbar entry {
|
|
margin-left: 3px;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
headerbar .linked:not(.vertical) > entry:not(:only-child) {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
headerbar button.suggested-action, headerbar button.destructive-action {
|
|
border: none;
|
|
}
|
|
|
|
headerbar button.suggested-action:disabled, headerbar button.destructive-action:disabled {
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
headerbar stackswitcher {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
headerbar stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button {
|
|
border-radius: 4px;
|
|
margin: 0 0;
|
|
}
|
|
|
|
headerbar.selection-mode {
|
|
transition: background-color 0.1ms 225ms, color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: none;
|
|
background-color: #3281ea;
|
|
color: white;
|
|
}
|
|
|
|
headerbar.selection-mode:backdrop {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
headerbar.selection-mode .subtitle:link {
|
|
color: white;
|
|
}
|
|
|
|
headerbar.selection-mode .selection-menu {
|
|
padding-left: 16px;
|
|
padding-right: 16px;
|
|
}
|
|
|
|
headerbar.selection-mode .selection-menu arrow {
|
|
-GtkArrow-arrow-scaling: 1;
|
|
}
|
|
|
|
headerbar.selection-mode .selection-menu .arrow {
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
}
|
|
|
|
headerbar .selection-mode {
|
|
box-shadow: none;
|
|
background-color: #3281ea;
|
|
}
|
|
|
|
.tiled headerbar, .tiled-top headerbar, .tiled-right headerbar, .tiled-bottom headerbar, .tiled-left headerbar, .maximized headerbar, .fullscreen headerbar {
|
|
border-radius: 0;
|
|
}
|
|
|
|
headerbar windowcontrols {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
headerbar windowcontrols:not(.empty).start:dir(ltr), headerbar windowcontrols:not(.empty).end:dir(rtl) {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
headerbar windowcontrols:not(.empty).start:dir(rtl), headerbar windowcontrols:not(.empty).end:dir(ltr) {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action) {
|
|
min-height: 22px;
|
|
min-width: 22px;
|
|
padding: 0;
|
|
margin-left: 3px;
|
|
margin-right: 3px;
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action) > image {
|
|
background: none;
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:hover {
|
|
background-color: #E57373;
|
|
color: white;
|
|
}
|
|
|
|
headerbar windowcontrols > button:not(.suggested-action):not(.destructive-action).close:active {
|
|
background-color: #E53935;
|
|
color: white;
|
|
}
|
|
|
|
headerbar.default-decoration {
|
|
background-color: #202020;
|
|
min-height: 20px;
|
|
padding: 4px;
|
|
border-radius: 4px 4px 0 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
headerbar.default-decoration:backdrop {
|
|
background-color: #2C2C2C;
|
|
}
|
|
|
|
.tiled headerbar.default-decoration, .maximized headerbar.default-decoration, .fullscreen headerbar.default-decoration {
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
headerbar.default-decoration windowcontrols button,
|
|
headerbar.default-decoration windowcontrols menubutton {
|
|
min-height: 20px;
|
|
min-width: 20px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.solid-csd headerbar:dir(rtl), .solid-csd headerbar:dir(ltr) {
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
window.devel headerbar.titlebar {
|
|
background: #202020 cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, linear-gradient(to right, transparent 65%, rgba(50, 129, 234, 0.1)), linear-gradient(to top, #282828 3px, #2d2d2d);
|
|
}
|
|
|
|
window.devel headerbar.titlebar:backdrop {
|
|
background: #202020 cross-fade(10% -gtk-icontheme("system-run-symbolic"), image(transparent)) 90% 0/256px 256px no-repeat, image(#202020);
|
|
/* background-color would flash */
|
|
}
|
|
|
|
/************
|
|
* Pathbars *
|
|
************/
|
|
|
|
pathbar > button {
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #3281ea 0%, transparent 0%) 0 0 0/0 0 0px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
|
|
pathbar > button:checked {
|
|
border-image: radial-gradient(circle closest-corner at center calc(100% - 1px), #3281ea 100%, transparent 0%) 0 0 2/0 0 2px;
|
|
}
|
|
|
|
|
|
pathbar > button:checked,
|
|
pathbar > button:checked:disabled {
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
pathbar > button label:not(:only-child):first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
|
|
pathbar > button label:not(:only-child):last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
|
|
pathbar > button.text-button {
|
|
min-width: 0;
|
|
}
|
|
|
|
|
|
pathbar > button.slider-button {
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
/**************
|
|
* Tree Views *
|
|
**************/
|
|
columnview.view,
|
|
treeview.view {
|
|
background-image: image(#2B2B2B);
|
|
border-left-color: #4d4d4d;
|
|
border-top-color: #4d4d4d;
|
|
}
|
|
|
|
columnview.view:selected,
|
|
treeview.view:selected {
|
|
background-color: transparent;
|
|
background-image: image(alpha(currentColor, 0.1));
|
|
color: white;
|
|
}
|
|
|
|
columnview.view:hover, columnview.view:selected,
|
|
treeview.view:hover,
|
|
treeview.view:selected {
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
columnview.view.separator,
|
|
treeview.view.separator {
|
|
min-height: 5px;
|
|
color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
columnview.view:drop(active),
|
|
treeview.view:drop(active) {
|
|
border-style: solid none;
|
|
border-width: 1px;
|
|
border-color: #99c0f5;
|
|
}
|
|
|
|
columnview.view:drop(active).after,
|
|
treeview.view:drop(active).after {
|
|
border-top-style: none;
|
|
}
|
|
|
|
columnview.view:drop(active).before,
|
|
treeview.view:drop(active).before {
|
|
border-bottom-style: none;
|
|
}
|
|
|
|
columnview.view > dndtarget:drop(active),
|
|
treeview.view > dndtarget:drop(active) {
|
|
border-style: solid none;
|
|
border-width: 1px;
|
|
border-color: alpha(currentColor, 0.06);
|
|
}
|
|
|
|
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 {
|
|
min-width: 16px;
|
|
min-height: 16px;
|
|
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
columnview.view.expander:dir(rtl),
|
|
treeview.view.expander:dir(rtl) {
|
|
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
|
|
}
|
|
|
|
columnview.view.expander:hover, columnview.view.expander:active,
|
|
treeview.view.expander:hover,
|
|
treeview.view.expander:active {
|
|
color: white;
|
|
}
|
|
|
|
columnview.view.expander:checked,
|
|
treeview.view.expander:checked {
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
}
|
|
|
|
columnview.view.expander:disabled,
|
|
treeview.view.expander:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
columnview.view.progressbar,
|
|
treeview.view.progressbar {
|
|
border-bottom: 6px solid #3281ea;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
|
|
columnview.view.progressbar:selected:hover,
|
|
treeview.view.progressbar:selected:hover {
|
|
box-shadow: none;
|
|
}
|
|
|
|
columnview.view.trough,
|
|
treeview.view.trough {
|
|
border-bottom: 6px solid rgba(255, 255, 255, 0.12);
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
background-image: none;
|
|
}
|
|
|
|
columnview.view.trough:selected:hover,
|
|
treeview.view.trough:selected:hover {
|
|
box-shadow: none;
|
|
}
|
|
|
|
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.12);
|
|
border-radius: 0;
|
|
background-clip: border-box;
|
|
}
|
|
|
|
columnview.view > header > button:not(:focus):not(:hover):not(:active),
|
|
treeview.view > header > button:not(:focus):not(:hover):not(:active) {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
columnview.view > header > button, columnview.view > header > button:disabled,
|
|
treeview.view > header > button,
|
|
treeview.view > header > button:disabled {
|
|
background-color: #2B2B2B;
|
|
}
|
|
|
|
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.12);
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
background-color: #2B2B2B;
|
|
background-clip: border-box;
|
|
color: #3281ea;
|
|
}
|
|
|
|
columnview.view acceleditor > label,
|
|
treeview.view acceleditor > label {
|
|
background-color: #3281ea;
|
|
}
|
|
|
|
/*********
|
|
* Menus *
|
|
*********/
|
|
menubar {
|
|
padding: 0;
|
|
background-color: #202020;
|
|
color: white;
|
|
}
|
|
|
|
menubar:backdrop {
|
|
background-color: #2C2C2C;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.csd menubar {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
menubar > item {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-height: 16px;
|
|
padding: 2px 6px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
menubar > item:hover {
|
|
transition: none;
|
|
background-color: alpha(currentColor, 0.1);
|
|
color: white;
|
|
}
|
|
|
|
menubar > item:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
menubar > item label:disabled {
|
|
color: inherit;
|
|
}
|
|
|
|
menubar > item popover.menu popover.menu {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
menubar > item popover.menu.background popover.menu.background > contents {
|
|
margin: 0;
|
|
}
|
|
|
|
/**********************
|
|
* Popover Base Menus *
|
|
**********************/
|
|
popover.menu box.inline-buttons {
|
|
padding: 0 4px;
|
|
}
|
|
|
|
popover.menu box.inline-buttons button.image-button.model {
|
|
min-height: 28px;
|
|
min-width: 28px;
|
|
padding: 0;
|
|
border: none;
|
|
outline: none;
|
|
transition: none;
|
|
}
|
|
|
|
popover.menu box.inline-buttons button.image-button.model:selected {
|
|
background: image(alpha(currentColor, 0.06));
|
|
}
|
|
|
|
popover.menu box.circular-buttons {
|
|
padding: 4px;
|
|
}
|
|
|
|
popover.menu box.circular-buttons button.circular.image-button.model {
|
|
padding: 4px;
|
|
}
|
|
|
|
popover.menu box.circular-buttons button.circular.image-button.model:focus {
|
|
background-color: alpha(currentColor, 0.06);
|
|
}
|
|
|
|
popover.menu.background separator {
|
|
margin: 2px 0;
|
|
}
|
|
|
|
popover.menu arrow.left,
|
|
popover.menu radio.left,
|
|
popover.menu check.left {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
popover.menu arrow.right,
|
|
popover.menu radio.right,
|
|
popover.menu check.right {
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
}
|
|
|
|
popover.menu modelbutton {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-height: 16px;
|
|
min-width: 40px;
|
|
padding: 2px 6px;
|
|
color: white;
|
|
font: initial;
|
|
text-shadow: none;
|
|
}
|
|
|
|
popover.menu modelbutton:hover {
|
|
transition: none;
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
popover.menu modelbutton:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
/************
|
|
* Popovers *
|
|
************/
|
|
popover.background {
|
|
font: initial;
|
|
}
|
|
|
|
popover.background, popover.background:backdrop {
|
|
background-color: transparent;
|
|
}
|
|
|
|
popover.background > arrow,
|
|
popover.background > contents {
|
|
transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
padding: 4px;
|
|
box-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12);
|
|
background-color: rgba(60, 60, 60, 0.98);
|
|
border-radius: 6px;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
popover.background:backdrop > arrow,
|
|
popover.background:backdrop > contents {
|
|
box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
popover.background > contents > list,
|
|
popover.background > contents > .view,
|
|
popover.background > contents > toolbar {
|
|
border-style: none;
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
popover.background > contents > scrolledwindow > viewport > stack > box {
|
|
padding: 0;
|
|
}
|
|
|
|
popover.background > contents > box > button {
|
|
margin: 0;
|
|
}
|
|
|
|
popover.background > contents separator {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
margin: 2px 0;
|
|
}
|
|
|
|
popover.background > contents list separator {
|
|
margin: 0;
|
|
}
|
|
|
|
popover.background list,
|
|
popover.background .view:not(:selected),
|
|
popover.background toolbar {
|
|
background-color: #3C3C3C;
|
|
}
|
|
|
|
popover.background listview {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
popover.background listview > row {
|
|
padding: 4px 8px;
|
|
margin: 0;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
popover.background listview > row:selected {
|
|
color: white;
|
|
background-color: alpha(currentColor, 0.06);
|
|
}
|
|
|
|
popover.background .linked > button:not(.radio) {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
popover.background .linked > button:not(.radio):first-child {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
popover.background .linked > button:not(.radio):last-child {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
popover.background .linked > button:not(.radio):only-child {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
popover.background.menu button,
|
|
popover.background button.model {
|
|
min-height: 32px;
|
|
padding: 0 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.osd popover.background, popover.background.touch-selection, popover.background.magnifier {
|
|
background-color: transparent;
|
|
}
|
|
|
|
popover.background separator {
|
|
margin: 4px 0;
|
|
}
|
|
|
|
popover.background list separator {
|
|
margin: 0;
|
|
}
|
|
|
|
magnifier {
|
|
background-color: #2B2B2B;
|
|
}
|
|
|
|
/*************
|
|
* Notebooks *
|
|
*************/
|
|
notebook > header tab {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms;
|
|
min-height: 20px;
|
|
min-width: 20px;
|
|
padding: 2px 12px;
|
|
border-width: 1px;
|
|
border-color: transparent;
|
|
border-style: solid;
|
|
outline: none;
|
|
background-clip: padding-box;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-weight: 500;
|
|
box-shadow: none;
|
|
}
|
|
|
|
notebook > header tab:hover {
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
color: white;
|
|
box-shadow: none;
|
|
}
|
|
|
|
notebook > header tab:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
notebook > header tab:checked {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-color: #2B2B2B;
|
|
background-clip: padding-box;
|
|
border-color: #4d4d4d;
|
|
color: white;
|
|
box-shadow: none;
|
|
}
|
|
|
|
notebook > header tab:checked:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
notebook > header tab:checked.reorderable-page {
|
|
background-color: #2B2B2B;
|
|
}
|
|
|
|
frame > paned > notebook > header, notebook.frame > header {
|
|
background-color: #303030;
|
|
}
|
|
|
|
notebook, notebook.frame {
|
|
background-color: #2B2B2B;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
notebook.frame frame > border {
|
|
border: none;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
notebook.frame frame > list row.activatable {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
notebook:focus tab:checked {
|
|
box-shadow: none;
|
|
}
|
|
|
|
notebook > header {
|
|
border-width: 1px;
|
|
border-color: rgba(255, 255, 255, 0.12);
|
|
background-color: #333333;
|
|
background-clip: border-box;
|
|
}
|
|
|
|
notebook > header.top {
|
|
border-bottom-style: solid;
|
|
border-radius: 4px 4px 0 0;
|
|
}
|
|
|
|
notebook > header.top > tabs {
|
|
margin-bottom: -1px;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
notebook > header.top > tabs > tab {
|
|
border-radius: 4px 4px 0 0;
|
|
border-bottom: none;
|
|
}
|
|
|
|
notebook > header.bottom {
|
|
border-top-style: solid;
|
|
border-radius: 0 0 4px 4px;
|
|
}
|
|
|
|
notebook > header.bottom > tabs {
|
|
margin-top: -1px;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
notebook > header.bottom > tabs > tab {
|
|
border-radius: 0 0 4px 4px;
|
|
border-top: none;
|
|
}
|
|
|
|
notebook > header.left {
|
|
border-right-style: solid;
|
|
border-radius: 4px 0 0 4px;
|
|
}
|
|
|
|
notebook > header.left > tabs {
|
|
margin-left: 2px;
|
|
margin-right: -1px;
|
|
}
|
|
|
|
notebook > header.left > tabs > tab {
|
|
border-radius: 4px 0 0 4px;
|
|
border-right: none;
|
|
}
|
|
|
|
notebook > header.right {
|
|
border-left-style: solid;
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
|
|
notebook > header.right > tabs {
|
|
margin-left: -1px;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
notebook > header.right > tabs > tab {
|
|
border-radius: 0 4px 4px 0;
|
|
border-left: none;
|
|
}
|
|
|
|
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 > box {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
margin: -4px -12px;
|
|
padding: 4px 12px;
|
|
}
|
|
|
|
notebook > header tab > box:drop(active) {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
color: white;
|
|
}
|
|
|
|
notebook > header tab button.flat {
|
|
min-width: 18px;
|
|
min-height: 18px;
|
|
padding: 0 0;
|
|
margin: 2px 0;
|
|
}
|
|
|
|
notebook > header tab button.flat:last-child {
|
|
margin-left: 4px;
|
|
margin-right: -8px;
|
|
}
|
|
|
|
notebook > header tab button.flat:first-child {
|
|
margin-left: -8px;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
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 {
|
|
border-style: 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 {
|
|
border-style: solid;
|
|
}
|
|
|
|
notebook > stack:not(:only-child) {
|
|
background-color: transparent;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/**************
|
|
* Scrollbars *
|
|
**************/
|
|
scrollbar {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-color: #2B2B2B;
|
|
outline: none;
|
|
}
|
|
|
|
scrollbar.top {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
scrollbar.bottom {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
scrollbar.left {
|
|
border-right: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
scrollbar.right {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
scrollbar > range > trough {
|
|
background: none;
|
|
border: none;
|
|
outline: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
scrollbar > range > trough > slider {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-width: 4px;
|
|
min-height: 4px;
|
|
border: none;
|
|
border-radius: 9999px;
|
|
background-clip: padding-box;
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
box-shadow: none;
|
|
outline: none;
|
|
}
|
|
|
|
scrollbar > range > trough > slider:hover {
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
scrollbar > range > trough > slider:active {
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
scrollbar > range > trough > slider:disabled {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
scrollbar.horizontal > range > trough > slider {
|
|
margin: 2px 0;
|
|
}
|
|
|
|
scrollbar.vertical > range > trough > slider {
|
|
margin: 0 2px;
|
|
}
|
|
|
|
scrollbar > range.fine-tune > trough > slider {
|
|
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(.fine-tune) > range > trough > slider {
|
|
transition-property: background-color, min-height, min-width;
|
|
}
|
|
|
|
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: 0;
|
|
border: 1px solid rgba(43, 43, 43, 0.3);
|
|
}
|
|
|
|
scrollbar.overlay-indicator:not(.dragging):not(.hovering) button {
|
|
min-width: 4px;
|
|
min-height: 4px;
|
|
margin: 3px;
|
|
border: 1px solid rgba(43, 43, 43, 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 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(60, 60, 60, 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 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
margin: 4px 0;
|
|
padding: 0;
|
|
border: 0 solid transparent;
|
|
border-radius: 9999px;
|
|
background-color: transparent;
|
|
background-clip: padding-box;
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
|
|
font-size: 0;
|
|
color: transparent;
|
|
}
|
|
|
|
switch:hover {
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
switch:checked {
|
|
box-shadow: none;
|
|
background-color: #3281ea;
|
|
}
|
|
|
|
switch:checked:hover {
|
|
box-shadow: none;
|
|
background-color: #498fec;
|
|
}
|
|
|
|
switch:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
switch image {
|
|
margin: -8px;
|
|
}
|
|
|
|
switch > slider {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-width: 10px;
|
|
min-height: 10px;
|
|
margin: 5px;
|
|
border-radius: 9999px;
|
|
outline: none;
|
|
box-shadow: none;
|
|
background-color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
switch:checked > slider {
|
|
background-color: white;
|
|
color: white;
|
|
}
|
|
|
|
/*************************
|
|
* 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.2), 0 2px 2px rgba(0, 0, 0, 0.14), 0 1px 3px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.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.2), 0 4px 3px rgba(0, 0, 0, 0.14), 0 1px 6px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.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;
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
checkbutton.text-button,
|
|
radiobutton.text-button {
|
|
padding: 2px;
|
|
}
|
|
|
|
checkbutton.text-button label:not(:only-child),
|
|
radiobutton.text-button label:not(:only-child) {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
check,
|
|
radio {
|
|
min-height: 24px;
|
|
min-width: 24px;
|
|
transition: background-image 0;
|
|
}
|
|
|
|
check, check:hover, check:focus,
|
|
radio,
|
|
radio:hover,
|
|
radio:focus {
|
|
background: none;
|
|
box-shadow: none;
|
|
transition: color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
check:checked, check:indeterminate,
|
|
radio:checked,
|
|
radio:indeterminate {
|
|
color: #3281ea;
|
|
background-image: image(white);
|
|
background-size: 12px 12px;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
animation: none;
|
|
transition: background-image 0;
|
|
}
|
|
|
|
check:checked:hover, check:indeterminate:hover,
|
|
radio:checked:hover,
|
|
radio:indeterminate:hover {
|
|
color: #1667d3;
|
|
}
|
|
|
|
check:checked:disabled, check:indeterminate:disabled,
|
|
radio:checked:disabled,
|
|
radio:indeterminate:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
background-image: none;
|
|
}
|
|
|
|
check:not(:hover):focus,
|
|
radio:not(:hover):focus {
|
|
box-shadow: inset 0 0 0 9999px transparent;
|
|
}
|
|
|
|
popover modelbutton.flat check, popover modelbutton.flat check:focus, popover modelbutton.flat check:hover, popover modelbutton.flat check:focus:hover, popover modelbutton.flat check:active, popover modelbutton.flat check:disabled, popover modelbutton.flat radio, popover modelbutton.flat radio:focus, popover modelbutton.flat radio:hover, 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: -4px;
|
|
}
|
|
|
|
popover modelbutton.flat check.right:dir(ltr), popover modelbutton.flat radio.right:dir(ltr) {
|
|
margin-right: -4px;
|
|
}
|
|
|
|
popover.menu check, popover.menu radio {
|
|
transition: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-size: 10px 10px;
|
|
}
|
|
|
|
popover.menu check:dir(ltr), popover.menu radio:dir(ltr) {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
popover.menu check:dir(rtl), popover.menu radio:dir(rtl) {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
popover.menu check, popover.menu check:hover, popover.menu check:disabled, popover.menu radio, popover.menu radio:hover, popover.menu radio:disabled {
|
|
box-shadow: none;
|
|
}
|
|
|
|
treeview.view check, treeview.view radio {
|
|
padding: 0;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
treeview.view check:hover, treeview.view check:active, treeview.view radio:hover, treeview.view radio:active {
|
|
color: white;
|
|
}
|
|
|
|
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: #3281ea;
|
|
}
|
|
|
|
treeview.view check:checked:disabled, treeview.view check:indeterminate:disabled, treeview.view radio:checked:disabled, treeview.view radio:indeterminate:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
treeview.view check:hover, treeview.view check:focus, treeview.view check:selected, treeview.view check:selected:hover, treeview.view check:checked:hover, treeview.view check:indeterminate:hover, treeview.view radio:hover, treeview.view radio:focus, treeview.view radio:selected, treeview.view radio:selected:hover, treeview.view radio:checked:hover, treeview.view radio:indeterminate:hover {
|
|
box-shadow: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
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 check {
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
-gtk-icon-size: 16px;
|
|
border-radius: 4px;
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-unchecked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu check:checked {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-checked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu check:indeterminate {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-checkbox-mixed-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu radio {
|
|
min-height: 16px;
|
|
min-width: 16px;
|
|
-gtk-icon-size: 16px;
|
|
border-image: none;
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-unchecked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu radio:checked {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-checked-symbolic.svg"));
|
|
}
|
|
|
|
|
|
popover.menu radio:indeterminate {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/small-radio-mixed-symbolic.svg"));
|
|
}
|
|
|
|
treeview.view radio:checked,
|
|
columnview.view radio:checked {
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/radio-checked-symbolic.svg"));
|
|
border-image: none;
|
|
}
|
|
|
|
/************
|
|
* GtkScale *
|
|
************/
|
|
scale {
|
|
min-height: 2px;
|
|
min-width: 2px;
|
|
}
|
|
|
|
scale.horizontal {
|
|
padding: 13px 12px;
|
|
}
|
|
|
|
scale.vertical {
|
|
padding: 12px 13px;
|
|
}
|
|
|
|
scale > trough {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
outline: none;
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
scale > trough:disabled {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
scale > trough > highlight {
|
|
transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-image: image(#3281ea);
|
|
}
|
|
|
|
scale > trough > highlight:disabled {
|
|
background-color: #333333;
|
|
background-image: image(rgba(255, 255, 255, 0.3));
|
|
}
|
|
|
|
scale > trough > fill {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
scale > trough > fill:disabled {
|
|
background-color: transparent;
|
|
}
|
|
|
|
scale > trough > slider {
|
|
min-height: 32px;
|
|
min-width: 32px;
|
|
margin: -15px;
|
|
box-shadow: none;
|
|
outline: none;
|
|
border: none;
|
|
background-color: transparent;
|
|
transition: background-image 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
border-radius: 50%;
|
|
color: #3281ea;
|
|
background-repeat: no-repeat;
|
|
background-size: 25px 25px;
|
|
background-position: center center;
|
|
}
|
|
|
|
scale > trough > slider {
|
|
background-image: -gtk-scaled(url("assets/scale-slider-dark.png"), url("assets/scale-slider-dark@2.png"));
|
|
}
|
|
|
|
scale > trough > slider:hover {
|
|
background-image: -gtk-scaled(url("assets/scale-slider-hover-dark.png"), url("assets/scale-slider-hover-dark@2.png"));
|
|
}
|
|
|
|
scale > trough > slider:active {
|
|
background-image: -gtk-scaled(url("assets/scale-slider-active-dark.png"), url("assets/scale-slider-active-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.fine-tune.horizontal {
|
|
min-height: 4px;
|
|
padding-top: 12px;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
scale.fine-tune.vertical {
|
|
min-width: 4px;
|
|
padding-left: 12px;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
scale.fine-tune > trough > slider {
|
|
margin: -14px;
|
|
}
|
|
|
|
scale > marks,
|
|
scale > value {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
scale indicator {
|
|
background-color: rgba(255, 255, 255, 0.3);
|
|
color: transparent;
|
|
}
|
|
|
|
scale.horizontal marks.top {
|
|
margin-bottom: 7px;
|
|
margin-top: -15px;
|
|
}
|
|
|
|
scale.horizontal.fine-tune marks.top {
|
|
margin-bottom: 6px;
|
|
margin-top: -14px;
|
|
}
|
|
|
|
scale.horizontal marks.bottom {
|
|
margin-top: 7px;
|
|
margin-bottom: -15px;
|
|
}
|
|
|
|
scale.horizontal.fine-tune marks.bottom {
|
|
margin-top: 6px;
|
|
margin-bottom: -14px;
|
|
}
|
|
|
|
scale.vertical marks.top {
|
|
margin-right: 7px;
|
|
margin-left: -15px;
|
|
}
|
|
|
|
scale.vertical.fine-tune marks.top {
|
|
margin-right: 6px;
|
|
margin-left: -14px;
|
|
}
|
|
|
|
scale.vertical marks.bottom {
|
|
margin-left: 7px;
|
|
margin-right: -15px;
|
|
}
|
|
|
|
scale.vertical.fine-tune marks.bottom {
|
|
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.horizontal.marks-before:not(.marks-after) slider {
|
|
transform: none;
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-height: 32px;
|
|
min-width: 32px;
|
|
margin: -15px;
|
|
border-radius: 50%;
|
|
background-size: auto, 1000% 1000%;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-color: transparent;
|
|
}
|
|
|
|
scale.horizontal.marks-before:not(.marks-after) slider:focus {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
scale.horizontal.marks-before:not(.marks-after) slider:hover {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
scale.horizontal.marks-before:not(.marks-after) slider:focus:hover {
|
|
background-color: alpha(currentColor, 0.16);
|
|
}
|
|
|
|
scale.horizontal.marks-before:not(.marks-after) slider:active {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms;
|
|
animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards;
|
|
background-size: auto, 0% 0%;
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
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")), radial-gradient(circle, transparent 10%, transparent 0%);
|
|
}
|
|
|
|
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")), radial-gradient(circle, transparent 10%, transparent 0%);
|
|
}
|
|
|
|
scale.horizontal.marks-before:not(.marks-after) slider:active {
|
|
background-image: -gtk-scaled(url("assets/scale-horz-marks-before-slider-dark.png"), url("assets/scale-horz-marks-before-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.16) 10%, transparent 0%);
|
|
}
|
|
|
|
scale.horizontal.marks-after:not(.marks-before) slider {
|
|
transform: none;
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-height: 32px;
|
|
min-width: 32px;
|
|
margin: -15px;
|
|
border-radius: 50%;
|
|
background-size: auto, 1000% 1000%;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-color: transparent;
|
|
}
|
|
|
|
scale.horizontal.marks-after:not(.marks-before) slider:focus {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
scale.horizontal.marks-after:not(.marks-before) slider:hover {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
scale.horizontal.marks-after:not(.marks-before) slider:focus:hover {
|
|
background-color: alpha(currentColor, 0.16);
|
|
}
|
|
|
|
scale.horizontal.marks-after:not(.marks-before) slider:active {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms;
|
|
animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards;
|
|
background-size: auto, 0% 0%;
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
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")), radial-gradient(circle, transparent 10%, transparent 0%);
|
|
}
|
|
|
|
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")), radial-gradient(circle, transparent 10%, transparent 0%);
|
|
}
|
|
|
|
scale.horizontal.marks-after:not(.marks-before) slider:active {
|
|
background-image: -gtk-scaled(url("assets/scale-horz-marks-after-slider-dark.png"), url("assets/scale-horz-marks-after-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.16) 10%, transparent 0%);
|
|
}
|
|
|
|
scale.vertical.marks-before:not(.marks-after) slider {
|
|
transform: none;
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-height: 32px;
|
|
min-width: 32px;
|
|
margin: -15px;
|
|
border-radius: 50%;
|
|
background-size: auto, 1000% 1000%;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-color: transparent;
|
|
}
|
|
|
|
scale.vertical.marks-before:not(.marks-after) slider:focus {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
scale.vertical.marks-before:not(.marks-after) slider:hover {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
scale.vertical.marks-before:not(.marks-after) slider:focus:hover {
|
|
background-color: alpha(currentColor, 0.16);
|
|
}
|
|
|
|
scale.vertical.marks-before:not(.marks-after) slider:active {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms;
|
|
animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards;
|
|
background-size: auto, 0% 0%;
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
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")), radial-gradient(circle, transparent 10%, transparent 0%);
|
|
}
|
|
|
|
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")), radial-gradient(circle, transparent 10%, transparent 0%);
|
|
}
|
|
|
|
scale.vertical.marks-before:not(.marks-after) slider:active {
|
|
background-image: -gtk-scaled(url("assets/scale-vert-marks-before-slider-dark.png"), url("assets/scale-vert-marks-before-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.16) 10%, transparent 0%);
|
|
}
|
|
|
|
scale.vertical.marks-after:not(.marks-before) slider {
|
|
transform: none;
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 300ms cubic-bezier(0, 0, 0.2, 1), background-image 1200ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-height: 32px;
|
|
min-width: 32px;
|
|
margin: -15px;
|
|
border-radius: 50%;
|
|
background-size: auto, 1000% 1000%;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-color: transparent;
|
|
}
|
|
|
|
scale.vertical.marks-after:not(.marks-before) slider:focus {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
scale.vertical.marks-after:not(.marks-before) slider:hover {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
scale.vertical.marks-after:not(.marks-before) slider:focus:hover {
|
|
background-color: alpha(currentColor, 0.16);
|
|
}
|
|
|
|
scale.vertical.marks-after:not(.marks-before) slider:active {
|
|
transition: background-color 75ms cubic-bezier(0, 0, 0.2, 1), background-size 0ms, background-image 0ms;
|
|
animation: ripple-on-slider 225ms cubic-bezier(0, 0, 0.2, 1) forwards;
|
|
background-size: auto, 0% 0%;
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
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")), radial-gradient(circle, transparent 10%, transparent 0%);
|
|
}
|
|
|
|
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")), radial-gradient(circle, transparent 10%, transparent 0%);
|
|
}
|
|
|
|
scale.vertical.marks-after:not(.marks-before) slider:active {
|
|
background-image: -gtk-scaled(url("assets/scale-vert-marks-after-slider-dark.png"), url("assets/scale-vert-marks-after-slider-dark@2.png")), radial-gradient(circle, alpha(currentColor, 0.16) 10%, transparent 0%);
|
|
}
|
|
|
|
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: -24px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
scale.color.vertical:dir(ltr) {
|
|
padding: 0 0 0 12px;
|
|
}
|
|
|
|
scale.color.vertical:dir(ltr) slider {
|
|
margin-left: -24px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
scale.color.vertical:dir(rtl) {
|
|
padding: 0 12px 0 0;
|
|
}
|
|
|
|
scale.color.vertical:dir(rtl) slider {
|
|
margin-right: -24px;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
/*****************
|
|
* Progress bars *
|
|
*****************/
|
|
progressbar {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
font-size: smaller;
|
|
}
|
|
|
|
progressbar.horizontal > trough {
|
|
min-width: 150px;
|
|
}
|
|
|
|
progressbar.horizontal > trough, progressbar.horizontal > trough > progress {
|
|
min-height: 6px;
|
|
}
|
|
|
|
progressbar.vertical > trough {
|
|
min-height: 80px;
|
|
}
|
|
|
|
progressbar.vertical > trough, progressbar.vertical > trough > progress {
|
|
min-width: 6px;
|
|
}
|
|
|
|
progressbar > trough {
|
|
border-radius: 4px;
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
progressbar > trough > progress {
|
|
border-radius: 4px;
|
|
background-color: #3281ea;
|
|
}
|
|
|
|
progressbar.osd {
|
|
min-width: 3px;
|
|
min-height: 3px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
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 trough > block {
|
|
min-height: 6px;
|
|
}
|
|
|
|
levelbar.horizontal.discrete trough > block {
|
|
min-width: 28px;
|
|
}
|
|
|
|
levelbar.horizontal.discrete trough > block:not(:last-child) {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
levelbar.vertical trough > block {
|
|
min-width: 6px;
|
|
}
|
|
|
|
levelbar.vertical.discrete trough > block {
|
|
min-height: 28px;
|
|
}
|
|
|
|
levelbar.vertical.discrete trough > block:not(:last-child) {
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
levelbar > trough {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
levelbar block.low {
|
|
background-color: #FDD633;
|
|
}
|
|
|
|
levelbar block.high, levelbar block:not(.empty) {
|
|
background-color: #3281ea;
|
|
}
|
|
|
|
levelbar block.full {
|
|
background-color: #81C995;
|
|
}
|
|
|
|
levelbar block.empty {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
/****************
|
|
* Print dialog *
|
|
*****************/
|
|
window.dialog.print drawing {
|
|
color: white;
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
}
|
|
|
|
window.dialog.print drawing paper {
|
|
padding: 0;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
}
|
|
|
|
window.dialog.print .dialog-action-box {
|
|
margin: 12px;
|
|
}
|
|
|
|
/**********
|
|
* Frames *
|
|
**********/
|
|
frame,
|
|
.frame {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|
|
|
|
frame > list,
|
|
.frame > list {
|
|
border: none;
|
|
}
|
|
|
|
frame.view,
|
|
.frame.view {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
frame.flat,
|
|
.frame.flat {
|
|
border-style: none;
|
|
}
|
|
|
|
frame {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
frame > label {
|
|
margin: 4px;
|
|
}
|
|
|
|
frame.flat > border, statusbar frame > border {
|
|
border: none;
|
|
}
|
|
|
|
actionbar > revealer > box {
|
|
padding: 4px;
|
|
border-spacing: 4px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
background-color: #2B2B2B;
|
|
background-clip: border-box;
|
|
}
|
|
|
|
.background.csd box.vertical > actionbar > revealer > box {
|
|
border-radius: 0 0 8px 8px;
|
|
}
|
|
|
|
scrolledwindow viewport.frame {
|
|
border: none;
|
|
}
|
|
|
|
stack scrolledwindow.frame viewport.frame list {
|
|
border: none;
|
|
}
|
|
|
|
overshoot.top {
|
|
background-image: radial-gradient(farthest-side at top, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at top, alpha(currentColor, 0.05), alpha(currentColor, 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, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at bottom, alpha(currentColor, 0.05), alpha(currentColor, 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, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at left, alpha(currentColor, 0.05), alpha(currentColor, 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, alpha(currentColor, 0.12) 85%, alpha(currentColor, 0)), radial-gradient(farthest-side at right, alpha(currentColor, 0.05), alpha(currentColor, 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.12);
|
|
background-color: #2B2B2B;
|
|
}
|
|
|
|
junction:dir(rtl) {
|
|
border-style: solid solid none none;
|
|
}
|
|
|
|
separator {
|
|
min-width: 1px;
|
|
min-height: 1px;
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
stacksidebar + separator.vertical,
|
|
stacksidebar separator.horizontal, button.font separator, button.file separator {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
background: none;
|
|
border: none;
|
|
}
|
|
|
|
/*********
|
|
* Lists *
|
|
*********/
|
|
listview,
|
|
list {
|
|
border-color: rgba(255, 255, 255, 0.12);
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
box-shadow: none;
|
|
}
|
|
|
|
listview row,
|
|
list row {
|
|
padding: 2px;
|
|
}
|
|
|
|
listview > row.expander,
|
|
list > row.expander {
|
|
padding: 0px;
|
|
}
|
|
|
|
listview > row.expander .row-header,
|
|
list > row.expander .row-header {
|
|
padding: 2px;
|
|
}
|
|
|
|
columnview.view > header > button,
|
|
treeview.view > header > button, row.activatable {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
outline: none;
|
|
box-shadow: inset 0 0 0 9999px transparent;
|
|
}
|
|
|
|
columnview.view > header > button:focus,
|
|
treeview.view > header > button:focus, row.activatable:focus {
|
|
box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08);
|
|
}
|
|
|
|
columnview.view > header > button:hover,
|
|
treeview.view > header > button:hover, row.activatable:hover {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms;
|
|
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08);
|
|
}
|
|
|
|
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 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.16);
|
|
}
|
|
|
|
row:selected {
|
|
color: inherit;
|
|
}
|
|
|
|
row:selected image,
|
|
row:selected label {
|
|
color: white;
|
|
}
|
|
|
|
row:selected button image,
|
|
row:selected button label {
|
|
color: inherit;
|
|
}
|
|
|
|
row:selected:disabled image,
|
|
row:selected:disabled label {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
treeexpander {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
columnview row:not(:selected) cell editablelabel:not(.editing):focus-within {
|
|
outline: 2px solid alpha(currentColor, 0.06);
|
|
}
|
|
|
|
columnview row:not(:selected) cell editablelabel.editing:focus-within {
|
|
outline: 2px solid #3281ea;
|
|
}
|
|
|
|
columnview row:not(:selected) cell editablelabel.editing text selection {
|
|
color: white;
|
|
background-color: #3281ea;
|
|
}
|
|
|
|
.rich-list {
|
|
/* rich lists usually containing other widgets than just labels/text */
|
|
}
|
|
|
|
.rich-list > row {
|
|
padding: 6px 8px;
|
|
min-height: 32px;
|
|
/* should be tall even when only containing a label */
|
|
}
|
|
|
|
.rich-list > row > box {
|
|
border-spacing: 8px;
|
|
}
|
|
|
|
/*********************
|
|
* App Notifications *
|
|
*********************/
|
|
.app-notification {
|
|
margin: 8px;
|
|
border-spacing: 4px;
|
|
padding: 4px;
|
|
}
|
|
|
|
.app-notification button.text-button:not(:disabled) {
|
|
color: #3281ea;
|
|
}
|
|
|
|
.app-notification.frame,
|
|
.app-notification border {
|
|
border-style: none;
|
|
}
|
|
|
|
/*************
|
|
* Expanders *
|
|
*************/
|
|
expander {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
min-width: 16px;
|
|
min-height: 16px;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic");
|
|
}
|
|
|
|
expander:dir(rtl) {
|
|
-gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl");
|
|
}
|
|
|
|
expander:hover, expander:active {
|
|
color: white;
|
|
}
|
|
|
|
expander:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
expander-widget > box > title {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
expander-widget > box > title:hover > expander {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
.navigation-sidebar:not(decoration):not(window):drop(active):focus, .navigation-sidebar:not(decoration):not(window):drop(active),
|
|
placessidebar:not(decoration):not(window):drop(active):focus,
|
|
placessidebar:not(decoration):not(window):drop(active),
|
|
stackswitcher:not(decoration):not(window):drop(active):focus,
|
|
stackswitcher:not(decoration):not(window):drop(active),
|
|
expander-widget:not(decoration):not(window):drop(active):focus,
|
|
expander-widget:not(decoration):not(window):drop(active) {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/************
|
|
* Calendar *
|
|
************/
|
|
calendar {
|
|
padding: 0;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-radius: 4px;
|
|
color: white;
|
|
}
|
|
|
|
calendar:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
calendar:selected {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
calendar > header {
|
|
padding: 2px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
calendar > header > button {
|
|
min-height: 20px;
|
|
}
|
|
|
|
calendar > grid {
|
|
margin: 2px;
|
|
}
|
|
|
|
calendar > grid > label {
|
|
border-radius: 9999px;
|
|
margin: 0;
|
|
}
|
|
|
|
calendar > grid > label.today:selected {
|
|
box-shadow: none;
|
|
}
|
|
|
|
calendar > grid > label:focus {
|
|
outline-style: none;
|
|
}
|
|
|
|
calendar > grid > label.day-number {
|
|
padding: 6px;
|
|
}
|
|
|
|
calendar > grid > label.day-number.other-month {
|
|
color: alpha(currentColor, 0.3);
|
|
}
|
|
|
|
/***********
|
|
* Dialogs *
|
|
***********/
|
|
window.dialog.message.background {
|
|
background-color: #3C3C3C;
|
|
}
|
|
|
|
window.dialog.message box.dialog-vbox.vertical {
|
|
border-spacing: 10px;
|
|
}
|
|
|
|
window.dialog.message .titlebar {
|
|
min-height: 20px;
|
|
border-style: none;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
|
|
background-color: #3C3C3C;
|
|
color: white;
|
|
}
|
|
|
|
window.dialog.message .titlebar:backdrop {
|
|
background-color: #3C3C3C;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
window.dialog.message.csd.background {
|
|
border-bottom-left-radius: 8px;
|
|
border-bottom-right-radius: 8px;
|
|
}
|
|
|
|
window.dialog.message.csd .dialog-action-area {
|
|
margin-top: -4px;
|
|
}
|
|
|
|
window.dialog.message.csd .dialog-action-area > button, window.dialog.message.csd .dialog-action-area > button:first-child, window.dialog.message.csd .dialog-action-area > button:last-child {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
window.dialog.message.csd .dialog-action-area > button:not(:last-child) {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
window.dialog.message.csd .dialog-action-area > button.suggested-action:not(:disabled) {
|
|
color: #3281ea;
|
|
}
|
|
|
|
window.dialog.message.csd .dialog-action-area > button.destructive-action:not(:disabled) {
|
|
color: #F28B82;
|
|
}
|
|
|
|
.csd filechooser {
|
|
background-color: #2B2B2B;
|
|
border-radius: 0 0 8px 8px;
|
|
}
|
|
|
|
filechooser .dialog-action-box {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
filechooser #pathbarbox {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
background-color: #333333;
|
|
}
|
|
|
|
filechooserbutton > button > box {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
filechooserbutton:drop(active) {
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
}
|
|
|
|
/***********
|
|
* Sidebar *
|
|
***********/
|
|
.sidebar {
|
|
border-style: none;
|
|
background-color: #303030;
|
|
}
|
|
|
|
.sidebar:not(separator):dir(ltr), .sidebar:not(separator).left, .sidebar:not(separator).left:dir(rtl) {
|
|
border-right: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-left-style: none;
|
|
}
|
|
|
|
.sidebar:not(separator):dir(rtl), .sidebar:not(separator).right {
|
|
border-left: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-right-style: none;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
stacksidebar list {
|
|
padding: 0;
|
|
background-color: #303030;
|
|
}
|
|
|
|
stacksidebar row {
|
|
min-height: 32px;
|
|
padding: 0 2px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
stacksidebar row:selected {
|
|
background-color: alpha(currentColor, 0.1);
|
|
color: #3281ea;
|
|
font-weight: 500;
|
|
}
|
|
|
|
stacksidebar row + row {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
stacksidebar row > label {
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
color: inherit;
|
|
}
|
|
|
|
separator.sidebar {
|
|
background-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
/**********************
|
|
* Navigation Sidebar *
|
|
**********************/
|
|
.navigation-sidebar {
|
|
padding: 2px 0;
|
|
border-right: none;
|
|
}
|
|
|
|
.navigation-sidebar > row {
|
|
min-height: 28px;
|
|
padding: 4px 6px;
|
|
border-radius: 4px;
|
|
margin: 2px 4px;
|
|
}
|
|
|
|
.navigation-sidebar > row:hover, .navigation-sidebar > row:focus-visible:focus-within {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
.navigation-sidebar > row:selected {
|
|
background-color: alpha(currentColor, 0.1);
|
|
color: white;
|
|
font-weight: 500;
|
|
background-image: url("assets/selected-line.png"), url("assets/selected-line@2.png");
|
|
background-position: 2px center;
|
|
background-repeat: no-repeat;
|
|
background-size: 3px 16px;
|
|
}
|
|
|
|
.navigation-sidebar > row:selected:hover {
|
|
background-color: alpha(currentColor, 0.16);
|
|
}
|
|
|
|
.navigation-sidebar > row:selected:focus-visible:focus-within {
|
|
outline: none;
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
.navigation-sidebar > row:selected:focus-visible:focus-within:hover {
|
|
background-color: alpha(currentColor, 0.16);
|
|
}
|
|
|
|
.navigation-sidebar > row:disabled {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
/****************
|
|
* File chooser *
|
|
****************/
|
|
row image.sidebar-icon {
|
|
transition: color 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
color: rgba(255, 255, 255, 0.7);
|
|
}
|
|
|
|
row image.sidebar-icon:disabled {
|
|
color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
placessidebar > viewport.frame {
|
|
border-style: none;
|
|
}
|
|
|
|
placessidebar list {
|
|
padding: 1px 0 4px;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row {
|
|
min-height: 28px;
|
|
margin: 0 4px;
|
|
padding: 0;
|
|
border-radius: 4px;
|
|
transition: background-image 0, box-shadow 0;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row > revealer {
|
|
padding: 0 8px 0 16px;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row:active {
|
|
background-color: alpha(currentColor, 0.16);
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row:selected {
|
|
background-color: alpha(currentColor, 0.1);
|
|
color: white;
|
|
font-weight: 500;
|
|
background-image: url("assets/selected-line.png"), url("assets/selected-line@2.png");
|
|
background-position: 2px center;
|
|
background-repeat: no-repeat;
|
|
background-size: 3px 20px;
|
|
transition: background-image 0, box-shadow 0;
|
|
}
|
|
|
|
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 {
|
|
color: inherit;
|
|
}
|
|
|
|
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 {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row.sidebar-new-bookmark-row {
|
|
color: #3281ea;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row.sidebar-new-bookmark-row image.sidebar-icon {
|
|
color: #3281ea;
|
|
}
|
|
|
|
placessidebar .navigation-sidebar > row:drop(active) {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), box-shadow 0ms;
|
|
box-shadow: inset 0 0 0 9999px alpha(currentColor, 0.08);
|
|
}
|
|
|
|
placesview .server-list-button > image {
|
|
transition: 200ms cubic-bezier(0, 0, 0.2, 1);
|
|
-gtk-icon-transform: rotate(0turn);
|
|
}
|
|
|
|
placesview .server-list-button:checked > image {
|
|
transition: 200ms cubic-bezier(0, 0, 0.2, 1);
|
|
-gtk-icon-transform: rotate(-0.5turn);
|
|
}
|
|
|
|
placesview > actionbar > revealer > box > label {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
/*********
|
|
* 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.12));
|
|
background-size: 1px 1px;
|
|
background-clip: content-box;
|
|
}
|
|
|
|
paned > separator.wide {
|
|
min-width: 6px;
|
|
min-height: 6px;
|
|
background-color: #333333;
|
|
background-image: image(rgba(255, 255, 255, 0.12)), image(rgba(255, 255, 255, 0.12));
|
|
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;
|
|
}
|
|
|
|
/************
|
|
* GtkVideo *
|
|
************/
|
|
video {
|
|
background: black;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
video image.osd {
|
|
min-width: 64px;
|
|
min-height: 64px;
|
|
border-radius: 9999px;
|
|
border: none;
|
|
}
|
|
|
|
/**************
|
|
* GtkInfoBar *
|
|
**************/
|
|
infobar {
|
|
border: none;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
infobar > revealer > box {
|
|
padding: 4px;
|
|
border-spacing: 8px;
|
|
}
|
|
|
|
infobar.info > revealer > box, infobar.info:hover > revealer > box, infobar.info:backdrop > revealer > box {
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
}
|
|
|
|
infobar.info > revealer > box button, infobar.info > revealer > box button.text-button:not(:disabled), infobar.info:hover > revealer > box button, infobar.info:hover > revealer > box button.text-button:not(:disabled), infobar.info:backdrop > revealer > box button, infobar.info:backdrop > revealer > box button.text-button:not(:disabled) {
|
|
color: #3281ea;
|
|
}
|
|
|
|
infobar.action > revealer > box, infobar.action:backdrop > revealer > box, infobar.question > revealer > box, infobar.question:backdrop > revealer > box {
|
|
background-color: #3281ea;
|
|
color: white;
|
|
}
|
|
|
|
infobar.action > revealer > box button, infobar.action > revealer > box button:hover, infobar.action > revealer > box button:focus, infobar.action > revealer > box button:active, infobar.action > revealer > box button:checked, infobar.action > revealer > box button.text-button:not(:disabled), infobar.action:backdrop > revealer > box button, infobar.action:backdrop > revealer > box button:hover, infobar.action:backdrop > revealer > box button:focus, infobar.action:backdrop > revealer > box button:active, infobar.action:backdrop > revealer > box button:checked, infobar.action:backdrop > revealer > box button.text-button:not(:disabled), infobar.question > revealer > box button, infobar.question > revealer > box button:hover, infobar.question > revealer > box button:focus, infobar.question > revealer > box button:active, infobar.question > revealer > box button:checked, infobar.question > revealer > box button.text-button:not(:disabled), infobar.question:backdrop > revealer > box button, infobar.question:backdrop > revealer > box button:hover, infobar.question:backdrop > revealer > box button:focus, infobar.question:backdrop > revealer > box button:active, infobar.question:backdrop > revealer > box button:checked, infobar.question:backdrop > revealer > box button.text-button:not(:disabled) {
|
|
color: white;
|
|
}
|
|
|
|
infobar.action > revealer > box *:link, infobar.action:backdrop > revealer > box *:link, infobar.question > revealer > box *:link, infobar.question:backdrop > revealer > box *:link {
|
|
color: white;
|
|
}
|
|
|
|
infobar.warning > revealer > box, infobar.warning:backdrop > revealer > box {
|
|
background-color: #FDD633;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
infobar.warning > revealer > box button, infobar.warning > revealer > box button:hover, infobar.warning > revealer > box button:focus, infobar.warning > revealer > box button:active, infobar.warning > revealer > box button:checked, infobar.warning > revealer > box button.text-button:not(:disabled), infobar.warning:backdrop > revealer > box button, infobar.warning:backdrop > revealer > box button:hover, infobar.warning:backdrop > revealer > box button:focus, infobar.warning:backdrop > revealer > box button:active, infobar.warning:backdrop > revealer > box button:checked, infobar.warning:backdrop > revealer > box button.text-button:not(:disabled) {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
infobar.warning > revealer > box *:link, infobar.warning:backdrop > revealer > box *:link {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
infobar.error > revealer > box, infobar.error:backdrop > revealer > box {
|
|
background-color: #F28B82;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
infobar.error > revealer > box button, infobar.error > revealer > box button:hover, infobar.error > revealer > box button:focus, infobar.error > revealer > box button:active, infobar.error > revealer > box button:checked, infobar.error > revealer > box button.text-button:not(:disabled), infobar.error:backdrop > revealer > box button, infobar.error:backdrop > revealer > box button:hover, infobar.error:backdrop > revealer > box button:focus, infobar.error:backdrop > revealer > box button:active, infobar.error:backdrop > revealer > box button:checked, infobar.error:backdrop > revealer > box button.text-button:not(:disabled) {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
infobar.error > revealer > box *:link, infobar.error:backdrop > revealer > box *:link {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
/************
|
|
* Tooltips *
|
|
************/
|
|
tooltip {
|
|
padding: 4px 8px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
tooltip.background {
|
|
background-color: rgba(54, 54, 54, 0.9);
|
|
color: white;
|
|
box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
|
|
border-radius: 4px;
|
|
margin: 2px 6px 8px 6px;
|
|
}
|
|
|
|
tooltip > box {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
/*****************
|
|
* Color Chooser *
|
|
*****************/
|
|
colorswatch.top {
|
|
border-top-left-radius: 6px;
|
|
border-top-right-radius: 6px;
|
|
}
|
|
|
|
colorswatch.top overlay {
|
|
border-top-left-radius: 6px;
|
|
border-top-right-radius: 6px;
|
|
}
|
|
|
|
colorswatch.bottom {
|
|
border-bottom-left-radius: 6px;
|
|
border-bottom-right-radius: 6px;
|
|
}
|
|
|
|
colorswatch.bottom overlay {
|
|
border-bottom-left-radius: 6px;
|
|
border-bottom-right-radius: 6px;
|
|
}
|
|
|
|
colorswatch.left, colorswatch:first-child:not(.top) {
|
|
border-top-left-radius: 6px;
|
|
border-bottom-left-radius: 6px;
|
|
}
|
|
|
|
colorswatch.left overlay, colorswatch:first-child:not(.top) overlay {
|
|
border-top-left-radius: 6px;
|
|
border-bottom-left-radius: 6px;
|
|
}
|
|
|
|
colorswatch.right, colorswatch:last-child:not(.bottom) {
|
|
border-top-right-radius: 6px;
|
|
border-bottom-right-radius: 6px;
|
|
}
|
|
|
|
colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay {
|
|
border-top-right-radius: 6px;
|
|
border-bottom-right-radius: 6px;
|
|
}
|
|
|
|
colorswatch.dark {
|
|
color: white;
|
|
}
|
|
|
|
colorswatch.light {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
colorswatch#add-color-button {
|
|
border-radius: 6px 6px 0 0;
|
|
color: white;
|
|
}
|
|
|
|
colorswatch#add-color-button:only-child {
|
|
border-radius: 6px;
|
|
}
|
|
|
|
colorswatch#add-color-button overlay {
|
|
background-color: #3C3C3C;
|
|
}
|
|
|
|
colorswatch:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
colorswatch:disabled overlay {
|
|
box-shadow: none;
|
|
}
|
|
|
|
colorswatch#editor-color-sample {
|
|
border-radius: 6px;
|
|
}
|
|
|
|
colorswatch#editor-color-sample overlay {
|
|
border-radius: 6px;
|
|
}
|
|
|
|
colorchooser .popover.osd {
|
|
transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1);
|
|
background-color: #3C3C3C;
|
|
}
|
|
|
|
colorchooser .popover.osd:backdrop {
|
|
box-shadow: 0 3px 2px -3px rgba(0, 0, 0, 0.3), 0 2px 2px -1px rgba(0, 0, 0, 0.24), 0 1px 3px 0 rgba(0, 0, 0, 0.12), inset 0 1px rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
/********
|
|
* Misc *
|
|
********/
|
|
.content-view {
|
|
background-color: #333333;
|
|
}
|
|
|
|
/**********************
|
|
* Window Decorations *
|
|
**********************/
|
|
window {
|
|
transition: box-shadow 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
border-radius: 8px;
|
|
margin: 0;
|
|
outline: none;
|
|
box-shadow: 0 8px 6px -5px rgba(0, 0, 0, 0.2), 0 16px 14.4px 2px rgba(0, 0, 0, 0.14), 0 6px 18px 5px rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent, 0 0 0 1px rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
window:backdrop {
|
|
box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 16px 14.4px 2px transparent, 0 6px 18px 5px transparent, 0 0 0 1px rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
window.popup {
|
|
border-radius: 4px;
|
|
box-shadow: 0 2px 2.4px -1px rgba(0, 0, 0, 0.2), 0 4px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
window.dialog.message {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.solid-csd window {
|
|
margin: 0;
|
|
padding: 2px;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
|
|
background-color: #202020;
|
|
}
|
|
|
|
.solid-csd window:backdrop {
|
|
background-color: #2C2C2C;
|
|
}
|
|
|
|
.maximized window, .fullscreen window, .tiled window, .tiled-top window, .tiled-right window, .tiled-bottom window, .tiled-left window {
|
|
border-radius: 0;
|
|
}
|
|
|
|
.view:selected, iconview:selected, gridview > child:selected, modelbutton.flat:selected, row:selected, calendar:selected, calendar > grid > label.day-number:selected {
|
|
background-color: alpha(currentColor, 0.06);
|
|
}
|
|
|
|
flowbox > flowboxchild:selected, calendar > grid > label.today {
|
|
color: #3281ea;
|
|
background-color: rgba(50, 129, 234, 0.2);
|
|
}
|
|
|
|
textview text selection:focus, textview text selection, label > selection,
|
|
entry > text > selection, spinbutton:not(.vertical) > text > selection, spinbutton.vertical > text > selection, calendar > grid > label.today:selected {
|
|
color: white;
|
|
background-color: #3281ea;
|
|
}
|
|
|
|
.monospace {
|
|
font-family: monospace;
|
|
}
|
|
|
|
/**********************
|
|
* Touch Copy & Paste *
|
|
**********************/
|
|
cursor-handle {
|
|
color: #3281ea;
|
|
-gtk-icon-source: -gtk-recolor(url("assets/scalable/cursor-handle-symbolic.svg"));
|
|
}
|
|
|
|
cursor-handle.insertion-cursor:dir(ltr), cursor-handle.insertion-cursor:dir(rtl) {
|
|
padding-top: 6px;
|
|
}
|
|
|
|
.context-menu {
|
|
font: initial;
|
|
}
|
|
|
|
shortcuts-section {
|
|
margin: 20px;
|
|
}
|
|
|
|
.shortcuts-search-results {
|
|
margin: 20px;
|
|
border-spacing: 24px;
|
|
}
|
|
|
|
shortcut {
|
|
border-spacing: 6px;
|
|
}
|
|
|
|
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.12);
|
|
border-radius: 5px;
|
|
box-shadow: inset 0 -2px rgba(255, 255, 255, 0.12);
|
|
background-color: #3C3C3C;
|
|
color: white;
|
|
font-size: smaller;
|
|
}
|
|
|
|
:not(decoration):not(window):drop(active) {
|
|
caret-color: #3281ea;
|
|
}
|
|
|
|
stackswitcher {
|
|
min-height: 0;
|
|
padding: 0;
|
|
margin: 4px 0;
|
|
border-radius: 4px;
|
|
background-color: alpha(currentColor, 0.05);
|
|
}
|
|
|
|
stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action) {
|
|
margin: 0 0;
|
|
border-radius: 4px;
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action).text-button {
|
|
min-width: 100px;
|
|
}
|
|
|
|
stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):focus {
|
|
box-shadow: inset 0 0 0 2px alpha(currentColor, 0.08);
|
|
}
|
|
|
|
stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):active {
|
|
box-shadow: inset 0 0 0 9999px alpha(#3281ea, 0.08);
|
|
background-image: radial-gradient(circle, alpha(#3281ea, 0.08) 10%, transparent 0%);
|
|
}
|
|
|
|
stackswitcher.linked:not(.vertical) > button:not(.suggested-action):not(.destructive-action):checked {
|
|
background-color: #3281ea;
|
|
color: white;
|
|
}
|
|
|
|
stackswitcher button.text-button {
|
|
min-width: 100px;
|
|
}
|
|
|
|
stackswitcher.circular {
|
|
border-spacing: 8px;
|
|
}
|
|
|
|
stackswitcher.circular button.circular,
|
|
stackswitcher.circular button.text-button.circular {
|
|
min-width: 28px;
|
|
min-height: 28px;
|
|
padding: 0;
|
|
}
|
|
|
|
/*************
|
|
* App Icons *
|
|
*************/
|
|
.lowres-icon {
|
|
-gtk-icon-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.2), 0 3px 2.4px 0 rgba(0, 0, 0, 0.14), 0 1px 4.8px 0 rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.icon-dropshadow {
|
|
-gtk-icon-shadow: 0 3px 3px -1px rgba(0, 0, 0, 0.2), 0 6px 6px 0 rgba(0, 0, 0, 0.14), 0 1px 10.8px 0 rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
/*********
|
|
* Emoji *
|
|
*********/
|
|
popover.emoji-picker {
|
|
padding: 0;
|
|
}
|
|
|
|
popover.emoji-picker > contents {
|
|
padding: 0;
|
|
}
|
|
|
|
.emoji-searchbar {
|
|
padding: 4px;
|
|
border-spacing: 4px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
background: none;
|
|
}
|
|
|
|
.emoji-searchbar entry text {
|
|
background: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.emoji-toolbar {
|
|
padding: 0;
|
|
border-spacing: 2px;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
background: none;
|
|
}
|
|
|
|
button.emoji-section {
|
|
margin: 0;
|
|
padding: 4px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
button.emoji-section:checked {
|
|
color: #3281ea;
|
|
}
|
|
|
|
popover.emoji-picker emoji {
|
|
font-size: x-large;
|
|
padding: 4px;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
popover.emoji-picker emoji:focus, popover.emoji-picker emoji:hover {
|
|
background: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
emoji-completion-row {
|
|
min-height: 28px;
|
|
padding: 0 8px;
|
|
}
|
|
|
|
emoji-completion-row > box {
|
|
border-spacing: 4px;
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
emoji-completion-row:focus, emoji-completion-row:hover,
|
|
emoji-completion-row emoji:hover, emoji-completion-row emoji:focus {
|
|
background-color: alpha(currentColor, 0.08);
|
|
color: white;
|
|
}
|
|
|
|
popover.entry-completion > contents {
|
|
padding: 0;
|
|
}
|
|
|
|
statusbar {
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
/**************
|
|
* Extensions *
|
|
**************/
|
|
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;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.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: gtkmix(#2B2B2B, white, 85%);
|
|
color: white;
|
|
}
|
|
|
|
button.destructive-action {
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
button.destructive-action, button.destructive-action:checked {
|
|
background-color: #F28B82;
|
|
}
|
|
|
|
button.suggested-action {
|
|
color: white;
|
|
}
|
|
|
|
button.suggested-action, button.suggested-action:checked {
|
|
background-color: #3281ea;
|
|
}
|
|
|
|
button.font separator {
|
|
background-color: transparent;
|
|
}
|
|
|
|
button.font > box {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
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;
|
|
padding: 0;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
outline: none;
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-top-color: rgba(255, 255, 255, 0.12);
|
|
box-shadow: none;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
button.card:hover {
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
border-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
button.card.keyboard-activating, button.card:active {
|
|
animation: none;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3), 0 0 0 2px transparent;
|
|
}
|
|
|
|
button.card:checked {
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
background-clip: border-box;
|
|
background-color: #3281ea;
|
|
color: white;
|
|
border-color: #498fec;
|
|
border-bottom-color: #1b73e8;
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), background-color 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
button.card:drop(active) {
|
|
color: #FF7043;
|
|
box-shadow: inset 0 0 0 1px #FF7043;
|
|
}
|
|
|
|
menubutton.osd {
|
|
background: none;
|
|
color: inherit;
|
|
}
|
|
|
|
menubutton.suggested-action {
|
|
background-color: #3281ea;
|
|
color: white;
|
|
}
|
|
|
|
menubutton.destructive-action {
|
|
background-color: #F28B82;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
menubutton.opaque {
|
|
background-color: gtkmix(#2B2B2B, white, 85%);
|
|
color: white;
|
|
}
|
|
|
|
menubutton.suggested-action, menubutton.destructive-action, menubutton.opaque {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
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.image-button > button {
|
|
min-width: 24px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
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: 4px;
|
|
}
|
|
|
|
splitbutton, splitbutton > separator {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
transition-property: background;
|
|
}
|
|
|
|
splitbutton > separator {
|
|
margin-top: 4px;
|
|
margin-bottom: 4px;
|
|
background: none;
|
|
}
|
|
|
|
splitbutton > menubutton > button {
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
splitbutton.image-button > button {
|
|
min-width: 24px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
splitbutton.text-button.image-button > button, splitbutton.image-text-button > button {
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
splitbutton.text-button.image-button > button > box, splitbutton.image-text-button > button > box {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
splitbutton > button:dir(ltr),
|
|
splitbutton > menubutton > button:dir(rtl) {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
margin-right: -1px;
|
|
}
|
|
|
|
splitbutton > button:dir(rtl),
|
|
splitbutton > menubutton > button:dir(ltr) {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
margin-left: -1px;
|
|
}
|
|
|
|
splitbutton.flat > separator {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
splitbutton.flat:hover, splitbutton.flat:active, splitbutton.flat:checked {
|
|
background: alpha(currentColor, 0.1);
|
|
color: white;
|
|
}
|
|
|
|
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: 4px;
|
|
}
|
|
|
|
splitbutton.suggested-action {
|
|
background-color: #3281ea;
|
|
color: white;
|
|
}
|
|
|
|
splitbutton.destructive-action {
|
|
background-color: #F28B82;
|
|
color: rgba(0, 0, 0, 0.87);
|
|
}
|
|
|
|
splitbutton.opaque {
|
|
background-color: gtkmix(#2B2B2B, white, 85%);
|
|
color: white;
|
|
}
|
|
|
|
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.12);
|
|
}
|
|
|
|
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.12);
|
|
}
|
|
|
|
splitbutton > menubutton > button > arrow.none {
|
|
-gtk-icon-source: -gtk-icontheme("pan-down-symbolic");
|
|
}
|
|
|
|
buttoncontent {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
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 {
|
|
margin: 8px;
|
|
margin-bottom: 24px;
|
|
border-radius: 9999px;
|
|
border-spacing: 4px;
|
|
padding: 4px;
|
|
}
|
|
|
|
toast:dir(ltr) {
|
|
padding-left: 8px;
|
|
}
|
|
|
|
toast:dir(rtl) {
|
|
padding-right: 8px;
|
|
}
|
|
|
|
toast > widget {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box {
|
|
margin: 24px 8px;
|
|
border-spacing: 16px;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box > clamp > box {
|
|
border-spacing: 8px;
|
|
}
|
|
|
|
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: 16px 4px 8 2;
|
|
border-spacing: 16px;
|
|
}
|
|
|
|
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: 8px;
|
|
}
|
|
|
|
statuspage.compact > scrolledwindow > viewport > box > clamp > box > .title {
|
|
font-size: 18pt;
|
|
}
|
|
|
|
list.content,
|
|
list.boxed-list, .card {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1), border 300ms cubic-bezier(0, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0, 0, 0.2, 1);
|
|
outline: none;
|
|
box-shadow: inset 0 0 0 1px transparent, 0 0 0 2px transparent;
|
|
background-color: #2B2B2B;
|
|
color: white;
|
|
border-color: rgba(255, 255, 255, 0.08);
|
|
border-top-color: rgba(255, 255, 255, 0.12);
|
|
border-radius: 5px;
|
|
box-shadow: none;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
.card.activatable {
|
|
transition: all 75ms cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
|
|
.card.activatable:hover {
|
|
background-image: image(alpha(currentColor, 0.03));
|
|
}
|
|
|
|
.card.activatable:active {
|
|
background-image: image(alpha(currentColor, 0.08));
|
|
}
|
|
|
|
preferencespage > scrolledwindow > viewport > clamp > box {
|
|
margin: 16px 8px;
|
|
border-spacing: 16px;
|
|
}
|
|
|
|
preferencesgroup > box, preferencesgroup > box .labels {
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
preferencesgroup > box > box.header:not(.single-line) {
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
preferencesgroup > box > box.single-line {
|
|
min-height: 34px;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box {
|
|
margin: 24px 8px;
|
|
border-spacing: 24px;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box > clamp > box {
|
|
border-spacing: 8px;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box > clamp > box > .icon {
|
|
-gtk-icon-size: 128px;
|
|
color: alpha(currentColor, 0.55);
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box > clamp > box > .icon:disabled {
|
|
opacity: 0.35;
|
|
}
|
|
|
|
statuspage > scrolledwindow > viewport > box > clamp > box > .icon:not(:last-child) {
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
statuspage.compact > scrolledwindow > viewport > box {
|
|
margin: 16px 8px;
|
|
border-spacing: 16px;
|
|
}
|
|
|
|
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: 8px;
|
|
}
|
|
|
|
statuspage.compact > scrolledwindow > viewport > box > clamp > box > .title {
|
|
font-size: 18pt;
|
|
}
|
|
|
|
viewswitcher {
|
|
margin: 0;
|
|
}
|
|
|
|
viewswitcher.wide {
|
|
border-spacing: 2px;
|
|
border-radius: 4px;
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
margin-top: 4px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
viewswitcher.wide > button.toggle, viewswitcher.wide > button.toggle.flat {
|
|
padding: 0 4px;
|
|
}
|
|
|
|
viewswitcher.wide button.toggle:checked, viewswitcher.wide button.toggle.flat:checked {
|
|
background-color: #3281ea;
|
|
color: white;
|
|
}
|
|
|
|
viewswitcher.wide button.toggle:checked:backdrop, viewswitcher.wide button.toggle.flat:checked:backdrop {
|
|
color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
viewswitcher.wide button.toggle:checked indicatorbin.needs-attention > indicator, viewswitcher.wide button.toggle.flat:checked indicatorbin.needs-attention > indicator {
|
|
background-color: white;
|
|
}
|
|
|
|
viewswitcher.wide button.toggle:checked indicatorbin.needs-attention > indicator > label, viewswitcher.wide button.toggle.flat:checked indicatorbin.needs-attention > indicator > label {
|
|
color: #3281ea;
|
|
}
|
|
|
|
viewswitcher.narrow button.toggle {
|
|
border-radius: 0;
|
|
margin: 0;
|
|
border: none;
|
|
}
|
|
|
|
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: 5px;
|
|
padding-bottom: 3px;
|
|
border-spacing: 2px;
|
|
}
|
|
|
|
viewswitcher button.toggle > stack > box.narrow > stack > label {
|
|
padding-left: 6px;
|
|
padding-right: 6px;
|
|
}
|
|
|
|
viewswitcher button.toggle > stack > box.wide {
|
|
padding: 0 8px;
|
|
border-spacing: 4px;
|
|
}
|
|
|
|
viewswitcherbar actionbar > revealer > box {
|
|
padding: 0;
|
|
}
|
|
|
|
viewswitchertitle viewswitcher {
|
|
margin-left: 8px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
indicatorbin > indicator, indicatorbin > mask {
|
|
min-width: 4px;
|
|
min-height: 4px;
|
|
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: #3281ea;
|
|
}
|
|
|
|
indicatorbin.needs-attention > indicator > label {
|
|
color: white;
|
|
}
|
|
|
|
row label.subtitle {
|
|
font-size: smaller;
|
|
}
|
|
|
|
row > box.header {
|
|
margin-left: 8px;
|
|
margin-right: 8px;
|
|
min-height: 36px;
|
|
}
|
|
|
|
row > box.header > .icon:disabled {
|
|
filter: opacity(0.45);
|
|
}
|
|
|
|
row > box.header > box.title {
|
|
margin-top: 4px;
|
|
margin-bottom: 4px;
|
|
border-spacing: 2px;
|
|
}
|
|
|
|
row.combo image.dropdown-arrow:disabled {
|
|
filter: opacity(0.45);
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
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);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
list.content > row:not(:selected).activatable:hover, list.content > row.expander row.header:not(:selected).activatable:hover,
|
|
list.boxed-list > row:not(:selected).activatable:hover,
|
|
list.boxed-list > row.expander row.header:not(:selected).activatable:hover, row.expander list.nested > row:not(:selected).activatable:hover {
|
|
background-color: alpha(currentColor, 0.08);
|
|
}
|
|
|
|
list.content > row:not(:selected).activatable:active, list.content > row.expander row.header:not(:selected).activatable:active,
|
|
list.boxed-list > row:not(:selected).activatable:active,
|
|
list.boxed-list > row.expander row.header:not(:selected).activatable:active, row.expander list.nested > row:not(:selected).activatable:active {
|
|
background-color: alpha(currentColor, 0.16);
|
|
}
|
|
|
|
list.content > row:not(:selected).activatable.has-open-popup, list.content > row.expander row.header:not(:selected).activatable.has-open-popup,
|
|
list.boxed-list > row:not(:selected).activatable.has-open-popup,
|
|
list.boxed-list > row.expander row.header:not(:selected).activatable.has-open-popup, row.expander list.nested > row:not(:selected).activatable.has-open-popup {
|
|
background-color: alpha(currentColor, 0.06);
|
|
}
|
|
|
|
row.expander {
|
|
background: none;
|
|
padding: 0px;
|
|
}
|
|
|
|
row.expander > box > list {
|
|
background: none;
|
|
color: inherit;
|
|
}
|
|
|
|
row.expander list.nested {
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
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.25turn);
|
|
}
|
|
|
|
row.expander:not(:checked) image.expander-row-arrow:dir(rtl) {
|
|
-gtk-icon-transform: rotate(0.25turn);
|
|
}
|
|
|
|
row.expander:checked image.expander-row-arrow:not(:disabled) {
|
|
color: #3281ea;
|
|
}
|
|
|
|
.osd row.expander:checked image.expander-row-arrow:not(:disabled) {
|
|
color: inherit;
|
|
}
|
|
|
|
row.expander image.expander-row-arrow:disabled {
|
|
filter: opacity(0.45);
|
|
}
|
|
|
|
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: 4px;
|
|
border-top-right-radius: 4px;
|
|
}
|
|
|
|
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.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 {
|
|
border-bottom-left-radius: 4px;
|
|
border-bottom-right-radius: 4px;
|
|
border-bottom-width: 0;
|
|
}
|
|
|
|
.unfolded stacksidebar.sidebar {
|
|
border: none;
|
|
}
|
|
|
|
leaflet > box > scrolledwindow > viewport > widget > stack {
|
|
background-color: #2B2B2B;
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle {
|
|
padding: 0;
|
|
background: none;
|
|
box-shadow: none;
|
|
outline-color: transparent;
|
|
outline-width: 2px;
|
|
outline-offset: 3px;
|
|
outline-style: solid;
|
|
border: none;
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle, preferencesgroup > box button.background-preview-button.toggle > background-preview {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle:hover {
|
|
outline-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle:active {
|
|
outline-color: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
preferencesgroup > box button.background-preview-button.toggle:checked {
|
|
outline-color: #3281ea;
|
|
}
|
|
|
|
tabbar .box {
|
|
min-height: 28px;
|
|
}
|
|
|
|
tabbar tabbox > tabboxchild {
|
|
border-radius: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
tabbar tabbox > separator {
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
transition: opacity 150ms ease-in-out;
|
|
}
|
|
|
|
tabbar tabbox > separator.hidden {
|
|
opacity: 0;
|
|
}
|
|
|
|
tabbar tabbox > revealer > indicator {
|
|
min-width: 2px;
|
|
border-radius: 2px;
|
|
margin: 6px 4px;
|
|
background: alpha(#3281ea, 0.5);
|
|
}
|
|
|
|
tabbar tab {
|
|
transition: background 150ms ease-in-out;
|
|
border-width: 1px;
|
|
border-color: transparent;
|
|
border-style: solid;
|
|
min-height: 20px;
|
|
min-width: 20px;
|
|
padding: 2px 12px;
|
|
background-clip: padding-box;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
background-color: transparent;
|
|
}
|
|
|
|
tabbar tab:selected, tabbar tab:checked, tabbar tab:active, tabbar tab:active:hover, tabbar tab:checked:hover {
|
|
background-color: #2B2B2B;
|
|
background-clip: padding-box;
|
|
border-color: #4d4d4d;
|
|
color: white;
|
|
}
|
|
|
|
tabbar tab:hover {
|
|
background-color: rgba(255, 255, 255, 0.04);
|
|
box-shadow: none;
|
|
color: white;
|
|
}
|
|
|
|
tabbar .start-action,
|
|
tabbar .end-action {
|
|
padding: 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:not(.inline) .box {
|
|
background-color: #333333;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
padding: 0;
|
|
box-shadow: none;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
tabbar:not(.inline):backdrop .box > scrolledwindow,
|
|
tabbar:not(.inline):backdrop .box > .start-action,
|
|
tabbar:not(.inline):backdrop .box > .end-action {
|
|
filter: opacity(0.5);
|
|
}
|
|
|
|
dnd tab {
|
|
background-color: #333333;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
box-shadow: none;
|
|
margin: 16px;
|
|
}
|
|
|
|
tabbar tab,
|
|
dnd tab {
|
|
min-height: 28px;
|
|
padding: 2px 4px;
|
|
border-radius: 4px 4px 0 0;
|
|
margin-top: 2px;
|
|
margin-bottom: -1px;
|
|
}
|
|
|
|
tabbar tab button.image-button,
|
|
dnd tab button.image-button {
|
|
padding: 0;
|
|
margin: 0;
|
|
min-width: 20px;
|
|
min-height: 20px;
|
|
border-radius: 9999px;
|
|
border: none;
|
|
}
|
|
|
|
tabbar tab indicator,
|
|
dnd tab indicator {
|
|
min-height: 2px;
|
|
border-radius: 2px;
|
|
background: alpha(#3281ea, 0.5);
|
|
}
|
|
|
|
tabview:drop(active),
|
|
tabbox:drop(active) {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* GTK NAMED COLORS
|
|
----------------
|
|
use responsibly! */
|
|
/*
|
|
widget text/foreground color */
|
|
@define-color theme_fg_color white;
|
|
/*
|
|
text color for entries, views and content in general */
|
|
@define-color theme_text_color white;
|
|
/*
|
|
widget base background color */
|
|
@define-color theme_bg_color #333333;
|
|
/*
|
|
text widgets and the like base background color */
|
|
@define-color theme_base_color #2B2B2B;
|
|
/*
|
|
base background color of selections */
|
|
@define-color theme_selected_bg_color #3281ea;
|
|
/*
|
|
text/foreground color of selections */
|
|
@define-color theme_selected_fg_color white;
|
|
/*
|
|
base background color of insensitive widgets */
|
|
@define-color insensitive_bg_color #333333;
|
|
/*
|
|
text foreground color of insensitive widgets */
|
|
@define-color insensitive_fg_color rgba(255, 255, 255, 0.5);
|
|
/*
|
|
insensitive text widgets and the like base background color */
|
|
@define-color insensitive_base_color #303030;
|
|
/*
|
|
widget text/foreground color on backdrop windows */
|
|
@define-color theme_unfocused_fg_color white;
|
|
/*
|
|
text color for entries, views and content in general on backdrop windows */
|
|
@define-color theme_unfocused_text_color white;
|
|
/*
|
|
widget base background color on backdrop windows */
|
|
@define-color theme_unfocused_bg_color #333333;
|
|
/*
|
|
text widgets and the like base background color on backdrop windows */
|
|
@define-color theme_unfocused_base_color #2B2B2B;
|
|
/*
|
|
base background color of selections on backdrop windows */
|
|
@define-color theme_unfocused_selected_bg_color #3281ea;
|
|
/*
|
|
text/foreground color of selections on backdrop windows */
|
|
@define-color theme_unfocused_selected_fg_color white;
|
|
/*
|
|
insensitive color on backdrop windows */
|
|
@define-color unfocused_insensitive_color rgba(255, 255, 255, 0.5);
|
|
/*
|
|
widgets main borders color */
|
|
@define-color borders rgba(255, 255, 255, 0.12);
|
|
/*
|
|
widgets main borders color on backdrop windows */
|
|
@define-color unfocused_borders rgba(255, 255, 255, 0.12);
|
|
/*
|
|
these are pretty self explicative */
|
|
@define-color warning_color #FDD633;
|
|
@define-color error_color #F28B82;
|
|
@define-color success_color #81C995;
|
|
/*
|
|
these colors are exported for the window manager and shouldn't be used in applications,
|
|
read if you used those and something break with a version upgrade you're on your own... */
|
|
@define-color wm_title white;
|
|
@define-color wm_unfocused_title rgba(255, 255, 255, 0.7);
|
|
@define-color wm_highlight rgba(255, 255, 255, 0.1);
|
|
@define-color wm_bg #202020;
|
|
@define-color wm_unfocused_bg #2C2C2C;
|
|
@define-color wm_unfocused_bg #2C2C2C;
|
|
@define-color wm_button_close_hover_bg #E57373;
|
|
@define-color wm_button_close_active_bg #E53935;
|
|
/*
|
|
FIXME this is really an API */
|
|
@define-color content_view_bg #2B2B2B;
|
|
@define-color placeholder_text_color #bfbfbf;
|
|
/* Very contrasty background for text views (@theme_text_color foreground) */
|
|
@define-color text_view_bg #1c1c1c;
|
|
@define-color budgie_tasklist_indicator_color #3281ea;
|
|
@define-color budgie_tasklist_indicator_color_active #3281ea;
|
|
@define-color budgie_tasklist_indicator_color_active_window rgba(174, 174, 174, 0.908);
|
|
@define-color budgie_tasklist_indicator_color_attention #FDD633;
|
|
@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;
|