Projet

Général

Profil

0001-css-hide-buttons-with-a-hidden-attribute-61924.patch

Frédéric Péters, 17 février 2022 15:54

Télécharger (684 octets)

Voir les différences:

Subject: [PATCH] css: hide buttons with a hidden attribute (#61924)

 gadjo/static/css/_forms.scss | 3 +++
 1 file changed, 3 insertions(+)
gadjo/static/css/_forms.scss
85 85

  
86 86
%button {
87 87
	display: inline-block;
88
	&[hidden] {
89
		display: none;
90
	}
88 91
	padding: 5px 15px;
89 92
	cursor: pointer;
90 93
	border: 0px solid #aaa;
91
-