diff --git a/client/src/javascript/components/torrent-list/TorrentListCell.tsx b/client/src/javascript/components/torrent-list/TorrentListCell.tsx index 96525cfb..d5f3c6ca 100644 --- a/client/src/javascript/components/torrent-list/TorrentListCell.tsx +++ b/client/src/javascript/components/torrent-list/TorrentListCell.tsx @@ -170,6 +170,7 @@ const TorrentListCell: FC = observer( className={ classNameOverride ? className : classnames('torrent__detail', `torrent__detail--${column}`, className) } + css={{pointerEvents: 'none', userSelect: 'none'}} role="cell" style={{width: `${width}px`}}> {icon} diff --git a/client/src/javascript/components/torrent-list/TorrentListRowExpanded.tsx b/client/src/javascript/components/torrent-list/TorrentListRowExpanded.tsx index f8e5cdcd..8c1f76dc 100644 --- a/client/src/javascript/components/torrent-list/TorrentListRowExpanded.tsx +++ b/client/src/javascript/components/torrent-list/TorrentListRowExpanded.tsx @@ -121,7 +121,7 @@ const TorrentListRowExpanded = observer( onTouchEnd={handleTouchEnd} onKeyPress={handleKeyPress} ref={ref}> -
+
{primarySection}
{secondarySection}
diff --git a/client/src/sass/components/_torrent.scss b/client/src/sass/components/_torrent.scss index 5557c2c0..3d7668f1 100644 --- a/client/src/sass/components/_torrent.scss +++ b/client/src/sass/components/_torrent.scss @@ -374,11 +374,6 @@ $more-info--border: floating-action.$textbox-repeater--button--border; } } } - - &__wrapper { - align-items: center; - display: flex; - } } }