Alen Bruce
Alen Bruce

Reputation: 115

How to change style of the tab bar in Eclipse look like this?

Anybody know how to change the tab bar like this:

enter image description here

Upvotes: 2

Views: 3425

Answers (5)

vogella
vogella

Reputation: 26352

2021-09 uses a flat tab and a nice looking close icon.

Screenshot

Upvotes: 0

Parker
Parker

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

IronBlossom
IronBlossom

Reputation: 3917

You may use Jeeeyul's Chrome Theme and configure the color and tab-round by your own choice.

Upvotes: 1

friederbluemle
friederbluemle

Reputation: 37017

Eclipse Juno and later do not have this checkbox anymore.

To enable traditional style tabs:

  1. Go to [eclipse_folder]\plugins\org.eclipse.platform_4.2.1.v201209141800\css
  2. Open the css file that corresponds to your selected theme, e.g. e4_default_win7.css
  3. Then find the selector .MPartStack and set swt-simple to true

Upvotes: 10

mliebelt
mliebelt

Reputation: 15525

Depending on the version, you will find that at Window > Preferences > General > Appearance > Show traditional style tabs.

enter image description here

Upvotes: 1

Related Questions