From 128cb679aad9fffa80b4fbe36c8ed5d7319c4495 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 3 Mar 2016 01:04:17 -0800 Subject: [PATCH] torrent list: use full width when not hovering --- main/index.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main/index.css b/main/index.css index bfd25a5d..59567393 100644 --- a/main/index.css +++ b/main/index.css @@ -207,10 +207,14 @@ body.drag::before { .torrent .metadata { float: left; - width: calc(100% - 240px); + width: 100%; text-shadow: rgba(0, 0, 0, 0.5) 0 0 4px; } +.torrent:hover .metadata { + width: calc(100% - 170px); +} + .torrent .btn { float: right; margin-top: 20px;