diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-08 09:09:34 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-08 09:09:34 -0700 |
commit | cbdb291c475d624ff0f8abaa1a99952e6438bd9c (patch) | |
tree | f07329f7c382bec6dde69bb5b33a4fd70b832d2c /modern/src/settings | |
parent | f5313f895c29aae18afbc084c965b8ace37833ff (diff) | |
download | trackermap-web-cbdb291c475d624ff0f8abaa1a99952e6438bd9c.tar.gz trackermap-web-cbdb291c475d624ff0f8abaa1a99952e6438bd9c.tar.bz2 trackermap-web-cbdb291c475d624ff0f8abaa1a99952e6438bd9c.zip |
Revert background color
Diffstat (limited to 'modern/src/settings')
-rw-r--r-- | modern/src/settings/CalendarsPage.js | 5 | ||||
-rw-r--r-- | modern/src/settings/CommandsPage.js | 5 | ||||
-rw-r--r-- | modern/src/settings/ComputedAttributesPage.js | 5 | ||||
-rw-r--r-- | modern/src/settings/DriversPage.js | 5 | ||||
-rw-r--r-- | modern/src/settings/GroupsPage.js | 5 | ||||
-rw-r--r-- | modern/src/settings/MaintenancesPage.js | 5 | ||||
-rw-r--r-- | modern/src/settings/NotificationsPage.js | 5 |
7 files changed, 7 insertions, 28 deletions
diff --git a/modern/src/settings/CalendarsPage.js b/modern/src/settings/CalendarsPage.js index 71611ea5..8b7a2c1b 100644 --- a/modern/src/settings/CalendarsPage.js +++ b/modern/src/settings/CalendarsPage.js @@ -9,9 +9,6 @@ import OptionsLayout from './OptionsLayout'; import { useTranslation } from '../LocalizationProvider'; const useStyles = makeStyles((theme) => ({ - table: { - backgroundColor: theme.palette.colors.white, - }, columnAction: { width: theme.spacing(1), padding: theme.spacing(0, 1), @@ -32,7 +29,7 @@ const CalendarsView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - <TableContainer className={classes.table}> + <TableContainer> <Table> <TableHead> <TableRow> diff --git a/modern/src/settings/CommandsPage.js b/modern/src/settings/CommandsPage.js index ef524957..bf6b10aa 100644 --- a/modern/src/settings/CommandsPage.js +++ b/modern/src/settings/CommandsPage.js @@ -11,9 +11,6 @@ import { formatBoolean } from '../common/formatter'; import { prefixString } from '../common/stringUtils'; const useStyles = makeStyles((theme) => ({ - table: { - backgroundColor: theme.palette.colors.white, - }, columnAction: { width: theme.spacing(1), padding: theme.spacing(0, 1), @@ -34,7 +31,7 @@ const CommandsView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - <TableContainer className={classes.table}> + <TableContainer> <Table> <TableHead> <TableRow> diff --git a/modern/src/settings/ComputedAttributesPage.js b/modern/src/settings/ComputedAttributesPage.js index d9b19de0..27be681e 100644 --- a/modern/src/settings/ComputedAttributesPage.js +++ b/modern/src/settings/ComputedAttributesPage.js @@ -10,9 +10,6 @@ import { useTranslation } from '../LocalizationProvider'; import { useAdministrator } from '../common/permissions'; const useStyles = makeStyles((theme) => ({ - table: { - backgroundColor: theme.palette.colors.white, - }, columnAction: { width: theme.spacing(1), padding: theme.spacing(0, 1), @@ -34,7 +31,7 @@ const ComputedAttributeView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - <TableContainer className={classes.table}> + <TableContainer> <Table> <TableHead> <TableRow> diff --git a/modern/src/settings/DriversPage.js b/modern/src/settings/DriversPage.js index 2f0f2f07..5fb93a99 100644 --- a/modern/src/settings/DriversPage.js +++ b/modern/src/settings/DriversPage.js @@ -9,9 +9,6 @@ import OptionsLayout from './OptionsLayout'; import { useTranslation } from '../LocalizationProvider'; const useStyles = makeStyles((theme) => ({ - table: { - backgroundColor: theme.palette.colors.white, - }, columnAction: { width: theme.spacing(1), padding: theme.spacing(0, 1), @@ -32,7 +29,7 @@ const DriversView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - <TableContainer className={classes.table}> + <TableContainer> <Table> <TableHead> <TableRow> diff --git a/modern/src/settings/GroupsPage.js b/modern/src/settings/GroupsPage.js index 2e5fb3ef..8ae5a33f 100644 --- a/modern/src/settings/GroupsPage.js +++ b/modern/src/settings/GroupsPage.js @@ -9,9 +9,6 @@ import OptionsLayout from './OptionsLayout'; import { useTranslation } from '../LocalizationProvider'; const useStyles = makeStyles((theme) => ({ - table: { - backgroundColor: theme.palette.colors.white, - }, columnAction: { width: theme.spacing(1), padding: theme.spacing(0, 1), @@ -32,7 +29,7 @@ const GroupsView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - <TableContainer className={classes.table}> + <TableContainer> <Table> <TableHead> <TableRow> diff --git a/modern/src/settings/MaintenancesPage.js b/modern/src/settings/MaintenancesPage.js index e9f9d9cd..87207f0f 100644 --- a/modern/src/settings/MaintenancesPage.js +++ b/modern/src/settings/MaintenancesPage.js @@ -13,9 +13,6 @@ import OptionsLayout from './OptionsLayout'; import { useTranslation } from '../LocalizationProvider'; const useStyles = makeStyles((theme) => ({ - table: { - backgroundColor: theme.palette.colors.white, - }, columnAction: { width: theme.spacing(1), padding: theme.spacing(0, 1), @@ -56,7 +53,7 @@ const MaintenancesView = ({ updateTimestamp, onMenuClick }) => { }; return ( - <TableContainer className={classes.table}> + <TableContainer> <Table> <TableHead> <TableRow> diff --git a/modern/src/settings/NotificationsPage.js b/modern/src/settings/NotificationsPage.js index 8efc8579..965e8c33 100644 --- a/modern/src/settings/NotificationsPage.js +++ b/modern/src/settings/NotificationsPage.js @@ -11,9 +11,6 @@ import OptionsLayout from './OptionsLayout'; import { useTranslation } from '../LocalizationProvider'; const useStyles = makeStyles((theme) => ({ - table: { - backgroundColor: theme.palette.colors.white, - }, columnAction: { width: theme.spacing(1), padding: theme.spacing(0, 1), @@ -45,7 +42,7 @@ const NotificationsView = ({ updateTimestamp, onMenuClick }) => { }; return ( - <TableContainer className={classes.table}> + <TableContainer> <Table> <TableHead> <TableRow> |