2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00

Implement #11174 to fix #10936: increase height of large inputs to fix Firefox inconsistencies

This commit is contained in:
Mark Otto
2013-11-29 21:59:28 -08:00
parent 61c641ea05
commit 36b82c37ec
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -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;