🐛 App Transparency not used by torrent tile table (#1256)

* 🐛 App Transparency not used by torrent tile table

* 🐛 Classname to unspecific
This commit is contained in:
Meier Lukas
2023-08-08 22:18:35 +02:00
committed by GitHub
parent 9404b2c718
commit 6460e433a5
2 changed files with 7 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ export const BitTorrrentQueueItem = ({ torrent, width, app }: TorrentQueueItemPr
const uploadSpeed = torrent.uploadSpeed / 1024 / 1024;
const size = torrent.totalSelected;
return (
<tr key={torrent.id}>
<tr key={torrent.id} className={classes.transparentBackground}>
<td>
<Popover opened={popoverOpened} radius="md" shadow="md" width={350} withinPortal>
<Popover.Dropdown>
@@ -235,4 +235,7 @@ const useStyles = createStyles(() => ({
noTextBreak: {
whiteSpace: 'nowrap',
},
transparentBackground: {
backgroundColor: 'transparent !important',
},
}));