-
Bug
-
Resolution: Fixed
-
Minor
-
3.0.3
-
None
Since FF 3.0.x the fontsize in select boxes is to big.
In prosilver standard fontsize for selects is definded here:
fieldset {
|
border-width:0;
|
font-family:Verdana,Helvetica,Arial,sans-serif;
|
font-size:1.1em;
|
}
|
But this doesn't work in FF 3.0.x
My solution:
The css for fieldset remains.
fieldset {
|
border-width:0;
|
font-family:Verdana,Helvetica,Arial,sans-serif;
|
font-size:1.1em;
|
}
|
you change the definition for select:
select {
|
background-color:#FAFAFA;
|
border:1px solid #666666;
|
cursor:pointer;
|
font-family:Verdana,Helvetica,Arial,sans-serif;
|
font-weight:normal;
|
padding:1px;
|
vertical-align:middle;
|
|
font-size: 1em;
|
}
|
Adding font-size to select will fix the bug. The change has no effects on Opera 9, Internet Explorer 7 and Internet Explorer 6, Firefox 2.
Best regards,
Carolin