From 91c6df7ac78e29e4ad4c5ee3090a2e56d837b341 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 29 Nov 2013 21:59:28 -0800 Subject: [PATCH] (less) Implement #11174 to fix #10936: increase height of large inputs to fix Firefox inconsistencies --- variables.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.less b/variables.less index cf217b36613a..8f3ffedbc510 100644 --- a/variables.less +++ b/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;