summaryrefslogtreecommitdiff
path: root/_sass/bourbon/css3/_placeholder.scss
blob: 5682fd097a5a266bec74339143a2cc4b8dc0fc60 (plain)
1
2
3
4
5
6
7
8
@mixin placeholder {
  $placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input";
  @each $placeholder in $placeholders {
    &:#{$placeholder}-placeholder {
      @content;
    }
  }
}