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
|
/* ColorWidget */
colorwidget {
border-radius: 50%;
}
/* DetailsView */
.arguments-view textview,
.arguments-view textview text {
background: none;
}
/* DiagramHeader */
.diagram-header-arrow {
transition: -gtk-icon-transform 200ms ease-out;
}
.diagram-header-arrow:dir(ltr) {
-gtk-icon-transform: rotate(0.5turn);
}
.diagram-header-arrow:dir(rtl) {
-gtk-icon-transform: rotate(-0.5turn);
}
.diagram-header-arrow.expanded {
-gtk-icon-transform: rotate(0turn);
}
/* FilterPane */
.filter-pane-row {
padding: 6px 12px;
}
/* ProgressCell */
progress-cell progress {
background: var(--accent-bg-color);
border-radius: 3px;
}
progress-cell {
min-height: 18px;
min-width: 100px;
}
progress-cell trough {
background: color-mix(in srgb, var(--border-opacity) 50%, transparent);
border-radius: 3px;
}
progress-cell label {
font-size: 0.9em;
padding: 1px 3px;
}
progress-cell label.in-progress {
color: var(--accent-fg-color);
}
|