In the forms.css and bidi,css stylesheets, there are some rules that add padding to the <option> class.
Padding can't be added to <option> so these rules have no effect,
Can it be deleted?
File:
forms.css
|
Delete:
option {
|
padding-right: 1em;
|
}
|
Find:
select optgroup option {
|
padding-right: 1em;
|
font-family: Verdana, Helvetica, Arial, sans-serif;
|
}
|
Change To:
select optgroup option {
|
font-family: Verdana, Helvetica, Arial, sans-serif;
|
}
|
File:
bidi.css
|
Delete:
.rtl option {
|
padding-right: 0; |
padding-left: 1em;
|
}
|