kuychaco / multirow-tabs

Display Atom editor tabs in multiple rows for easy navigation and viewing
MIT License
11 stars 3 forks source link

Tabs move/change width when active tab changes #7

Open sahrens opened 8 years ago

sahrens commented 8 years ago

Nice little extension! Atom should really do something better by default, but I'm glad you built this.

Only issue I have with it is that the active tab shrinks to a truncated size, which changes layout and causes tabs to move around for no reason when switching tabs.

Thanks!

forivall commented 8 years ago

It really depends on what your ui theme does, if it makes tabs bigger when they're in focus, etc. The one-ui themes (iirc), don't do that, and my theme (which does multirow by default) makes sure it doesn't have this bug.

ghost commented 8 years ago

@sahrens

You could try to resolve this by adding this to your Stylesheet:

//-- Custom css for multirow-tabs
.tab{
    width: 10% !important;
}

.tab-bar {
    display: block !important;
}