What CSS will change the background color on the Eclipse (Juno) tab?

CSS Spy does not show the value for the color displayed when the cursor is over the tab (editor, package explorer, console, etc.), and I cannot find the property name documented anywhere. By default (very bright not quite white), the problem is for me, as I am trying to set up a dark theme.

It would be useful to use either knowledge of specific CSS to change it, or knowledge of where a link to a programmer can be found.

+5
source share
1 answer

I am not familiar with Eclipse, but with regular CSS I would do the following:

.tab:hover {background-color: #yourcolor} or .tab a:hover {background-color: #yourcolor

:hover - this is the state when you hover over the specified object.

0
source

All Articles