Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Grunberg2018-07-06 14:56:09 +0000
committerRoland Grunberg2018-07-06 14:56:36 +0000
commit724035d03db2865890766125a6bc7931cfacbf21 (patch)
tree465cd71630cea248203228323ae54b1fbc16405d
parentbbe4b4f8405027ac4f10aa8be1183d1a99779e02 (diff)
downloadorg.eclipse.mylyn.tasks-724035d03db2865890766125a6bc7931cfacbf21.tar.gz
org.eclipse.mylyn.tasks-724035d03db2865890766125a6bc7931cfacbf21.tar.xz
org.eclipse.mylyn.tasks-724035d03db2865890766125a6bc7931cfacbf21.zip
Bug 536703 - DatePickerPanel not styled correctly on dark theme.
- DatePickerPanel is a custom widget from mylyn.commons.workbench that includes a DateTime styled as an SWT.CALENDAR, a List of hours for the given day, as well as a "Today" Hyperlink to automatically select the current date/time. Change-Id: Iba78c5902c5fabc38a37497b0955e6320387fe78 Signed-off-by: Roland Grunberg <rgrunber@redhat.com>
-rw-r--r--org.eclipse.mylyn.tasks.ui/css/e4-dark_mylyn_prefstyle.css9
1 files changed, 8 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/css/e4-dark_mylyn_prefstyle.css b/org.eclipse.mylyn.tasks.ui/css/e4-dark_mylyn_prefstyle.css
index e06e986cc..99a910821 100644
--- a/org.eclipse.mylyn.tasks.ui/css/e4-dark_mylyn_prefstyle.css
+++ b/org.eclipse.mylyn.tasks.ui/css/e4-dark_mylyn_prefstyle.css
@@ -7,4 +7,11 @@ IEclipsePreferences#org-eclipse-ui-workbench:org-eclipse-mylyn-tasks-ui {
'org.eclipse.mylyn.tasks.ui.colors.foreground.task.active=117,80,123'
'org.eclipse.mylyn.tasks.ui.colors.category.gradient.start=85,87,83'
'org.eclipse.mylyn.tasks.ui.colors.category.gradient.end=136,137,133'
-} \ No newline at end of file
+}
+
+/* See org.eclipse.ui.themes/css/dark/e4-dark_globalstyle.css for additional
+ * Mylyn Theme settings */
+DatePickerPanel {
+ background-color: #41464A;
+ color: #dddddd;
+}

Back to the top