Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.mylyn.tasks.ui/build.properties3
-rw-r--r--org.eclipse.mylyn.tasks.ui/css/e4-dark_mylyn_prefstyle.css10
-rw-r--r--org.eclipse.mylyn.tasks.ui/plugin.xml10
3 files changed, 22 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/build.properties b/org.eclipse.mylyn.tasks.ui/build.properties
index f4d75c7d9..5a69845ad 100644
--- a/org.eclipse.mylyn.tasks.ui/build.properties
+++ b/org.eclipse.mylyn.tasks.ui/build.properties
@@ -11,7 +11,8 @@ bin.includes = about.html,\
icons/,\
doc/,\
META-INF/,\
- plugin.properties
+ plugin.properties,\
+ css/
src.includes = about.html,\
schema/
source.. = src/
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
new file mode 100644
index 000000000..e06e986cc
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.ui/css/e4-dark_mylyn_prefstyle.css
@@ -0,0 +1,10 @@
+/* See bug 466075 about the pseudo-selector ":org-eclipse-mylyn-tasks-ui" */
+IEclipsePreferences#org-eclipse-ui-workbench:org-eclipse-mylyn-tasks-ui {
+ preferences:
+ 'org.eclipse.mylyn.tasks.ui.colors.foreground.today.scheduled=52,101,164'
+ 'org.eclipse.mylyn.tasks.ui.colors.foreground.past.scheduled=52,101,164'
+ 'org.eclipse.mylyn.tasks.ui.colors.foreground.thisweek.scheduled=85,87,83'
+ '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
diff --git a/org.eclipse.mylyn.tasks.ui/plugin.xml b/org.eclipse.mylyn.tasks.ui/plugin.xml
index b7b9d6224..c0ccd482b 100644
--- a/org.eclipse.mylyn.tasks.ui/plugin.xml
+++ b/org.eclipse.mylyn.tasks.ui/plugin.xml
@@ -799,6 +799,16 @@
<!-- defaultsTo="org.eclipse.jface.dialogfont"-->
<extension
+ point="org.eclipse.e4.ui.css.swt.theme">
+ <stylesheet
+ uri="css/e4-dark_mylyn_prefstyle.css">
+ <themeid
+ refid="org.eclipse.e4.ui.css.theme.e4_dark">
+ </themeid>
+ </stylesheet>
+ </extension>
+
+ <extension
point="org.eclipse.ui.perspectives">
<perspective
class="org.eclipse.mylyn.internal.tasks.ui.PlanningPerspectiveFactory"

Back to the top