From 05536dd459c03ede4615879e4f56d15b87f48bd2 Mon Sep 17 00:00:00 2001 From: Elisabeth Ryder <78618783+SilverSong3@users.noreply.github.com> Date: Mon, 16 Sep 2024 14:38:41 -0400 Subject: [PATCH] Update listing.css Fix for #3385 to align the size and modified titles above their respective data. Found 2 lines containing the same #listing.list .item.header .name and deleted them both to remove the offset the title had from the initial commit. --- frontend/src/css/listing.css | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/frontend/src/css/listing.css b/frontend/src/css/listing.css index d1423e47..ef627936 100644 --- a/frontend/src/css/listing.css +++ b/frontend/src/css/listing.css @@ -195,6 +195,10 @@ html[dir="rtl"] #listing { align-items: center; } +#listing.list .item p.name { + margin-right: -3em; +} + #listing.list .item .name { width: 50%; } @@ -227,10 +231,6 @@ html[dir="rtl"] #listing { width: 0; } -#listing.list .item.header .name { - margin-right: 3em; -} - #listing.list .header a { color: inherit; } @@ -246,10 +246,6 @@ html[dir="rtl"] #listing { white-space: pre-wrap; } -#listing.list .item.header .name { - margin-right: 3em; -} - #listing.list .header span { vertical-align: middle; }