Skip to content

Commit

Permalink
fix(firefox): Add FF 19+ style vendor prefixing (bit.ly/1tLz8Qp) Closes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cormac Long authored and perrygovier committed Jun 5, 2014
1 parent 9942045 commit 5286a0c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scss/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,10 @@
// --------------------------------------------------

@mixin placeholder($color: $input-color-placeholder) {
&:-moz-placeholder {
&:-moz-placeholder { /* Firefox 18- */

This comment has been minimized.

Copy link
@mlynch

mlynch Jun 5, 2014

Contributor

And we could probably get rid of this completely since we don't support that browser.

This comment has been minimized.

Copy link
@perrygovier

perrygovier Jun 5, 2014

Contributor

Good call, done
5286a0c

color: $color;
}
&::-moz-placeholder { /* Firefox 19+ */
color: $color;
}
&:-ms-input-placeholder {
Expand Down

0 comments on commit 5286a0c

Please sign in to comment.