mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +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.
|
* Rights Reserved.
|
||||||
*
|
*
|
||||||
* Contributor(s):
|
* Contributor(s):
|
||||||
|
* Blake Ross <BlakeR1234@aol.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
|
@namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
|
||||||
@ -529,6 +530,7 @@ input[type="radio"] {
|
|||||||
input[type="radio"][disabled] {
|
input[type="radio"][disabled] {
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
|
background-color:rgb(204, 204, 204);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="radio"]:focus {
|
input[type="radio"]:focus {
|
||||||
@ -593,6 +595,7 @@ input[type="checkbox"]:active {
|
|||||||
|
|
||||||
input[type="checkbox"][disabled] {
|
input[type="checkbox"][disabled] {
|
||||||
border: 2px solid;
|
border: 2px solid;
|
||||||
|
background-color:rgb(204, 204, 204);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"][disabled]:hover {
|
input[type="checkbox"][disabled]:hover {
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
* Rights Reserved.
|
* Rights Reserved.
|
||||||
*
|
*
|
||||||
* Contributor(s):
|
* Contributor(s):
|
||||||
|
* Blake Ross <BlakeR1234@aol.com>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
|
@namespace url(http://www.w3.org/1999/xhtml); /* set default namespace to HTML */
|
||||||
@ -529,6 +530,7 @@ input[type="radio"] {
|
|||||||
input[type="radio"][disabled] {
|
input[type="radio"][disabled] {
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
|
background-color:rgb(204, 204, 204);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="radio"]:focus {
|
input[type="radio"]:focus {
|
||||||
@ -593,6 +595,7 @@ input[type="checkbox"]:active {
|
|||||||
|
|
||||||
input[type="checkbox"][disabled] {
|
input[type="checkbox"][disabled] {
|
||||||
border: 2px solid;
|
border: 2px solid;
|
||||||
|
background-color:rgb(204, 204, 204);
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"][disabled]:hover {
|
input[type="checkbox"][disabled]:hover {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user