Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Scholz2014-12-16 20:40:45 +0000
committerLars Vogel2015-01-08 09:09:24 +0000
commitfd977d6d5ef602a60cff24881547d5fc57b12e56 (patch)
tree557791544d5837a685253f7eedc2d85da01821bb
parent9b58903d98a9c85379b836c057b94d514c238899 (diff)
downloadeclipse.platform.ui-fd977d6d5ef602a60cff24881547d5fc57b12e56.tar.gz
eclipse.platform.ui-fd977d6d5ef602a60cff24881547d5fc57b12e56.tar.xz
eclipse.platform.ui-fd977d6d5ef602a60cff24881547d5fc57b12e56.zip
Bug 431635 - [CSS] [dark theme] Remove gradient from Section headers in
Form editors Change-Id: I9b9e2d2bb4b8be41a188643b7a39dfcf101a7228 Signed-off-by: Simon Scholz <simon.scholz@vogella.com>
-rw-r--r--bundles/org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css8
1 files changed, 6 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css b/bundles/org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css
index f0128fc4203..2316d8b8bf7 100644
--- a/bundles/org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css
+++ b/bundles/org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css
@@ -9,6 +9,7 @@
* Andrea Guarinoni <andrea.guarinoni.dev@outlook.com> - initial API and implementation
* Stefan Winkler <stefan@winklerweb.net> - Bug 434189
* Stefan Winkler <stefan@winklerweb.net> - Bug 430848
+ * Simon Scholz <simon.scholz@vogella.com> - Bug 431635
*******************************************************************************/
/*******************************************************************************
@@ -323,8 +324,11 @@ FormHeading {
}
Section {
- background-color: #4F5355;
- color: #AEBED0;
+ background-color: #4F5355;
+ color: #AEBED0;
+ background-color-titlebar: #4F5355;
+ background-color-gradient-titlebar: #4F5355;
+ border-color-titlebar: #4F5355;
}
Form > LayoutComposite > LayoutComposite > * {

Back to the top