35 lines
746 B
CSS
35 lines
746 B
CSS
.drag-handle {
|
|
color: alpha(@theme_fg_color, 0.4);
|
|
}
|
|
|
|
.drag-handle:backdrop {
|
|
color: alpha(@theme_unfocused_fg_color, 0.4);
|
|
}
|
|
|
|
.split-row picture:disabled,
|
|
.illustrated-row picture:disabled {
|
|
/* FIXME: This is a workaround to handle disabled pictures
|
|
* see: https: //gitlab.gnome.org/GNOME/libadwaita/-/merge_requests/814
|
|
*/
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* FIXME: This is a mimic of AdwStatusPage, which would show an unwanted scrollbar in this case
|
|
* see: https://gitlab.gnome.org/GNOME/libadwaita/-/issues/697
|
|
*/
|
|
|
|
clamp.status-page {
|
|
margin: 36px 12px;
|
|
}
|
|
|
|
clamp.status-page .icon:not(:last-child) {
|
|
margin-bottom: 36px;
|
|
}
|
|
|
|
clamp.status-page .title:not(:last-child) {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
clamp.status-page .pill {
|
|
margin-top: 36px;
|
|
}
|