Created
February 17, 2016 14:22
-
-
Save davidlukerice/364de15b2c400629ce5f to your computer and use it in GitHub Desktop.
Atom Editor Find Highlight Style
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
atom-text-editor::shadow .highlight { | |
&.find-result .region, | |
&.current-result .region, | |
&.current-result ~ .highlight.selection .region { | |
z-index: -1; | |
} | |
&.find-result .region { | |
background: rgba(255, 215, 0, 0.2); | |
} | |
&.current-result .region, | |
&.current-result ~ .highlight.selection .region { | |
background: rgba(255, 215, 0, 0.5); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment