Commit de36456f authored by Mark Otto's avatar Mark Otto

fixes #4957: use input border var for select element instead of #ddd

parent 1f0043a7
...@@ -1073,7 +1073,7 @@ input[type="file"] { ...@@ -1073,7 +1073,7 @@ input[type="file"] {
select { select {
width: 220px; width: 220px;
background-color: #ffffff; background-color: #ffffff;
border: 1px solid #bbb; border: 1px solid #cccccc;
} }
select[multiple], select[multiple],
......
...@@ -162,7 +162,7 @@ input[type="file"] { ...@@ -162,7 +162,7 @@ input[type="file"] {
// Make select elements obey height by applying a border // Make select elements obey height by applying a border
select { select {
width: 220px; // default input width + 10px of padding that doesn't get applied 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 background-color: @inputBackground; // Chrome on Linux and Mobile Safari need background-color
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment