mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-01 12:03:08 +00:00
Fix disabled style rules for HTML checkboxes and radio buttons (44474). a=ekrock
This commit is contained in:
parent
85b46024d2
commit
31f902b123
@ -17,6 +17,7 @@
|
||||
* Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
* Blake Ross <BlakeR1234@aol.com>
|
||||
*/
|
||||
|
||||
@namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
|
||||
@ -529,6 +530,7 @@ input[type="radio"] {
|
||||
input[type="radio"][disabled] {
|
||||
border: 1px solid;
|
||||
padding: 1px;
|
||||
background-color:rgb(204, 204, 204);
|
||||
}
|
||||
|
||||
input[type="radio"]:focus {
|
||||
@ -593,6 +595,7 @@ input[type="checkbox"]:active {
|
||||
|
||||
input[type="checkbox"][disabled] {
|
||||
border: 2px solid;
|
||||
background-color:rgb(204, 204, 204);
|
||||
}
|
||||
|
||||
input[type="checkbox"][disabled]:hover {
|
||||
|
@ -17,6 +17,7 @@
|
||||
* Rights Reserved.
|
||||
*
|
||||
* Contributor(s):
|
||||
* Blake Ross <BlakeR1234@aol.com>
|
||||
*/
|
||||
|
||||
@namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
|
||||
@ -529,6 +530,7 @@ input[type="radio"] {
|
||||
input[type="radio"][disabled] {
|
||||
border: 1px solid;
|
||||
padding: 1px;
|
||||
background-color:rgb(204, 204, 204);
|
||||
}
|
||||
|
||||
input[type="radio"]:focus {
|
||||
@ -593,6 +595,7 @@ input[type="checkbox"]:active {
|
||||
|
||||
input[type="checkbox"][disabled] {
|
||||
border: 2px solid;
|
||||
background-color:rgb(204, 204, 204);
|
||||
}
|
||||
|
||||
input[type="checkbox"][disabled]:hover {
|
||||
|
Loading…
x
Reference in New Issue
Block a user