diff options
| author | Mark Otto <[email protected]> | 2012-09-04 11:00:25 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-09-04 11:00:25 -0700 |
| commit | de36456f5d3498320fae6e2ad106a9a7f38910cc (patch) | |
| tree | 549b21da25457c2f9444bc567b8195d1c7454276 | |
| parent | 1f0043a7f5285018a79e464503a60e0e3215aba9 (diff) | |
| download | bootstrap-de36456f5d3498320fae6e2ad106a9a7f38910cc.tar.xz bootstrap-de36456f5d3498320fae6e2ad106a9a7f38910cc.zip | |
fixes #4957: use input border var for select element instead of #ddd
| -rw-r--r-- | docs/assets/css/bootstrap.css | 2 | ||||
| -rw-r--r-- | less/forms.less | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 32cc021ea..9fa6f766f 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -1073,7 +1073,7 @@ input[type="file"] { select { width: 220px; background-color: #ffffff; - border: 1px solid #bbb; + border: 1px solid #cccccc; } select[multiple], diff --git a/less/forms.less b/less/forms.less index b4b86f907..f8d8562b6 100644 --- a/less/forms.less +++ b/less/forms.less @@ -162,7 +162,7 @@ input[type="file"] { // Make select elements obey height by applying a border select { width: 220px; // default input width + 10px of padding that doesn't get applied - border: 1px solid #bbb; + border: 1px solid @inputBorder; background-color: @inputBackground; // Chrome on Linux and Mobile Safari need background-color } |
