mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
b1ab2535df
Added a new test16.html sample to test gfx-rendered widgets to viewer. Added support for test17.html sample to test printing.
41 lines
715 B
CSS
41 lines
715 B
CSS
|
|
input[type="checkbox"] {
|
|
-moz-border-radius:0px;
|
|
width:12px;
|
|
height:12px;
|
|
border-color:rgb(240,240,240);
|
|
border-width:2px;
|
|
border-style:inset;
|
|
background-color:rgb(200, 200, 200);
|
|
}
|
|
|
|
input[type="radio"] {
|
|
width:14px;
|
|
height:14px;
|
|
border:1px solid black;
|
|
background-color:rgb(200, 200, 200);
|
|
}
|
|
|
|
input[type=button] {
|
|
padding-left:10px;
|
|
padding-right:10px;
|
|
border-color:rgb(240,240,240);
|
|
border-width:2px;
|
|
-moz-border-radius:0px;
|
|
font-weight:bold;
|
|
}
|
|
|
|
select {
|
|
border-color:rgb(240,240,240);
|
|
border-width:2px;
|
|
border-style:inset;
|
|
-moz-border-radius:0px;
|
|
background-color:rgb(200, 200, 200);
|
|
}
|
|
|
|
:-moz-dropdown-list {
|
|
border-color:black;
|
|
background-color:rgb(200, 200, 200);
|
|
}
|
|
|