1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
cell .baobab-cell-error {
color: var(--error-color);
font-weight: 700;
}
cell .baobab-cell-warning {
color: var(--warning-color);
font-weight: 700;
}
cell .baobab-cell-warning:selected,
cell .baobab-cell-error:selected {
color: var(--accent-fg-color);
}
cell box.baobab-cell-box {
border-spacing: 6px;
}
progresscell progress {
background: var(--accent-bg-color);
border-radius: 5px;
}
progresscell {
border-radius: 5px;
min-height: 18px;
}
progresscell trough {
background: color-mix(in srgb, var(--border-color), transparent);
}
progresscell label {
font-size: 0.9em;
padding: 1px 3px;
}
progresscell label.in-progress {
color: var(--accent-fg-color);
}
/* FolderDisplay */
window.background stack > grid > frame border {
border-width: 0 1px 1px 0;
}
/* regular TreeView */
window.background stack > grid > scrolledwindow.frame {
border-width: 0 1px 0 0;
}
window.background stack treeview:hover:not(:selected) {
background: var(--window-bg-color);
}
.pathbar {
border-radius: 6px;
background-color: color-mix(in srgb, currentColor 10%, transparent);
}
.pathbar button {
margin: 3px;
border-radius: 4px;
padding-top: 0px;
padding-bottom: 0px;
}
.pathbar button:not(:hover),
.pathbar button.current-dir {
background: none;
box-shadow: none;
}
.pathbar button:not(.current-dir):not(:backdrop):hover label,
.pathbar button:not(.current-dir):not(:backdrop):hover image {
opacity: 1;
}
.pathbar > scrolledwindow undershoot.left {
background: linear-gradient(to right, var(--headerbar-shade-color) 6px, transparent 24px);
}
.pathbar > scrolledwindow undershoot.right {
background: linear-gradient(to left, var(--headerbar-shade-color) 6px, transparent 24px);
}
image.symbolic-circular {
background-color: color-mix(in srgb, currentColor 8%, transparent);
min-width: 32px;
min-height: 32px;
border-radius: 50%;
}
window infobar.warning,
window infobar.error {
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: var(--border-color);
}
ringschart.subfolder-tip {
color: white;
background-color: rgb(0 0 0 / 0.8);
background-clip: padding-box;
border-radius: 9px;
padding: 6px 10px;
}
:drop(active) .contents {
outline-style: solid;
outline-width: 3px;
outline-color: color-mix(in srgb, var(--accent-bg-color), transparent);
outline-offset: -3px;
}
|