aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/theme/src/themes/dark/index.ts10
-rw-r--r--packages/theme/src/themes/default/index.ts3
-rw-r--r--src/features/todos/components/TodosWebview.js1
3 files changed, 14 insertions, 0 deletions
diff --git a/packages/theme/src/themes/dark/index.ts b/packages/theme/src/themes/dark/index.ts
index bd9f001e8..cb1b33f2d 100644
--- a/packages/theme/src/themes/dark/index.ts
+++ b/packages/theme/src/themes/dark/index.ts
@@ -118,3 +118,13 @@ export const announcements = merge({}, defaultStyles.announcements, {
118 background: legacyStyles.darkThemeGrayDark, 118 background: legacyStyles.darkThemeGrayDark,
119 }, 119 },
120}); 120});
121
122// Todos
123export const todos = merge({}, defaultStyles.todos, {
124 todosLayer: {
125 borderLeftColor: legacyStyles.darkThemeGrayDarker,
126 },
127 dragIndicator: {
128 background: legacyStyles.themeGrayLight,
129 },
130});
diff --git a/packages/theme/src/themes/default/index.ts b/packages/theme/src/themes/default/index.ts
index 4a49a4de0..d524b8ea7 100644
--- a/packages/theme/src/themes/default/index.ts
+++ b/packages/theme/src/themes/default/index.ts
@@ -210,6 +210,9 @@ export const announcements = {
210 210
211// Todos 211// Todos
212export const todos = { 212export const todos = {
213 todosLayer: {
214 borderLeftColor: legacyStyles.themeGrayDark,
215 },
213 dragIndicator: { 216 dragIndicator: {
214 background: legacyStyles.themeGrayLight, 217 background: legacyStyles.themeGrayLight,
215 }, 218 },
diff --git a/src/features/todos/components/TodosWebview.js b/src/features/todos/components/TodosWebview.js
index 1657bebd8..bc32ae728 100644
--- a/src/features/todos/components/TodosWebview.js
+++ b/src/features/todos/components/TodosWebview.js
@@ -9,6 +9,7 @@ const styles = theme => ({
9 root: { 9 root: {
10 background: theme.colorBackground, 10 background: theme.colorBackground,
11 position: 'relative', 11 position: 'relative',
12 borderLeft: [1, 'solid', theme.todos.todosLayer.borderLeftColor],
12 }, 13 },
13 webview: { 14 webview: {
14 height: '100%', 15 height: '100%',