Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Eclipse4/CSS/StylingOfPreferences

< Eclipse4‎ | CSS
Revision as of 09:08, 15 May 2014 by Unnamed Poltroon (Talk) (The styling of the preference values with CSS)

The styling of the preference values with CSS

The special IEclipsePreferences element with the proper preference node id has to be added to the CSS file in order to override the preference values

IEclipsePreferences#org-eclipse-jdt-ui {
	preferences: 
		'semanticHighlighting.abstractClass.color=128,255,0'
		'semanticHighlighting.abstractClass.color=128,255,1'
		'semanticHighlighting.abstractClass.enabled=true'		
		'java_bracket=0,255,255'
		'java_bracket_bold=true'
		'java_bracket_italic=true'
		'java_bracket_strikethrough=true'
		'java_bracket_underline='
}

Back to the top