diff --git a/public/less/base/forms.scss b/public/less/base/forms.scss index 644c77980b2..5d106278b4d 100644 --- a/public/less/base/forms.scss +++ b/public/less/base/forms.scss @@ -117,6 +117,7 @@ input[type="tel"], input[type="color"], .uneditable-input { background-color: $inputBackground; + border: 1px solid $inputBorder; @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); @include transition("border linear .2s, box-shadow linear .2s"); diff --git a/public/less/variables.light.scss b/public/less/variables.light.scss index 5e83dc65672..b1553064457 100644 --- a/public/less/variables.light.scss +++ b/public/less/variables.light.scss @@ -168,7 +168,7 @@ $iconContainerShadow: 0 0 14px 2px rgba(0,0,0, 0.05); // Forms // ------------------------- $inputBackground: $white; -$inputBorder: $grayLight; +$inputBorder: $grayLighter; $inputBorderRadius: $baseBorderRadius; $inputDisabledBackground: $grayLighter; $formActionsBackground: #f5f5f5;