stylesheets/normalize/_forms.scss in compass-normalize-1.4.2 vs stylesheets/normalize/_forms.scss in compass-normalize-1.4.3
- old
+ new
@@ -62,10 +62,20 @@
button,
input {
line-height: normal;
}
+// Address inconsistent `text-transform` inheritance for `button` and `select`.
+// All other form control elements do not inherit `text-transform` values.
+// Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
+// Correct `select` style inheritance in Firefox 4+ and Opera.
+
+button,
+select {
+ text-transform: none;
+}
+
// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
// and `video` controls.
// 2. Corrects inability to style clickable `input` types in iOS.
// 3. Improves usability and consistency of cursor style between image-type
// `input` and others.
@@ -86,10 +96,10 @@
}
// Re-set default cursor for disabled elements.
button[disabled],
-input[disabled] {
+html input[disabled] {
cursor: default;
}
// 1. Addresses box sizing set to `content-box` in IE 8/9.
// 2. Removes excess padding in IE 8/9.
\ No newline at end of file