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

Difference between revisions of "Eclipse4/CSS/StylingOfPreferences"

< Eclipse4‎ | CSS
(Created page with "== The styling of the preference values with CSS == The special '''IEclipsePreferences''' element with the proper preference node id has to be in order to override the prefer...")
 
(The styling of the preference values with CSS)
Line 1: Line 1:
 
== 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 in order to override the preference values with the 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
  
 
   <source lang="css">
 
   <source lang="css">

Revision as of 09:08, 15 May 2014

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