Skip to content
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #772 from OfficeDev/leddie24/fix-sass-input-placeh…
Browse files Browse the repository at this point in the history
…older-mixin

Fix SASS mixin for input-placeholders.
  • Loading branch information
leddie24 authored Aug 15, 2016
2 parents b9e45e4 + 716030a commit 6e99721
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/sass/_Fabric.Mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -228,12 +228,10 @@

// Input placehoder
@mixin input-placeholder {
&::-webkit-input-placeholder,
&::-moz-placeholder,
&:-moz-placeholder,
&:-ms-input-placeholder {
@content;
}
&::-webkit-input-placeholder {@content}
&::-moz-placeholder {@content}
&:-moz-placeholder {@content}
&:-ms-input-placeholder {@content}
}

// Animations
Expand Down

0 comments on commit 6e99721

Please sign in to comment.