fix select heights on firefox

This commit is contained in:
albert
2012-01-07 20:59:07 -05:00
parent d06ec6560d
commit 978a86d5f3

View File

@@ -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 */
}