Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Winkler2014-12-05 20:50:45 +0000
committerStefan Winkler2014-12-06 13:00:11 +0000
commite35bc53b11f123d444b6c6f86e59a54562dbbfcf (patch)
treecde86f2e96650b4a03e883395541b57eda7c12f0
parente84a83ce4d5d18e5b983b94fb2abb17a8d538b4d (diff)
downloadeclipse.platform.ui-e35bc53b11f123d444b6c6f86e59a54562dbbfcf.tar.gz
eclipse.platform.ui-e35bc53b11f123d444b6c6f86e59a54562dbbfcf.tar.xz
eclipse.platform.ui-e35bc53b11f123d444b6c6f86e59a54562dbbfcf.zip
Use inherit to set transparent background for the progress label on the splash screen. Bug: 430848 Signed-off-by: Stefan Winkler <stefan@winklerweb.net>
-rw-r--r--bundles/org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css3
1 files changed, 2 insertions, 1 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 b2877e6668a..774e7df4c03 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
@@ -8,6 +8,7 @@
* Contributors:
* 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
*******************************************************************************/
/*******************************************************************************
@@ -413,7 +414,7 @@ FlyoutControlComposite, FlyoutControlComposite ToolBar, FlyoutControlComposite C
* which does not look very nice.
*/
Label#org-eclipse-ui-splash-progressText {
- background-color: #f7f7f7;
+ background-color: inherit; /* transparent */
color: #9c9696; /* see property startupForegroundColor in the product */
}

Back to the top