hellojinjie
hellojinjie

Reputation: 2138

How to change the font size of the Eclipse editor tab's title

It is underlined by a green line. I want to change the font size of the tab's title.

How can I do that?

Enter image description here

Upvotes: 23

Views: 16731

Answers (4)

Dave
Dave

Reputation: 19110

In Spring Source ToolSuite 4, it is Window -> Prefernces -> General -> Apparances -> Colors and Fonts and then click on "Part Title Font" open the dialog to adjust the size.

Upvotes: 0

Nikolay
Nikolay

Reputation: 1106

Eclipse Indigo:

Window->Preferences->Appearance->Colors and Fonts

In Colors And Fonts window:

View and Editor Folders->Part title font

Upvotes: 39

Kzar
Kzar

Reputation: 802

Taken from a comment in Very large tabs in Eclipse panes on Ubuntu

Preferences -> General -> Appearance -> Theme -> Classic

Upvotes: 7

alex
alex

Reputation: 5684

Eclipse uses CSS for its own styling, so you can modify the CSS file to your needs as explained here.

The CSS file is located in

 ECLIPSE_HOME/plugins/org.eclipse.platform_X.X.X_V.XXXX/css

and the class for the tab titles is named MPartStack.

Upvotes: 16

Related Questions