summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorMarco Trevisan (TreviƱo) <mail@3v1n0.net>2023-03-23 17:30:34 +0100
committerFelipe Borges <felipeborges@gnome.org>2023-03-28 13:52:12 +0000
commit645b6d1c8a8c7ec4cf6e8cbbeda74f8b6c80d9cf (patch)
tree1202e97b252165dd398f087318a3f1f9d1798c7a /shell
parentda0f0ec021ad2ba50b8026f4eeab9850c0cbf033 (diff)
downloadgnome-control-center-645b6d1c8a8c7ec4cf6e8cbbeda74f8b6c80d9cf.tar.gz
shell/style: Add workaround to make disabled pictures are painted as such
See: https://gitlab.gnome.org/GNOME/libadwaita/-/merge_requests/814
Diffstat (limited to 'shell')
-rw-r--r--shell/style.css8
1 files changed, 8 insertions, 0 deletions
diff --git a/shell/style.css b/shell/style.css
index 7ffc6ab06..4efeb9bc4 100644
--- a/shell/style.css
+++ b/shell/style.css
@@ -5,3 +5,11 @@
.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;
+}