aboutsummaryrefslogtreecommitdiffstats
path: root/webui
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-02-26 16:26:37 +0100
committerSascha <GlancingMind@outlook.com>2021-03-04 20:53:28 +0100
commit30587cc03f0b1a8fe0c5621207882b9c6714093e (patch)
tree1eab7fcd6aec71a2231487a5cc7fcbbbc13cae5e /webui
parentc834c03b809f226801423d726c62608297cd6fc4 (diff)
downloadgit-bug-30587cc03f0b1a8fe0c5621207882b9c6714093e.tar.gz
Fix color of open/close filter buttons in dark mode
Diffstat (limited to 'webui')
-rw-r--r--webui/src/pages/list/Filter.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/pages/list/Filter.tsx b/webui/src/pages/list/Filter.tsx
index 5c4a3d17..66702078 100644
--- a/webui/src/pages/list/Filter.tsx
+++ b/webui/src/pages/list/Filter.tsx
@@ -65,7 +65,7 @@ function stringify(params: Query): string {
const useStyles = makeStyles((theme) => ({
element: {
...theme.typography.body2,
- color: '#444',
+ color: theme.palette.text.secondary,
padding: theme.spacing(0, 1),
fontWeight: 400,
textDecoration: 'none',
@@ -75,7 +75,7 @@ const useStyles = makeStyles((theme) => ({
},
itemActive: {
fontWeight: 600,
- color: '#333',
+ color: theme.palette.text.primary,
},
icon: {
paddingRight: theme.spacing(0.5),