Created
July 11, 2013 02:54
-
-
Save vc7/5972191 to your computer and use it in GitHub Desktop.
Change selection color by css.
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 characters
| @carrot :#E67E22; | |
| /* Mozilla based browsers */ | |
| ::-moz-selection { | |
| background-color: @carrot; | |
| } | |
| /* Works in Safari */ | |
| ::selection { | |
| background-color: @carrot; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment