From 79cb5b84708e205b899fad638dadc59cdeb7fd81 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 4 Sep 2012 11:00:25 -0700 Subject: [PATCH] (less) fixes #4957: use input border var for select element instead of #ddd --- forms.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forms.less b/forms.less index b4b86f907d2b..f8d8562b6069 100644 --- a/forms.less +++ b/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 }