diff options
| author | Chris Rebert <[email protected]> | 2014-12-16 19:41:11 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-12-16 19:41:11 -0800 |
| commit | 0766ecab60c5d37b0f2142856a6c6f4804b16f26 (patch) | |
| tree | 1b272b20c43cccd9b818e498b17cedc0e0ef0c02 | |
| parent | ea039ac72e08585c10916d5d737b691043551120 (diff) | |
| download | bootstrap-0766ecab60c5d37b0f2142856a6c6f4804b16f26.tar.xz bootstrap-0766ecab60c5d37b0f2142856a6c6f4804b16f26.zip | |
Remove defunct `background-image: none` Firefox-on-Android workaround
Mozilla fixed the bug circa Firefox 33-35:
https://bugzilla.mozilla.org/show_bug.cgi?id=763671
Firefox 34 is the current version.
Firefox 35 should be current by the time Bootstrap v4 is released.
| -rw-r--r-- | scss/_buttons.scss | 1 | ||||
| -rw-r--r-- | scss/_forms.scss | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/scss/_buttons.scss b/scss/_buttons.scss index 18af0e27d..08feff3b6 100644 --- a/scss/_buttons.scss +++ b/scss/_buttons.scss @@ -16,7 +16,6 @@ touch-action: manipulation; cursor: pointer; user-select: none; - background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214 border: $border-width solid transparent; @include button-size($padding-base-vertical, $padding-base-horizontal, $font-size-base, $line-height-base, $border-radius-base); transition: all .2s ease-in-out; diff --git a/scss/_forms.scss b/scss/_forms.scss index 3fa6dc2d7..1f68383f9 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -122,7 +122,6 @@ output { line-height: $line-height-base; color: $input-color; background-color: $input-bg; - background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214 border: 1px solid $input-border; @include border-radius($input-border-radius); @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); |
