Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-03-27 05:48:37 +0000
committerAlexander Kurtakov2018-03-27 05:48:37 +0000
commit6c1a7743a2310dbe729f94b8b5e0e5956210010a (patch)
tree5040efbda0531f0f6a9a9b80037ce08550ca4a7f
parent695bac0ada85a8d646ca492b7d1910e9c98b265a (diff)
downloadeclipse.platform.text-6c1a7743a2310dbe729f94b8b5e0e5956210010a.tar.gz
eclipse.platform.text-6c1a7743a2310dbe729f94b8b5e0e5956210010a.tar.xz
eclipse.platform.text-6c1a7743a2310dbe729f94b8b5e0e5956210010a.zip
Bug 532921 - Unnoticeable occurance marker in dark theme with generic
editor It's pretty hard to notice the occurrences marker in the vertical bar when in dark theme due to the color chosen in generic editor. Reuse the same color as JDT occurrences do. Change-Id: I397ee8f646b70434d366a4e7fc05442343a96be2 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.ui.genericeditor/resources/css/dark.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ui.genericeditor/resources/css/dark.css b/org.eclipse.ui.genericeditor/resources/css/dark.css
index 87ea22460a2..c98ed2a0082 100644
--- a/org.eclipse.ui.genericeditor/resources/css/dark.css
+++ b/org.eclipse.ui.genericeditor/resources/css/dark.css
@@ -11,6 +11,6 @@
IEclipsePreferences#org-eclipse-ui-editors:org-eclipse-ui-genericeditor {
preferences:
- 'TextOccurrenceIndicationColor=17, 61, 91'
+ 'TextOccurrenceIndicationColor=27, 98, 145'
}

Back to the top