From: Mark Otto Date: Sat, 14 Apr 2012 20:18:37 +0000 (-0700) Subject: fix #3036: add bg color to inputs X-Git-Tag: v2.0.3~5^2~42 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a7d8145a321036e39a91fc9648710e62f7f164ac;p=thirdparty%2Fbootstrap.git fix #3036: add bg color to inputs --- diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index cb1e91545f..f5b933c9c9 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index dd141c5996..7134c6e711 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -641,6 +641,7 @@ select, font-size: 13px; line-height: 18px; color: #555555; + background-color: #ffffff; border: 1px solid #cccccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; diff --git a/less/forms.less b/less/forms.less index 60eff00438..dafe1c5c32 100644 --- a/less/forms.less +++ b/less/forms.less @@ -71,6 +71,7 @@ select, font-size: @baseFontSize; line-height: @baseLineHeight; color: @gray; + background-color: @inputBackground; border: 1px solid @inputBorder; .border-radius(@inputBorderRadius); }