]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fixes #4957: use input border var for select element instead of #ddd
authorMark Otto <markotto@twitter.com>
Tue, 4 Sep 2012 18:00:25 +0000 (11:00 -0700)
committerMark Otto <markotto@twitter.com>
Tue, 4 Sep 2012 18:00:25 +0000 (11:00 -0700)
docs/assets/css/bootstrap.css
less/forms.less

index 32cc021ea9992d688063000f0323d2bfa5e3d3e8..9fa6f766fc8af2c816697c45d4e0e26c0875a02f 100644 (file)
@@ -1073,7 +1073,7 @@ input[type="file"] {
 select {
   width: 220px;
   background-color: #ffffff;
-  border: 1px solid #bbb;
+  border: 1px solid #cccccc;
 }
 
 select[multiple],
index b4b86f907d2b3190fcb0dbc006ad47872ea9703d..f8d8562b6069bf509249d50fe8e8a33dc27aed11 100644 (file)
@@ -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
 }