Created
October 27, 2014 09:33
-
-
Save crucialfelix/2d992845c8c05f28aba9 to your computer and use it in GitHub Desktop.
Highlight active pane, active tab in Atom.io
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
// active pane | |
.pane { | |
.gutter, | |
ul.tab-bar { | |
opacity: 0.4; | |
} | |
} | |
.pane.active { | |
.gutter { | |
opacity: 1; | |
} | |
ul.tab-bar { | |
opacity: 1; | |
.tab.active { | |
color: #e98c29; | |
text-decoration: underline; | |
font-weight: bold; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
December 2017: