diff options
| author | Mark Otto <[email protected]> | 2012-03-28 18:18:41 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-28 18:18:41 -0700 |
| commit | 3308d1968f37eb81ef1578a409742e93813a8492 (patch) | |
| tree | 45e5d9ae81a7ff53ab2c95c1016acd4ca25663b1 /less/forms.less | |
| parent | d6680a50b9d4518449b569259a0f150619d4074d (diff) | |
| download | bootstrap-3308d1968f37eb81ef1578a409742e93813a8492.tar.xz bootstrap-3308d1968f37eb81ef1578a409742e93813a8492.zip | |
fix #2846: Firefox required two clicks on selects to get to options dropdown
Diffstat (limited to 'less/forms.less')
| -rw-r--r-- | less/forms.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/less/forms.less b/less/forms.less index 6c7faf0e2..a57732c13 100644 --- a/less/forms.less +++ b/less/forms.less @@ -365,13 +365,13 @@ select:focus:required:invalid { input, select, .uneditable-input { + position: relative; // placed here by default so that on :focus we can place the input above the .add-on for full border and box-shadow goodness margin-bottom: 0; // prevent bottom margin from screwing up alignment in stacked forms *margin-left: 0; vertical-align: middle; .border-radius(0 3px 3px 0); // Make input on top when focused so blue border and shadow always show &:focus { - position: relative; z-index: 2; } } |
