Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonah Graham2020-09-07 14:18:40 +0000
committerJonah Graham2020-09-07 14:55:00 +0000
commit65a4d1c4249b09d8f8101848ce711bbbca4659f9 (patch)
tree5b404b650a37fdd5f48859540a5657f4f6798164
parente2b94a324f6ea3f5c6e3813253f17754b1647f9e (diff)
downloadorg.eclipse.cdt-65a4d1c4249b09d8f8101848ce711bbbca4659f9.tar.gz
org.eclipse.cdt-65a4d1c4249b09d8f8101848ce711bbbca4659f9.tar.xz
org.eclipse.cdt-65a4d1c4249b09d8f8101848ce711bbbca4659f9.zip
Bug 546610: fix writeaccess_highlight color in dark themeCDT_10_0_0
Uses same color as JDT in https://bugs.eclipse.org/bugs/show_bug.cgi?id=537988 Change-Id: I578b6c8e3ebf345d6a90214a3a919e0ee167ac8b
-rw-r--r--core/org.eclipse.cdt.ui/css/e4-dark_cdt.css8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.ui/css/e4-dark_cdt.css b/core/org.eclipse.cdt.ui/css/e4-dark_cdt.css
index e23aa9085e3..9de73825e4e 100644
--- a/core/org.eclipse.cdt.ui/css/e4-dark_cdt.css
+++ b/core/org.eclipse.cdt.ui/css/e4-dark_cdt.css
@@ -75,5 +75,11 @@ IEclipsePreferences#org-eclipse-cdt-ui:org-eclipse-cdt-ui {
"semanticHighlighting.typedef.enabled=true"
"semanticHighlighting.typedef.bold=true"
"semanticHighlighting.typeParameter.color=191,164,164"
- "semanticHighlighting.typeParameter.enabled=true"
+ "semanticHighlighting.typeParameter.enabled=true"
+}
+
+
+IEclipsePreferences#org-eclipse-ui-workbench:org-eclipse-cdt-ui { /* pseudo attribute added to allow contributions without replacing this node, see Bug 466075 */
+ preferences:
+ "org.eclipse.cdt.ui.ColoredLabels.writeaccess_highlight=255,128,128"
}

Back to the top