From 5713bd74d617126796205d4ee29bfc6ff192ad39 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 23 Jul 2014 20:32:05 -0700 Subject: Fixes #12669 again: Redeclare the line-heights again for date inputs in IE8+ --- less/forms.less | 2 ++ 1 file changed, 2 insertions(+) (limited to 'less/forms.less') diff --git a/less/forms.less b/less/forms.less index 98a40cb99..d3c375688 100644 --- a/less/forms.less +++ b/less/forms.less @@ -183,9 +183,11 @@ input[type="month"] { &.input-sm { line-height: @input-height-small; + line-height: @line-height-small ~"\0"; } &.input-lg { line-height: @input-height-large; + line-height: @line-height-large ~"\0"; } } -- cgit v1.2.3 From 078aafe7fd5d7f44725d4de76d0a0510ce43d344 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Wed, 23 Jul 2014 20:54:07 -0700 Subject: Fixes #14221: Make .form-control-static work in inline forms as well --- less/forms.less | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'less/forms.less') diff --git a/less/forms.less b/less/forms.less index d3c375688..7749479d2 100644 --- a/less/forms.less +++ b/less/forms.less @@ -421,6 +421,11 @@ input[type="checkbox"] { vertical-align: middle; } + // Make static controls behave like regular ones + .form-control-static { + display: inline-block; + } + .input-group { display: inline-table; vertical-align: middle; -- cgit v1.2.3