From 6a59578f3ed62fead85621449aa0b477e43627ad Mon Sep 17 00:00:00 2001 From: Gerben Date: Thu, 14 Nov 2019 00:38:48 +0100 Subject: [PATCH] Show a hint of hidden content under a closed folder --- public/custom-style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/custom-style.css b/public/custom-style.css index 4ca299d..aa18f49 100644 --- a/public/custom-style.css +++ b/public/custom-style.css @@ -72,6 +72,12 @@ kbd { background: #F9FAFB; } +/* Show a hint of hidden content under a closed folder */ +details:not([open]) > summary.ui.top.attached.header { + background: linear-gradient(#f9fafb 80%, #ddd 84%, #f9fafb 88%, #ddd 92%, #f9fafb 96%, #ddd); + padding-bottom: 1.5rem; +} + .ui.left.attached.button { margin-right: 1px; }