Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2019-10-25 17:15:38 +0000
committerLars Vogel2019-10-28 10:43:44 +0000
commit4768916e825ad6946898682b8490cadf1d193bf2 (patch)
tree6ab4704d575950e0d1492bf1e546af6628aede3f
parent65855cee0adaced5848175e9c741fdb5f52f158d (diff)
downloadeclipse.platform.ui-4768916e825ad6946898682b8490cadf1d193bf2.tar.gz
eclipse.platform.ui-4768916e825ad6946898682b8490cadf1d193bf2.tar.xz
eclipse.platform.ui-4768916e825ad6946898682b8490cadf1d193bf2.zip
Bug 552433 - [Dark theme] Move workaround for LogView Text search to a
general setting Change-Id: Id6165688802f13ce59f167b92a779a33b643c3d2 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--bundles/org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css4
-rw-r--r--bundles/org.eclipse.ui.themes/css/dark/e4-dark_partstyle.css7
2 files changed, 3 insertions, 8 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 ff2105db368..261ab97e388 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
@@ -125,8 +125,10 @@ Text[style~='SWT.DROP_DOWN']{
Text[style~='SWT.SEARCH'],
Text[style~='SWT.SEARCH'] + Label /* SWT-BUG: adjacent sibling selector is ignored (CSS2.1) */ {
/* search boxes */
- background-color: #757575; /* background-color is hard-coded */
+ background-color: #333;
+ color: #F4F7F7;
}
+
Text[style~='SWT.POP_UP'] {
background-color: #34383B;
color: #dddddd;
diff --git a/bundles/org.eclipse.ui.themes/css/dark/e4-dark_partstyle.css b/bundles/org.eclipse.ui.themes/css/dark/e4-dark_partstyle.css
index d7e2792d5e4..f9b81749a56 100644
--- a/bundles/org.eclipse.ui.themes/css/dark/e4-dark_partstyle.css
+++ b/bundles/org.eclipse.ui.themes/css/dark/e4-dark_partstyle.css
@@ -233,13 +233,6 @@
/* ------------------------------------------------------------- */
-#org-eclipse-pde-runtime-LogView Text {
- background-color: #333;
- color: #F4F7F7;
-}
-
-/* ------------------------------------------------------------- */
-
#org-eclipse-pde-ui-TargetPlatformState PageBook > Composite > * {
background-color: #2F2F2F;
color: #CCC;

Back to the top