Quantcast
Channel: How to change currently active window tab color in atom editor - Stack Overflow
Browsing all 8 articles
Browse latest View live

Answer by Marcos Koetz for How to change currently active window tab color in...

Extending this for other tab types (e.g. settings, git, search results), I'm currently enjoying:// mine tab color customizations:.tab-bar .tab.active { background-color: #00593c;}.tab-bar...

View Article



Answer by Cater N. for How to change currently active window tab color in...

that's my solution for atom 1.23.1 File > Stylesheed > styles.less.texteditor.tab.sortable.active::before, .texteditor.tab.sortable.active, .texteditor.tab.sortable.active::after {...

View Article

Answer by Rafe for How to change currently active window tab color in atom...

None of these worked for me. Here was my solution (Atom 1.22.1):.tab-bar .tab.active[data-type$="Editor"] { background-color: #167373;}

View Article

Answer by Jason Awbrey for How to change currently active window tab color in...

Often I like to open multiple panes and have tabs in all of them. With multiple panes comes multiple active tabs. The other answers here will style the "active" tab in all panes, and not specifically...

View Article

Answer by daGo for How to change currently active window tab color in atom...

You have to copy this code and paste in your styles.less file, that's it.//My awesome tab.tab-bar .tab.active[data-type="TextEditor"]::after {background-color: black;border-bottom: whiTe;}.tab-bar...

View Article


Answer by Aleksei Matiushkin for How to change currently active window tab...

.tab-bar .tab[data-type="TextEditor"]::after { background-color: rgba(20,28,30,0.8);}I found this solution by opening developer tools Ctrl+Shift+I, and finding an element by using magnifier tool.

View Article

Answer by Vinod Murukesan for How to change currently active window tab color...

On selection of tab add a class="tab active"and below style to your style.less file.tab.active { background-color:black;}

View Article

How to change currently active window tab color in atom editor

I'm using atom editor version 1.0 stable in ubuntu 14.04.my question is,How can I change the background colour of currently selected window tab...(means current tab..)by editing style.less file?I...

View Article

Browsing all 8 articles
Browse latest View live




Latest Images