🐛 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:
@@ -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',
|
||||
},
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user