diff options
author | Anton Tananaev <anton@traccar.org> | 2023-09-01 06:49:47 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2023-09-01 06:49:47 -0700 |
commit | 0a1a2e457e685390795fcdfbe4b6ba03ce9c633a (patch) | |
tree | 99cc2df505c436c6a0c328690fc955640ea5bc29 /modern/src/common/components | |
parent | 4fc61613ad4b7b7ffd23d8a962e9138b37ab2b3f (diff) | |
download | trackermap-web-0a1a2e457e685390795fcdfbe4b6ba03ce9c633a.tar.gz trackermap-web-0a1a2e457e685390795fcdfbe4b6ba03ce9c633a.tar.bz2 trackermap-web-0a1a2e457e685390795fcdfbe4b6ba03ce9c633a.zip |
Fix color references (fix #1172)
Diffstat (limited to 'modern/src/common/components')
-rw-r--r-- | modern/src/common/components/RemoveDialog.jsx | 2 | ||||
-rw-r--r-- | modern/src/common/components/StatusCard.jsx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/modern/src/common/components/RemoveDialog.jsx b/modern/src/common/components/RemoveDialog.jsx index 9a2a27fb..0f4254a8 100644 --- a/modern/src/common/components/RemoveDialog.jsx +++ b/modern/src/common/components/RemoveDialog.jsx @@ -16,7 +16,7 @@ const useStyles = makeStyles((theme) => ({ height: 'auto', marginTop: 0, marginBottom: 0, - color: theme.palette.colors.negative, + color: theme.palette.error.main, }, })); diff --git a/modern/src/common/components/StatusCard.jsx b/modern/src/common/components/StatusCard.jsx index c8898b7c..38de944b 100644 --- a/modern/src/common/components/StatusCard.jsx +++ b/modern/src/common/components/StatusCard.jsx @@ -60,8 +60,8 @@ const useStyles = makeStyles((theme) => ({ maxHeight: theme.dimensions.cardContentMaxHeight, overflow: 'auto', }, - negative: { - color: theme.palette.colors.negative, + delete: { + color: theme.palette.error.main, }, icon: { width: '25px', @@ -254,7 +254,7 @@ const StatusCard = ({ deviceId, position, onClose, disableActions, desktopPaddin <IconButton onClick={() => setRemoving(true)} disabled={disableActions || deviceReadonly} - className={classes.negative} + className={classes.delete} > <DeleteIcon /> </IconButton> |