From: Mark Otto Date: Mon, 27 Aug 2012 19:07:28 +0000 (-0700) Subject: fixes #4725: width of .uneditable-input should match standard text input width X-Git-Tag: v2.1.1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf9334bd7d2017581300959ef3099bdd2db2182f;p=thirdparty%2Fbootstrap.git fixes #4725: width of .uneditable-input should match standard text input width --- diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 0d5a5a6eb3..5595e24448 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -960,7 +960,8 @@ input[type="color"], } input, -textarea { +textarea, +.uneditable-input { width: 206px; } diff --git a/less/forms.less b/less/forms.less index 9947e7180a..d2445b987f 100644 --- a/less/forms.less +++ b/less/forms.less @@ -91,7 +91,8 @@ input[type="color"], // Reset appearance properties for textual inputs and textarea // Declare width for legacy (can't be on input[type=*] selectors or it's too specific) input, -textarea { +textarea, +.uneditable-input { width: 206px; // plus 12px padding and 2px border } // Reset height since textareas have rows