From 978a86d5f390f8b10a939f590b49fbc91de3e4a0 Mon Sep 17 00:00:00 2001 From: albert Date: Sat, 7 Jan 2012 20:59:07 -0500 Subject: [PATCH] fix select heights on firefox --- app/assets/stylesheets/common/forms.css.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/common/forms.css.scss b/app/assets/stylesheets/common/forms.css.scss index ab2b73e87..5e9c0bf36 100644 --- a/app/assets/stylesheets/common/forms.css.scss +++ b/app/assets/stylesheets/common/forms.css.scss @@ -96,9 +96,9 @@ input[type=submit] { select, input[type=file] { - height: $baseline * 1.5; // In IE7, the height of the select element cannot be changed by height, only font-size + height: $baseline * 2.0; // In IE7, the height of the select element cannot be changed by height, only font-size *height: auto; // Reset for IE7 - line-height: $baseline * 1.5; + line-height: $baseline * 2.0; *margin-top: 4px; /* For IE7, add top margin to align select with labels */ }