mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
b2ba25b6fd
Bug 211657, r+sr=dbaron
70 lines
1.1 KiB
CSS
70 lines
1.1 KiB
CSS
|
|
input[type="checkbox"] {
|
|
-moz-border-radius:0px;
|
|
width:11px;
|
|
height:11px;
|
|
border:2px inset rgb(192, 192, 192);
|
|
background-color:white;
|
|
color:black;
|
|
}
|
|
|
|
input[type="radio"] {
|
|
-moz-border-radius:6px;
|
|
width:12px;
|
|
height:12px;
|
|
border:2px inset rgb(192, 192, 192);
|
|
background-color:white;
|
|
}
|
|
|
|
::-moz-radio {
|
|
-moz-border-radius:1px;
|
|
border: 2px solid black;
|
|
}
|
|
|
|
input[type=button] {
|
|
-moz-border-radius:0px;
|
|
border: 2px outset rgb(156, 154, 156);
|
|
background-color: rgb(206, 206, 206);
|
|
color:black;
|
|
padding: 1px;
|
|
}
|
|
|
|
input[type="button"]:active {
|
|
border-style:inset;
|
|
padding-left: 2px;
|
|
padding-right: 0px;
|
|
padding-top: 2px;
|
|
padding-bottom: 0px;
|
|
}
|
|
|
|
|
|
input[type="button"]:active:-moz-outline {
|
|
border : 1px solid black;
|
|
}
|
|
|
|
select {
|
|
-moz-border-radius:0px;
|
|
border:2px inset rgb(192, 192, 192);
|
|
}
|
|
|
|
select[size] option:checked {
|
|
background-color:rgb(0, 0, 128);
|
|
color: white;
|
|
}
|
|
|
|
select option:checked {
|
|
background-color:rgb(0, 0, 128);
|
|
color: white;
|
|
}
|
|
|
|
select[size="1"] option:checked {
|
|
background-color:rgb(0, 0, 128);
|
|
color: white;
|
|
}
|
|
|
|
::-moz-dropdown-list {
|
|
border: 1px solid black;
|
|
background-color:white;
|
|
}
|
|
|