Projet

Général

Profil

0001-scss-remove-excess-margin-when-having-long-lines-of-.patch

Frédéric Péters, 12 janvier 2021 21:42

Télécharger (815 octets)

Voir les différences:

Subject: [PATCH] scss: remove excess margin when having long lines of radio
 options (#50088)

 static/includes/_forms.scss | 4 ++++
 1 file changed, 4 insertions(+)
static/includes/_forms.scss
233 233
.RadiobuttonsWidget {
234 234
	.content label {
235 235
		display: block;
236
		input[type="checkbox"], input[type="radio"] {
237
			margin-bottom: 0;
238
		}
239
		margin-bottom: 0.3em;
236 240
	}
237 241
	&.widget-inline-radio .content label {
238 242
		display: inline-block;
239
-