From be3acaf4c81e41f34fa865704dd95ab75feb9608 Mon Sep 17 00:00:00 2001 From: Lars Vogel Date: Thu, 30 Apr 2026 06:32:52 +0200 Subject: [PATCH] Give FormHeading a distinct background in the light theme The as-shipped light theme set both Form and FormHeading to #ffffff plus a matching text-background-color, so the form heading area was visually indistinguishable from the form body. Split the joint Form/FormHeading rule, set FormHeading and the Form's text-background-color to #eaeaea (matching the Section title bar) so the heading stands out against the white body. --- .../css/light/e4-light_globalstyle.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/bundles/org.eclipse.ui.themes/css/light/e4-light_globalstyle.css b/bundles/org.eclipse.ui.themes/css/light/e4-light_globalstyle.css index 2d0ae6b4042..0215e3e0d6a 100644 --- a/bundles/org.eclipse.ui.themes/css/light/e4-light_globalstyle.css +++ b/bundles/org.eclipse.ui.themes/css/light/e4-light_globalstyle.css @@ -14,15 +14,13 @@ *******************************************************************************/ -Form, FormHeading { +Form { background-color: #ffffff; background: #ffffff; color: #505050; -} -Form { /* Bug 465148: Additional styling for the Form */ - text-background-color: #ffffff; + text-background-color: #eaeaea; tb-toggle-hover-color: #505050; tb-toggle-color: #505050; @@ -32,6 +30,12 @@ Form { h-bottom-keyline-1-color: #eaeaea; } +FormHeading { + background-color: #eaeaea; + background: #eaeaea; + color: #505050; +} + Section { background-color: #ffffff;