Add a :disabled style for radio inputs and checkboxes. Fixes #26004.

Built from https://develop.svn.wordpress.org/trunk@26170


git-svn-id: http://core.svn.wordpress.org/trunk@26079 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Matt Thomas 2013-11-14 19:46:10 +00:00
parent 188fce6c9b
commit 46c9c4f33f
5 changed files with 11 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -37,6 +37,13 @@ input[type=radio] {
box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
}
input[type=checkbox]:disabled,
input[type=radio]:disabled,
input[type=checkbox]:disabled:checked:before,
input[type=radio]:disabled:checked:before {
opacity: 0.5;
}
input[type=checkbox]:checked:before {
color: #1e8cbe;
}

File diff suppressed because one or more lines are too long