summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-12-07 17:11:26 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-12-07 17:11:26 +0100
commit939ba745ee56b51a010d9c1829db1dc0545ed57c (patch)
tree1e34f6cce2509a37c9976fd5f1fddbab60a9bc81
parent48cc4b45110fcd9ff5a2067466d729f8a079b47d (diff)
parent57cd5209cab31bb1a20c4043fb2539c0682d33b8 (diff)
downloadnextcloud-server-939ba745ee56b51a010d9c1829db1dc0545ed57c.tar.gz
nextcloud-server-939ba745ee56b51a010d9c1829db1dc0545ed57c.zip
Merge pull request #20991 from owncloud/disabled-checked-checkbox-css-rules
Disabled checked checkbox css rules
-rw-r--r--core/css/inputs.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/core/css/inputs.css b/core/css/inputs.css
index b2d78c25621..fe03af85f61 100644
--- a/core/css/inputs.css
+++ b/core/css/inputs.css
@@ -108,10 +108,26 @@ html:not(.ie8) input[type="checkbox"].checkbox:checked + label:before {
background-image: url('../img/actions/checkbox-checked.svg');
}
+html:not(.ie8) input[type="checkbox"].checkbox:disabled + label:before {
+ background-image: url('../img/actions/checkbox-disabled.svg');
+}
+
+html:not(.ie8) input[type="checkbox"].checkbox:checked:disabled + label:before {
+ background-image: url('../img/actions/checkbox-checked-disabled.svg');
+}
+
html:not(.ie8) input[type="checkbox"].checkbox--white:checked + label:before {
background-image: url('../img/actions/checkbox-checked-white.svg');
}
+html:not(.ie8) input[type="checkbox"].checkbox--white:disabled + label:before {
+ background-image: url('../img/actions/checkbox-disabled-white.svg');
+}
+
+html:not(.ie8) input[type="checkbox"].checkbox--white:checked:disabled + label:before {
+ background-image: url('../img/actions/checkbox-checked-disabled.svg');
+}
+
html:not(.ie8) input[type="checkbox"].checkbox:hover+label:before, input[type="checkbox"]:focus+label:before {
color:#111 !important;
}