aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-11-29 21:59:28 -0800
committerMark Otto <[email protected]>2013-11-29 21:59:28 -0800
commit36b82c37ecbedd13f9a2f3eca545745eb8eedf75 (patch)
treeed1117367f97a777a3abdadebf7b9c0ccd483c58 /less
parent61c641ea05c317e06bb3b9df0d9956abffc32e7e (diff)
downloadbootstrap-36b82c37ecbedd13f9a2f3eca545745eb8eedf75.tar.xz
bootstrap-36b82c37ecbedd13f9a2f3eca545745eb8eedf75.zip
Implement #11174 to fix #10936: increase height of large inputs to fix Firefox inconsistencies
Diffstat (limited to 'less')
-rw-r--r--less/variables.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/variables.less b/less/variables.less
index cf217b366..8f3ffedbc 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -157,7 +157,7 @@
@input-color-placeholder: @gray-light;
@input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);
-@input-height-large: (floor(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
+@input-height-large: (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
@input-height-small: (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
@legend-color: @gray-dark;