Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Grunberg2018-07-06 14:56:09 +0000
committerSam Davis2018-09-04 21:49:04 +0000
commit0dba83f82ba01c10872aec8118f46595a0bce36c (patch)
tree002d158847b87188ed7cd89c51323c1f798e4881
parent566c107ef49118c28e55eca5af3ca1733cb15f13 (diff)
downloadorg.eclipse.mylyn.tasks-0dba83f82ba01c10872aec8118f46595a0bce36c.tar.gz
org.eclipse.mylyn.tasks-0dba83f82ba01c10872aec8118f46595a0bce36c.tar.xz
org.eclipse.mylyn.tasks-0dba83f82ba01c10872aec8118f46595a0bce36c.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> (cherry picked from commit 724035d03db2865890766125a6bc7931cfacbf21)
-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