Reputation: 115
Anybody know how to change the tab bar like this:
Upvotes: 2
Views: 3425
Reputation: 7519
For Eclipse Mars on Windows with the default theme ("Classic"):
Edit:
C:\Program Files\eclipse\plugins\org.eclipse.ui.themes_1.1.0.v20150511-0913\css\e4_classic_winxp.css
change:
.MPartStack {
swt-simple: false;
}
to:
.MPartStack {
swt-simple: true;
}
Upvotes: 2
Reputation: 3917
You may use Jeeeyul's Chrome Theme and configure the color and tab-round by your own choice.
Upvotes: 1
Reputation: 37017
Eclipse Juno and later do not have this checkbox anymore.
To enable traditional style tabs:
[eclipse_folder]\plugins\org.eclipse.platform_4.2.1.v201209141800\css
Upvotes: 10
Reputation: 15525
Depending on the version, you will find that at Window > Preferences > General > Appearance > Show traditional style tabs
.
Upvotes: 1