diff options
| author | Mark Otto <[email protected]> | 2013-05-19 22:06:10 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-05-19 22:06:10 -0700 |
| commit | 35573db810fbcbb9d7aefde090fbad3dbd332271 (patch) | |
| tree | 0bf124a956bf53da22fc02a6bb6838b43b530fb3 /less/forms.less | |
| parent | 5f7352a6fe5f7a7eef4dce64184f55d1fec2676b (diff) | |
| download | bootstrap-35573db810fbcbb9d7aefde090fbad3dbd332271.tar.xz bootstrap-35573db810fbcbb9d7aefde090fbad3dbd332271.zip | |
Fixes #7611: fix optgroup formatting for Firefox
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/less/forms.less b/less/forms.less index 303c3b617..c61fd50fa 100644 --- a/less/forms.less +++ b/less/forms.less @@ -124,6 +124,13 @@ select[size] { height: auto; } +// Fix optgroup Firefox bug per https://github.com/twitter/bootstrap/issues/7611 +select optgroup { + font-size: inherit; + font-style: inherit; + font-family: inherit; +} + // Focus for select, file, radio, and checkbox input[type="file"]:focus, input[type="radio"]:focus, |
