The changes to the select are to bring it back inline with what the rules were before they were optimized

The checkbox changes are to give it margins in standard mode and themake the vertical-align bottom so it is positioned correctly on the line.
Bug 62445, Bug 62350 r=kmcclusk, sr=buster


git-svn-id: svn://10.0.0.236/trunk@83628 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rods%netscape.com 2000-12-14 15:18:45 +00:00
parent 92ed2563d1
commit ba3e6cf8d0
2 changed files with 20 additions and 12 deletions

View File

@ -107,6 +107,13 @@ select {
-moz-box-sizing: border-box;
}
select[size] {
padding: 1px 0 1px 0;
}
select[size="1"] {
padding: 0;
}
select > input[type="button"] {
position: static ! important;
white-space: nowrap;
@ -148,11 +155,7 @@ option {
-moz-user-focus: none;
}
select[size] > option {
padding: 0 5px 0 5px;
}
select > option, select[size="1"] > option {
select > option {
padding: 0 5px 0 3px;
}
@ -252,8 +255,9 @@ input[type="checkbox"] {
width: 13px;
height: 13px;
cursor: default;
vertical-align: baseline;
vertical-align: bottom;
-moz-binding: none;
margin: 3px 4px 3px 4px;
}
/* common features of radio buttons and check boxes */

View File

@ -107,6 +107,13 @@ select {
-moz-box-sizing: border-box;
}
select[size] {
padding: 1px 0 1px 0;
}
select[size="1"] {
padding: 0;
}
select > input[type="button"] {
position: static ! important;
white-space: nowrap;
@ -148,11 +155,7 @@ option {
-moz-user-focus: none;
}
select[size] > option {
padding: 0 5px 0 5px;
}
select > option, select[size="1"] > option {
select > option {
padding: 0 5px 0 3px;
}
@ -252,8 +255,9 @@ input[type="checkbox"] {
width: 13px;
height: 13px;
cursor: default;
vertical-align: baseline;
vertical-align: bottom;
-moz-binding: none;
margin: 3px 4px 3px 4px;
}
/* common features of radio buttons and check boxes */