23

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

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
hellojinjie
  • 1,868
  • 3
  • 17
  • 23
  • Oops, this tweaking reset some of the syntax highlighting preferences for me... better export your preferences before fiddling this. – matanster Feb 03 '15 at 06:13

4 Answers4

39

Eclipse Indigo:

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

In Colors And Fonts window:

View and Editor Folders->Part title font

Nikolay
  • 1,076
  • 1
  • 13
  • 11
  • This has torn apart my entire syntax highlighting... I would think twice before touch it :) but then again, maybe it was specific to my setup, with Luna. – matanster Feb 03 '15 at 16:01
  • 2
    Only works for some tabs (Console, Problems, Advice..) Other tabs don't reflect the change. – Michael Mar 02 '16 at 13:44
  • Works for me in Oxygen after the mess caused by changing system language. Thanks! – WesternGun Oct 11 '17 at 07:45
15

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.

alex
  • 5,516
  • 2
  • 36
  • 60
  • 2
    Newer versions of Eclipse let you configure this under Preferences, as [@Nikolay explains](http://stackoverflow.com/a/27299630/25507). – Josh Kelley Apr 16 '15 at 20:44
7

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

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

Community
  • 1
  • 1
Kzar
  • 802
  • 9
  • 12
0

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.

Dave
  • 15,639
  • 133
  • 442
  • 830