Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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/Bridge"

< Eclipse4‎ | CSS
(The CSS bridge)
 
Line 1: Line 1:
 
== The CSS bridge ==
 
== The CSS bridge ==
  
The main goal of the bridge is supporting the 3.x themes in the CSS style sheets. We can use the 3.x theme element definitions in our CSS file in one of the following ways:
+
The main goal of the bridge is supporting the 3.x themes in the CSS style sheets. We can use the 3.x theme element definitions in our CSS file in the following ways:
 
   
 
   
 
  Important! Due to some SAC parser limitations we have to replace all 'dots' in the element ids supported by the bridge with 'dashes'
 
  Important! Due to some SAC parser limitations we have to replace all 'dots' in the element ids supported by the bridge with 'dashes'
  
 
* Using the ColorDefinition in the CSS file
 
* Using the ColorDefinition in the CSS file
:The ColorDefinitions are processed as the custom color values and can be use in all color related CSS proproperties, that we support
+
:The ColorDefinitions are processed as the custom color values and can be used in all color related CSS properties
 +
 
 
   <source lang="css">
 
   <source lang="css">
 
   .MPartStack.active.noFocus {
 
   .MPartStack.active.noFocus {
Line 18: Line 19:
 
* Using the FontDefinition in the CSS file
 
* Using the FontDefinition in the CSS file
 
:The FontDefinitions are processed as the custom font family
 
:The FontDefinitions are processed as the custom font family
 +
 
   <source lang="css">
 
   <source lang="css">
 
   .MPartStack.active.noFocus {
 
   .MPartStack.active.noFocus {
Line 28: Line 30:
  
  
:By default all font parameters are retrieved from the FontDefinition, but user can override the font's parameters
+
:By default all font parameters are retrieved from the FontDefinition, but the user can override some parameters
 +
 
 
   <source lang="css">
 
   <source lang="css">
 
   .MPartStack.active.noFocus {
 
   .MPartStack.active.noFocus {
Line 42: Line 45:
  
 
* Overriding the ColorDefinition in the CSS file
 
* Overriding the ColorDefinition in the CSS file
 +
 
   <source lang="css">
 
   <source lang="css">
 
   ColorDefinition#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START {
 
   ColorDefinition#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START {
Line 55: Line 59:
  
  
:The user can also modify the category, label or description of the definition. Currently we don't support the globalization of labels and descriptions
+
:The user can also modify the category, label or description of the definition. Currently we don't support the globalization of the labels and descriptions
 +
 
 
<source lang="css">
 
<source lang="css">
 
   ColorDefinition#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START {
 
   ColorDefinition#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START {
Line 73: Line 78:
  
 
* Overriding the FontDefinition in the CSS file
 
* Overriding the FontDefinition in the CSS file
 +
 
   <source lang="css">
 
   <source lang="css">
 
   FontDefinition#org-eclipse-ui-workbench-TAB_TEXT_FONT {
 
   FontDefinition#org-eclipse-ui-workbench-TAB_TEXT_FONT {
Line 93: Line 99:
 
* Adding the Color and FontDefinition in the CSS file
 
* Adding the Color and FontDefinition in the CSS file
 
:The special 'ThemesExtension' element has to be added to the CSS style sheet in order to point the definitions we want to add.
 
:The special 'ThemesExtension' element has to be added to the CSS style sheet in order to point the definitions we want to add.
:The element supports two properties: 'color-definition' and 'font-definietion', where we put list of the definition ids separated with the 'comma' character. Next we have to define proper definitions as we do it during overriding process. When we provide the basic property values for the definitions only, they will be populated with the generated labels and descriptions and appended to the '#org-eclipse-ui-themes-CssTheme' 3.x theme category.
+
:The element supports two properties: 'color-definition' and 'font-definition', where we put the list of the definition ids separated with the 'comma' characters. Next we have to define proper definitions as we do it during overriding process. When we provide the basic property values for the definitions only, the missing properties will be populated with the generated values. The definition will be appended to the '#org-eclipse-ui-themes-CssTheme' 3.x theme category in such case.
  
 
<source lang="css">
 
<source lang="css">
Line 126: Line 132:
  
  
Important! The theme element definitions overridden or added with the CSS file will be merged with the current 3.x theme.
+
            The theme element definitions overridden or added with the CSS file will be merged with the current 3.x theme.
 
             When the current theme gets changed, they will be re-merged with the new one.
 
             When the current theme gets changed, they will be re-merged with the new one.
  
Line 133: Line 139:
  
 
             Using the M6 build the user is not able to add the new FontDefinitions with the CSS file.  
 
             Using the M6 build the user is not able to add the new FontDefinitions with the CSS file.  
             It has been fixed with the bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=429796]  
+
             It has been fixed with the bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=429796] and proper patch is available in one of the latest I-builds
            and the proper patch is available in one of the latest I-builds
+
  
  
Line 144: Line 149:
  
 
*The sample 3.x RCP application styled with the CSS [http://git.eclipse.org/c/platform/eclipse.platform.ui.git/tree/examples/org.eclipse.e4.demo.cssbridge]
 
*The sample 3.x RCP application styled with the CSS [http://git.eclipse.org/c/platform/eclipse.platform.ui.git/tree/examples/org.eclipse.e4.demo.cssbridge]
:The application shows how we can style the applications that use the 3.x themes with the CSS style sheets, using the bridge
+
:The application shows how we can style the applications that use the 3.x themes with the CSS style sheets, using the bridge, slightly modifying the source code
  
 
:[[File:Css_bridge_demo_app.png]]
 
:[[File:Css_bridge_demo_app.png]]

Latest revision as of 12:21, 14 March 2014

The CSS bridge

The main goal of the bridge is supporting the 3.x themes in the CSS style sheets. We can use the 3.x theme element definitions in our CSS file in the following ways:

Important! Due to some SAC parser limitations we have to replace all 'dots' in the element ids supported by the bridge with 'dashes'
  • Using the ColorDefinition in the CSS file
The ColorDefinitions are processed as the custom color values and can be used in all color related CSS properties
   .MPartStack.active.noFocus {
	swt-selected-tab-fill: '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START' 
                               '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_END' 100% 100%;
   }
Usage of color definition.png


  • Using the FontDefinition in the CSS file
The FontDefinitions are processed as the custom font family
   .MPartStack.active.noFocus {
	swt-selected-tab-fill: '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START' 
                               '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_END' 100% 100%;
        font-family: '#org-eclipse-jface-bannerfont';
   }
Usage of font definition.png


By default all font parameters are retrieved from the FontDefinition, but the user can override some parameters
   .MPartStack.active.noFocus {
	swt-selected-tab-fill: '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START' 
                               '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_END' 100% 100%;
        font-family: '#org-eclipse-jface-bannerfont';
        font-size: 7px;
        font-style: italic;
   }
Usage of font definition overriding font params.png


  • Overriding the ColorDefinition in the CSS file
   ColorDefinition#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START {
	color: white;
   }
 
   .MPartStack.active.noFocus {
	swt-selected-tab-fill: '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START' 
                               '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_END' 100% 100%;
   }
Basic overriding of color definition.png


The user can also modify the category, label or description of the definition. Currently we don't support the globalization of the labels and descriptions
   ColorDefinition#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START {
	color: white;
	category: '#org-eclipse-debug-ui-presentation';
	label: 'The brand new label';
	description: 'Some description';
   }
 
   .MPartStack.active.noFocus {
	swt-selected-tab-fill: '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START' 
                               '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_END' 100% 100%;
   }
Advanced overriding of color definition.png


  • Overriding the FontDefinition in the CSS file
   FontDefinition#org-eclipse-ui-workbench-TAB_TEXT_FONT {
	font-family: 'Times';
	font-size: 14px;
   }
 
   .MPartStack.active.noFocus {
	swt-selected-tab-fill: '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_START' 
                               '#org-eclipse-ui-workbench-ACTIVE_NOFOCUS_TAB_BG_END' 100% 100%;
        font-family: '#org-eclipse-ui-workbench-TAB_TEXT_FONT';
   }
Basic overriding of font definition.png


Similarly to the ColorDefinition, the user is also able to update the category, label or description of the definition


  • Adding the Color and FontDefinition in the CSS file
The special 'ThemesExtension' element has to be added to the CSS style sheet in order to point the definitions we want to add.
The element supports two properties: 'color-definition' and 'font-definition', where we put the list of the definition ids separated with the 'comma' characters. Next we have to define proper definitions as we do it during overriding process. When we provide the basic property values for the definitions only, the missing properties will be populated with the generated values. The definition will be appended to the '#org-eclipse-ui-themes-CssTheme' 3.x theme category in such case.
   ThemesExtension { 
        color-definition: '#new-color-definition-1', '#new-color-definition-2','#new-color-definition-3';
        font-definition: '#new-font-definition';
   }
   FontDefinition#new-font-definition {
	font-family: 'Comic Sans MS';
	font-size: 10px;
   }
   ColorDefinition#new-color-definition-1 {
	color: yellow;
   }
   ColorDefinition#new-color-definition-2 {
	color: green;
   }
   ColorDefinition#new-color-definition-3 {
	color: cyan;
	label: 'foreground of the active, but without focus MPart';
   }
   .MPartStack.active.noFocus {
	swt-selected-tab-fill: '#new-color-definition-1' '#new-color-definition-2' 100% 100%;
	font-family: '#new-font-definition';	
   }
   .MPartStack.active.noFocus > CTabItem:selected {
	color: '#new-color-definition-3';
   }
Adding new definitions.png


           The theme element definitions overridden or added with the CSS file will be merged with the current 3.x theme.
           When the current theme gets changed, they will be re-merged with the new one.
           When we use the new definitions added with the CSS out of the style sheet, we have to be prepared for situation where some 
           CSS theme doesn't re-defined any definitions and we have to use proper default values in such case.
           Using the M6 build the user is not able to add the new FontDefinitions with the CSS file. 
           It has been fixed with the bug [1] and proper patch is available in one of the latest I-builds


  • Examples of usage the CSS bridge
    • The bridge is enabled in the Eclipse Luna for all CSS themes and now the user is able to customize each theme according to their needs
Brindge in Luna.png


  • The sample 3.x RCP application styled with the CSS [2]
The application shows how we can style the applications that use the 3.x themes with the CSS style sheets, using the bridge, slightly modifying the source code
Css bridge demo app.png

Back to the top