Skip to content

Commit

Permalink
fixes twbs#4957: use input border var for select element instead of #ddd
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Sep 4, 2012
1 parent 1f0043a commit de36456
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/assets/css/bootstrap.css
Expand Up @@ -1073,7 +1073,7 @@ input[type="file"] {
select {
width: 220px;
background-color: #ffffff;
border: 1px solid #bbb;
border: 1px solid #cccccc;
}

select[multiple],
Expand Down
2 changes: 1 addition & 1 deletion less/forms.less
Expand Up @@ -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
}

Expand Down

0 comments on commit de36456

Please sign in to comment.