From 19ca5746f3fd254d7998da0bcf3692dbf919ecd4 Mon Sep 17 00:00:00 2001 From: Stephen Mathieson <571265+stephenmathieson@users.noreply.github.com> Date: Mon, 30 Dec 2024 15:34:56 -0500 Subject: [PATCH] Make entire panel heading clickable This patch enables users to click anywhere within he panel's header to expand/collapse the panel, without visually changing the UI. --- gae/static/app.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gae/static/app.css b/gae/static/app.css index b91ec5e..7b501df 100644 --- a/gae/static/app.css +++ b/gae/static/app.css @@ -58,3 +58,7 @@ footer { max-height: 390px; overflow-y: scroll; } + +.panel-title a { + display: block; +}