summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2020-05-18 18:40:24 +0200
committerSimon Rettberg2020-07-30 13:24:24 +0200
commit1d5ff85c2c288ec1363a9779e8e3ab62ce5e991b (patch)
tree753b3fcda16ff23fce472532c4bc289fe145156d
parent[inc/Permission] add mergeWithDisallowed (diff)
downloadslx-admin-1d5ff85c2c288ec1363a9779e8e3ab62ce5e991b.tar.gz
slx-admin-1d5ff85c2c288ec1363a9779e8e3ab62ce5e991b.tar.xz
slx-admin-1d5ff85c2c288ec1363a9779e8e3ab62ce5e991b.zip
[default.css] Make labels with disabled class gray
-rw-r--r--style/default.css6
1 files changed, 5 insertions, 1 deletions
diff --git a/style/default.css b/style/default.css
index 99c4321f..ff67427a 100644
--- a/style/default.css
+++ b/style/default.css
@@ -594,7 +594,7 @@ table.slx-ellipsis td {
white-space: nowrap;
}
-div.disabled, ul.nav > li.disabled {
+div.disabled, ul.nav > li.disabled, label.disabled {
cursor: not-allowed;
}
@@ -617,3 +617,7 @@ div.disabled-hack {
padding: 0;
display: inline-block;
}
+
+label.disabled {
+ color: #888;
+} \ No newline at end of file