Created
April 15, 2016 19:30
-
-
Save ben-bradley/79281fcbefadcb191761d4ed8e886719 to your computer and use it in GitHub Desktop.
control atom theme colors in tree-view (dirs & files)
This file contains 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
@dark-text: #777; | |
@light-text: lightgray; | |
.tree-view { | |
.status-ignored { | |
.header { | |
&::before { | |
color: @light-text !important; | |
} | |
} | |
.name { | |
color: @light-text !important; | |
&::before { | |
color: @light-text !important; | |
} | |
} | |
} | |
.header:not(.status-ignored) { | |
&::before { | |
color: @dark-text; | |
} | |
} | |
.name:not(.status-ignored) { | |
color: @dark-text; | |
&::before { | |
color: @dark-text; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment