diff --git a/examples/org.eclipse.e4.demo.cssbridge/css/blue.css b/examples/org.eclipse.e4.demo.cssbridge/css/blue.css index 5e48880baa8..8d8b482df4b 100644 --- a/examples/org.eclipse.e4.demo.cssbridge/css/blue.css +++ b/examples/org.eclipse.e4.demo.cssbridge/css/blue.css @@ -11,17 +11,17 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ - + @import url("common.css"); /* for IDs see the class: org.eclipse.e4.demo.cssbridge.ui.views.Theme.Shell */ ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-background { color: #eef5ff; } -ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-seletion-foreground { +ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-selection-foreground { color: yellow; } -ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-seletion-background { +ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-selection-background { color: #00a8ff; } ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-text-and-label-foreground { diff --git a/examples/org.eclipse.e4.demo.cssbridge/css/green.css b/examples/org.eclipse.e4.demo.cssbridge/css/green.css index d05d5854181..251a1988de4 100644 --- a/examples/org.eclipse.e4.demo.cssbridge/css/green.css +++ b/examples/org.eclipse.e4.demo.cssbridge/css/green.css @@ -11,17 +11,17 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ - + @import url("common.css"); /* for IDs see the class: org.eclipse.e4.demo.cssbridge.ui.views.Theme.Shell */ ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-background { color: #f4ffdd; } -ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-seletion-foreground { +ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-selection-foreground { color: #b8f2ff; } -ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-seletion-background { +ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-selection-background { color: #00871d; } ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-text-and-label-foreground { diff --git a/examples/org.eclipse.e4.demo.cssbridge/css/red.css b/examples/org.eclipse.e4.demo.cssbridge/css/red.css index fd5f713375a..067164f39a7 100644 --- a/examples/org.eclipse.e4.demo.cssbridge/css/red.css +++ b/examples/org.eclipse.e4.demo.cssbridge/css/red.css @@ -11,17 +11,17 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ - + @import url("common.css"); /* for IDs see the class: org.eclipse.e4.demo.cssbridge.ui.views.Theme.Shell */ ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-background { color: #ffe0c4; } -ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-seletion-foreground { +ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-selection-foreground { color: yellow; } -ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-seletion-background { +ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-selection-background { color: #f8cd00; } ColorDefinition#org-eclipse-e4-demo-cssbridge-ui-views-theme-shell-text-and-label-foreground { diff --git a/examples/org.eclipse.e4.demo.cssbridge/plugin.properties b/examples/org.eclipse.e4.demo.cssbridge/plugin.properties index 8c2072cd3e5..4d81185dd0c 100644 --- a/examples/org.eclipse.e4.demo.cssbridge/plugin.properties +++ b/examples/org.eclipse.e4.demo.cssbridge/plugin.properties @@ -21,8 +21,8 @@ org.eclipse.e4.demo.cssbridge.red.theme=Red theme org.eclipse.e4.demo.cssbridge.ui.views.Theme=CSS bridge demo theme org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.background=Shell background -org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.seletion.foreground=Shell selection foreground -org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.seletion.background=Shell selection background +org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.selection.foreground=Shell selection foreground +org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.selection.background=Shell selection background org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.text.and.label.foreground=Shell text and label foreground org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.link.foreground=Shell link foreground org.eclipse.e4.demo.cssbridge.ui.views.theme.foldersview.mailbox.name.font=FoldersView mailbox name font diff --git a/examples/org.eclipse.e4.demo.cssbridge/plugin.xml b/examples/org.eclipse.e4.demo.cssbridge/plugin.xml index 0e28fbcb074..2f4eefd3db9 100644 --- a/examples/org.eclipse.e4.demo.cssbridge/plugin.xml +++ b/examples/org.eclipse.e4.demo.cssbridge/plugin.xml @@ -62,9 +62,9 @@ description="%command.description.2" categoryId="org.eclipse.e4.demo.cssbridge.css.theme.switcher.category" id="org.eclipse.e4.demo.cssbridge.switch.to.red.css.theme"> - + - + @@ -81,8 +81,8 @@ - - + + - + - + + label="%org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.selection.foreground" + value="COLOR_LIST_SELECTION_TEXT"> + label="%org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.selection.background" + value="COLOR_LIST_SELECTION"> - + value="COLOR_WIDGET_FOREGROUND"> + - - + value="COLOR_LINK_FOREGROUND"> + + + value="COLOR_LIST_FOREGROUND"> - + + value="COLOR_LIST_FOREGROUND"> - + + value="COLOR_LIST_FOREGROUND"> - + + value="COLOR_LIST_FOREGROUND"> - + + value="COLOR_LIST_FOREGROUND"> diff --git a/examples/org.eclipse.e4.demo.cssbridge/src/org/eclipse/e4/demo/cssbridge/ui/views/Theme.java b/examples/org.eclipse.e4.demo.cssbridge/src/org/eclipse/e4/demo/cssbridge/ui/views/Theme.java index 41075ca2311..f2d03b67047 100644 --- a/examples/org.eclipse.e4.demo.cssbridge/src/org/eclipse/e4/demo/cssbridge/ui/views/Theme.java +++ b/examples/org.eclipse.e4.demo.cssbridge/src/org/eclipse/e4/demo/cssbridge/ui/views/Theme.java @@ -24,8 +24,8 @@ public class Theme { public interface Shell { String BACKGROUND = "org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.background"; - String SELECTION_FOREGROUND = "org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.seletion.foreground"; - String SELECTION_BACKGROUND = "org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.seletion.background"; + String SELECTION_FOREGROUND = "org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.selection.foreground"; + String SELECTION_BACKGROUND = "org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.selection.background"; String TEXT_AND_LABEL_FOREGROUND = "org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.text.and.label.foreground"; String LINK_FOREGROUND = "org.eclipse.e4.demo.cssbridge.ui.views.theme.shell.link.foreground"; }