Bug 568991 - Fix black headers in forms in system theme CSS definitions for 'color' and 'text-background-color' had foreground and background mixed up. Just swapping the values gives on OS X 10.14.6 with the default system "Accent color" set to "Blue" a form header with black text on dark blue background, which is not easily readable. Use the lighter #COLOR_TITLE-BACKGRUND-GRADIENT instead. That is the same color as used by the section headers, though, and thus some distinction is lost. Includes version bump for 4.19. Change-Id: I321d536531d1214efae43bdb655eb4853a06420b Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
diff --git a/bundles/org.eclipse.ui.themes/META-INF/MANIFEST.MF b/bundles/org.eclipse.ui.themes/META-INF/MANIFEST.MF index f09acb9..3cd0cfe 100644 --- a/bundles/org.eclipse.ui.themes/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.ui.themes/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: %Plugin.name Bundle-SymbolicName: org.eclipse.ui.themes;singleton:=true -Bundle-Version: 1.2.1200.qualifier +Bundle-Version: 1.2.1300.qualifier Bundle-Vendor: %Plugin.providerName Bundle-Localization: plugin Require-Bundle: org.eclipse.e4.ui.css.swt.theme
diff --git a/bundles/org.eclipse.ui.themes/css/system/e4-light_globalstyle.css b/bundles/org.eclipse.ui.themes/css/system/e4-light_globalstyle.css index 1a1bc6c..8b4f039 100644 --- a/bundles/org.eclipse.ui.themes/css/system/e4-light_globalstyle.css +++ b/bundles/org.eclipse.ui.themes/css/system/e4-light_globalstyle.css
@@ -16,8 +16,8 @@ Form { /* Bug 465148: Additional styling for the Form */ - color: '#COLOR-TITLE-BACKGROUND'; - text-background-color:'#COLOR-TITLE-FOREGROUND'; + color: '#COLOR-TITLE-FOREGROUND'; + text-background-color:'#COLOR-TITLE-BACKGROUND-GRADIENT'; tb-toggle-hover-color: '#COLOR-TITLE-FOREGROUND-GRAD'; tb-toggle-color: '#COLOR-TITLE-FOREGROUND';