From dec107eefb0c7f68e32674dbac11f930d8bc11c4 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Wed, 28 Sep 2016 19:28:19 -0700 Subject: [PATCH] Fix file info cutting off the image shadow on hover even if it doesn't expand. --- src/css/style.css | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/css/style.css b/src/css/style.css index c122408b8..b1cc83abb 100644 --- a/src/css/style.css +++ b/src/css/style.css @@ -839,22 +839,24 @@ div.catalog-post { left: 0; right: 0; top: 0; + min-height: 20px; + background-color: inherit; } .catalog-post > * > .fileText { - min-height: 16px; + position: relative; padding: 2px; + background-color: inherit; } .catalog-small .catalog-post > * .fileText { font-size: 10px; } -.catalog-post > .file:not(:hover) > .fileText { +.catalog-post > * > .fileText:not(:hover) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } -.catalog-post > .file:hover { +.catalog-post > * > .fileText:hover { z-index: 2; - background-color: inherit; } div.catalog-post > div.postInfo { width: auto;