diff --git a/pkg/app/web/src/pages/settings/piped.tsx b/pkg/app/web/src/pages/settings/piped.tsx index 460bc8ba46..e83a6e1bc9 100644 --- a/pkg/app/web/src/pages/settings/piped.tsx +++ b/pkg/app/web/src/pages/settings/piped.tsx @@ -26,6 +26,7 @@ import { MoreVert as MoreVertIcon, FilterList as FilterIcon, } from "@material-ui/icons"; +import clsx from "clsx"; import dayjs from "dayjs"; import React, { FC, memo, useCallback, useState } from "react"; import { useDispatch, useSelector } from "react-redux"; @@ -47,24 +48,8 @@ import { import { AppDispatch } from "../../store"; const useStyles = makeStyles((theme) => ({ - item: { - backgroundColor: theme.palette.background.paper, - }, - disabledPipedsAccordion: { - padding: 0, - }, - disabledItemsSummary: { - borderBottom: "1px solid rgba(0, 0, 0, .125)", - }, - pipedsList: { - flex: 1, - }, - disabledItemsSecondaryHeader: { - color: theme.palette.text.secondary, - marginLeft: theme.spacing(3), - }, disabledItem: { - opacity: 0.6, + background: theme.palette.grey[200], }, toolbarSpacer: { flexGrow: 1, @@ -197,7 +182,10 @@ export const SettingsPipedPage: FC = memo(function SettingsPipedPage() { {pipeds.map((piped) => ( - + {`${piped.name} (${piped.id.slice(0, 8)})`}