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 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; | |
} | |
} | |
} |
Cool. Thanks.
Thanks!
+1
December 2017:
.texteditor.tab.active {
border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
}
+1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I often don't notice which pane is selected or which tab is selected. I don't find the styling to be clear enough.
This modification fades back the gutter and tabs of the non-active tab, and make the selected tab stronger and underlines it.
Its subtle, but it clearly communicates where the focus is without distracting or being loud.