diff --git a/ui/src/playlist/PlaylistList.jsx b/ui/src/playlist/PlaylistList.jsx
index 920b3ebe5..c1856675b 100644
--- a/ui/src/playlist/PlaylistList.jsx
+++ b/ui/src/playlist/PlaylistList.jsx
@@ -16,6 +16,7 @@ import {
usePermissions,
} from 'react-admin'
import Switch from '@material-ui/core/Switch'
+import { makeStyles } from '@material-ui/core/styles'
import { useMediaQuery } from '@material-ui/core'
import {
DurationField,
@@ -28,6 +29,12 @@ import {
import PlaylistListActions from './PlaylistListActions'
import ChangePublicStatusButton from './ChangePublicStatusButton'
+const useStyles = makeStyles((theme) => ({
+ button: {
+ color: theme.palette.type === 'dark' ? 'white' : undefined,
+ },
+}))
+
const PlaylistFilter = (props) => {
const { permissions } = usePermissions()
return (
@@ -112,13 +119,24 @@ const ToggleAutoImport = ({ resource, source }) => {
) : null
}
-const PlaylistListBulkActions = (props) => (
- <>
-
-
-
- >
-)
+const PlaylistListBulkActions = (props) => {
+ const classes = useStyles()
+ return (
+ <>
+
+
+
+ >
+ )
+}
const PlaylistList = (props) => {
const isXsmall = useMediaQuery((theme) => theme.breakpoints.down('xs'))