Skip to content

Commit de36456

Browse files
committed
fixes twbs#4957: use input border var for select element instead of #ddd
1 parent 1f0043a commit de36456

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/assets/css/bootstrap.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ input[type="file"] {
10731073
select {
10741074
width: 220px;
10751075
background-color: #ffffff;
1076-
border: 1px solid #bbb;
1076+
border: 1px solid #cccccc;
10771077
}
10781078

10791079
select[multiple],

less/forms.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ input[type="file"] {
162162
// Make select elements obey height by applying a border
163163
select {
164164
width: 220px; // default input width + 10px of padding that doesn't get applied
165-
border: 1px solid #bbb;
165+
border: 1px solid @inputBorder;
166166
background-color: @inputBackground; // Chrome on Linux and Mobile Safari need background-color
167167
}
168168

0 commit comments

Comments
 (0)