From f5313f895c29aae18afbc084c965b8ace37833ff Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 8 May 2022 09:03:26 -0700 Subject: Update table styles --- modern/src/settings/CalendarsPage.js | 7 +++++-- modern/src/settings/CommandsPage.js | 7 +++++-- modern/src/settings/ComputedAttributesPage.js | 7 +++++-- modern/src/settings/DriversPage.js | 7 +++++-- modern/src/settings/GroupsPage.js | 7 +++++-- modern/src/settings/MaintenancesPage.js | 7 +++++-- modern/src/settings/NotificationsPage.js | 7 +++++-- 7 files changed, 35 insertions(+), 14 deletions(-) (limited to 'modern/src/settings') diff --git a/modern/src/settings/CalendarsPage.js b/modern/src/settings/CalendarsPage.js index 076f30ca..71611ea5 100644 --- a/modern/src/settings/CalendarsPage.js +++ b/modern/src/settings/CalendarsPage.js @@ -9,6 +9,9 @@ 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), @@ -29,7 +32,7 @@ const CalendarsView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - + @@ -41,7 +44,7 @@ const CalendarsView = ({ updateTimestamp, onMenuClick }) => { {items.map((item) => ( - onMenuClick(event.currentTarget, item.id)}> + onMenuClick(event.currentTarget, item.id)}> diff --git a/modern/src/settings/CommandsPage.js b/modern/src/settings/CommandsPage.js index e8422467..ef524957 100644 --- a/modern/src/settings/CommandsPage.js +++ b/modern/src/settings/CommandsPage.js @@ -11,6 +11,9 @@ 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), @@ -31,7 +34,7 @@ const CommandsView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - +
@@ -45,7 +48,7 @@ const CommandsView = ({ updateTimestamp, onMenuClick }) => { {items.map((item) => ( - onMenuClick(event.currentTarget, item.id)}> + onMenuClick(event.currentTarget, item.id)}> diff --git a/modern/src/settings/ComputedAttributesPage.js b/modern/src/settings/ComputedAttributesPage.js index 78842e33..d9b19de0 100644 --- a/modern/src/settings/ComputedAttributesPage.js +++ b/modern/src/settings/ComputedAttributesPage.js @@ -10,6 +10,9 @@ 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), @@ -31,7 +34,7 @@ const ComputedAttributeView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - +
@@ -47,7 +50,7 @@ const ComputedAttributeView = ({ updateTimestamp, onMenuClick }) => { {administrator && ( - onMenuClick(event.currentTarget, item.id)}> + onMenuClick(event.currentTarget, item.id)}> diff --git a/modern/src/settings/DriversPage.js b/modern/src/settings/DriversPage.js index 11419cf1..2f0f2f07 100644 --- a/modern/src/settings/DriversPage.js +++ b/modern/src/settings/DriversPage.js @@ -9,6 +9,9 @@ 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), @@ -29,7 +32,7 @@ const DriversView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - +
@@ -42,7 +45,7 @@ const DriversView = ({ updateTimestamp, onMenuClick }) => { {items.map((item) => ( - onMenuClick(event.currentTarget, item.id)}> + onMenuClick(event.currentTarget, item.id)}> diff --git a/modern/src/settings/GroupsPage.js b/modern/src/settings/GroupsPage.js index 0b28e7bf..2e5fb3ef 100644 --- a/modern/src/settings/GroupsPage.js +++ b/modern/src/settings/GroupsPage.js @@ -9,6 +9,9 @@ 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), @@ -29,7 +32,7 @@ const GroupsView = ({ updateTimestamp, onMenuClick }) => { }, [updateTimestamp]); return ( - +
@@ -41,7 +44,7 @@ const GroupsView = ({ updateTimestamp, onMenuClick }) => { {items.map((item) => ( - onMenuClick(event.currentTarget, item.id)}> + onMenuClick(event.currentTarget, item.id)}> diff --git a/modern/src/settings/MaintenancesPage.js b/modern/src/settings/MaintenancesPage.js index 2246b090..e9f9d9cd 100644 --- a/modern/src/settings/MaintenancesPage.js +++ b/modern/src/settings/MaintenancesPage.js @@ -13,6 +13,9 @@ 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), @@ -53,7 +56,7 @@ const MaintenancesView = ({ updateTimestamp, onMenuClick }) => { }; return ( - +
@@ -68,7 +71,7 @@ const MaintenancesView = ({ updateTimestamp, onMenuClick }) => { {items.map((item) => ( - onMenuClick(event.currentTarget, item.id)}> + onMenuClick(event.currentTarget, item.id)}> diff --git a/modern/src/settings/NotificationsPage.js b/modern/src/settings/NotificationsPage.js index 0d49d5ab..8efc8579 100644 --- a/modern/src/settings/NotificationsPage.js +++ b/modern/src/settings/NotificationsPage.js @@ -11,6 +11,9 @@ 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), @@ -42,7 +45,7 @@ const NotificationsView = ({ updateTimestamp, onMenuClick }) => { }; return ( - +
@@ -57,7 +60,7 @@ const NotificationsView = ({ updateTimestamp, onMenuClick }) => { {items.map((item) => ( - onMenuClick(event.currentTarget, item.id)}> + onMenuClick(event.currentTarget, item.id)}> -- cgit v1.2.3