From b0b9c182fcd2091a2bed65fcdbfe83d7c3bbfbb1 Mon Sep 17 00:00:00 2001 From: girst Date: Thu, 8 Oct 2020 16:34:35 +0200 Subject: [PATCH] exclude search filters from new details style --- app/static/style.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/static/style.css b/app/static/style.css index ec5e3bf..ee1d7ed 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -231,23 +231,23 @@ ul#submgr{list-style: none} margin: 1em 0; } -details[open]:not(.advanced) { +details[open]:not(.advanced):not(#filters) { border: 1px solid #444; border-radius: 3px 3px 0 0; border-top: none } -details:not(.advanced) summary { +details:not(.advanced):not(#filters)>summary { border-radius: 3px 3px 0 0; padding: .25em; } -details[open]:not(.advanced) summary { +details[open]:not(.advanced):not(#filters)>summary { background: #444; } -details[open]:not(.advanced) summary:hover, -details[open]:not(.advanced) summary:active { +details[open]:not(.advanced):not(#filters)>summary:hover, +details[open]:not(.advanced):not(#filters)>summary:active { background: #555; } -details:not(.advanced)>*:not(:first-child) { +details:not(.advanced):not(#filters)>*:not(:first-child) { margin: 1em; } -- 2.39.3