diff options
author | Sascha <GlancingMind@outlook.com> | 2021-02-26 16:39:46 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-04 20:53:28 +0100 |
commit | 7beffb87182355c72ceffa29325815e71ead5f59 (patch) | |
tree | 8867642dfdf119c63d26e77a15506cadd7f8c8c0 /webui/src/pages | |
parent | b996779197539a429c4ad54fba225421e523702b (diff) | |
download | git-bug-7beffb87182355c72ceffa29325815e71ead5f59.tar.gz |
Fix searchbar background-color for dark mode
Diffstat (limited to 'webui/src/pages')
-rw-r--r-- | webui/src/pages/list/ListQuery.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webui/src/pages/list/ListQuery.tsx b/webui/src/pages/list/ListQuery.tsx index 87c21e3c..58660b32 100644 --- a/webui/src/pages/list/ListQuery.tsx +++ b/webui/src/pages/list/ListQuery.tsx @@ -56,10 +56,10 @@ const useStyles = makeStyles<Theme, StylesProps>((theme) => ({ }, search: { borderRadius: theme.shape.borderRadius, - borderColor: fade(theme.palette.primary.main, 0.2), + borderColor: theme.palette.divider, borderStyle: 'solid', borderWidth: '1px', - backgroundColor: fade(theme.palette.primary.main, 0.05), + backgroundColor: fade(theme.palette.text.hint, 0.05), padding: theme.spacing(0, 1), width: ({ searching }) => (searching ? '20rem' : '15rem'), transition: theme.transitions.create([ |