Forked from jhilden/input-placeholder_mixin.sass
Created
April 16, 2011 16:28
Revisions
-
chriseppstein revised this gist
Apr 16, 2011 . 2 changed files with 18 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,12 @@ // Style this how you want it to look .input-placeholder-text color: #777 =input-placeholder &.placeholder, &:-moz-placeholder, &::-webkit-input-placeholder @extend .input-placeholder-text form#login input +input-placeholder This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ .input-placeholder-text, form#login input.placeholder, form#login input:-moz-placeholder, form#login input::-webkit-input-placeholder { color: #777777; } -
jhilden renamed this gist
Apr 16, 2011 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jhilden created this gist
Apr 16, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ @mixin input-placeholder($color) &.placeholder color: $color &:-moz-placeholder color: $color &::-webkit-input-placeholder color: $color