Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save akorobov/3036050 to your computer and use it in GitHub Desktop.
Save akorobov/3036050 to your computer and use it in GitHub Desktop.
fixing tab font sizes for eclipse 4.2 juno
Eclipse 4.2(juno) is using CSS to decorate/render widgets. Default tab font size is quite large wasting screen space. To change it edit eclipse42//plugins/org.eclipse.platform_4.2.0.v201206081400/css/e4_default_mac.css (or pick css file that corresponds to your specific os) and change following section:
.MPartStack {
font-size: 12;
swt-simple: false;
swt-mru-visible: false;
}
to something like:
.MPartStack {
font-size: 10;
swt-simple: false;
swt-mru-visible: false;
}
You can also specify different font-family, etc.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment