You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
564 B
30 lines
564 B
12 years ago
|
$placeholders: '-webkit-input-placeholder',
|
||
|
'-moz-placeholder',
|
||
|
'-ms-input-placeholder';
|
||
|
|
||
|
@mixin placeholder {
|
||
|
@each $placeholder in $placeholders {
|
||
|
@if $placeholder == "-webkit-input-placeholder" {
|
||
|
&::#{$placeholder} {
|
||
|
@content;
|
||
|
}
|
||
|
}
|
||
|
@else if $placeholder == "-moz-placeholder" {
|
||
|
// FF 18-
|
||
|
&:#{$placeholder} {
|
||
|
@content;
|
||
|
}
|
||
|
|
||
|
// FF 19+
|
||
|
&::#{$placeholder} {
|
||
|
@content;
|
||
|
}
|
||
|
}
|
||
|
@else {
|
||
|
&:#{$placeholder} {
|
||
|
@content;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|