Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoykoAlex2019-09-10 17:06:36 +0000
committerLars Vogel2019-09-24 21:40:39 +0000
commitb4eecb3a953fd0091878be6846d803047d2ef31f (patch)
tree9f25e6693dabb7bb34f9e22273b767419682b9ce
parent0fbabfe232fc8796873ef374fd44f0ef25baabd2 (diff)
downloadeclipse.platform.ui-b4eecb3a953fd0091878be6846d803047d2ef31f.tar.gz
eclipse.platform.ui-b4eecb3a953fd0091878be6846d803047d2ef31f.tar.xz
eclipse.platform.ui-b4eecb3a953fd0091878be6846d803047d2ef31f.zip
Bug 550939 - Search text box background color on mac 10.14
Change-Id: I49eceb11042145739b2c710f2c0dd3a51d47cc95 Signed-off-by: BoykoAlex <aboyko@pivotal.io> Signed-off-by: Matthias Becker <ma.becker@sap.com>
-rw-r--r--bundles/org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css3
-rw-r--r--bundles/org.eclipse.ui.themes/css/e4-dark_mac1013.css21
2 files changed, 1 insertions, 23 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 090bcdbc295..99168962d6e 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
@@ -140,8 +140,7 @@ TextSearchControl > Label {
Text[style~='SWT.SEARCH'],
Text[style~='SWT.SEARCH'] + Label /* SWT-BUG: adjacent sibling selector is ignored (CSS2.1) */ {
/* search boxes */
- background-color: #949DA5;
- color: #ffffff;
+ background-color: #757575; /* background-color is hard-coded */
}
Text[style~='SWT.POP_UP'] {
background-color: #34383B;
diff --git a/bundles/org.eclipse.ui.themes/css/e4-dark_mac1013.css b/bundles/org.eclipse.ui.themes/css/e4-dark_mac1013.css
index 24e532c2a5e..429c4ee43b1 100644
--- a/bundles/org.eclipse.ui.themes/css/e4-dark_mac1013.css
+++ b/bundles/org.eclipse.ui.themes/css/e4-dark_mac1013.css
@@ -297,24 +297,3 @@ Form > LayoutComposite > LayoutComposite > Combo:selected,
color: #FFF;
}
-Text[style~='SWT.SEARCH'],
-/* the following are required due to Bug 419482: */
-Composite > Text[style~='SWT.SEARCH'],
-TabFolder > Composite > Text[style~='SWT.SEARCH'],
-TabFolder > Composite > * > Text[style~='SWT.SEARCH'],
-DocCommentOwnerComposite > Group > Text[style~='SWT.SEARCH'],
-TabFolder > Composite > ScrolledComposite > Text[style~='SWT.SEARCH'],
-Shell > Composite > Composite > Text[style~='SWT.SEARCH'],
-Composite > Composite > Composite > Group > Text[style~='SWT.SEARCH'],
-Shell > Composite > Composite > Composite > Text[style~='SWT.SEARCH'],
-ScrolledComposite > Composite > Composite > Composite > Text[style~='SWT.SEARCH'],
-Shell > Composite > Composite > Composite > Composite > Composite > Text[style~='SWT.SEARCH'],
-Shell[style~='SWT.RADIO'][style~='SWT.CASCADE'][style~='SWT.SHADOW_ETCHED_IN'][style~='SWT.SHADOW_ETCHED_OUT'][style~='SWT.RESIZE'][style~='SWT.MENU'][style~='SWT.FULL_SELECTION'][style~='SWT.DATE'] > Composite > Text[style~='SWT.SEARCH'],
-Shell[style~='SWT.RADIO'][style~='SWT.CASCADE'][style~='SWT.SHADOW_ETCHED_IN'][style~='SWT.SHADOW_ETCHED_OUT'][style~='SWT.RESIZE'][style~='SWT.MENU'][style~='SWT.FULL_SELECTION'][style~='SWT.DATE'] > Composite > * > Text[style~='SWT.SEARCH'],
-#org-eclipse-pde-runtime-LogView Text[style~='SWT.SEARCH'],
-Form > LayoutComposite > LayoutComposite > Text[style~='SWT.SEARCH'],
-.MPart LayoutComposite > * > LayoutComposite > Section > LayoutComposite > Text[style~='SWT.SEARCH'] {
- /* search boxes */
- background-color: #949da5; /* background-color is hard-coded */
- color: #333;
-}

Back to the top