From 0c9b53ceac0860765b436c3959bd896492fca7b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 17 Feb 2022 15:54:28 +0100 Subject: [PATCH] css: hide buttons with a hidden attribute (#61924) --- gadjo/static/css/_forms.scss | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gadjo/static/css/_forms.scss b/gadjo/static/css/_forms.scss index a99afe5..5e056fc 100644 --- a/gadjo/static/css/_forms.scss +++ b/gadjo/static/css/_forms.scss @@ -85,6 +85,9 @@ a.button { %button { display: inline-block; + &[hidden] { + display: none; + } padding: 5px 15px; cursor: pointer; border: 0px solid #aaa;