Projet

Général

Profil

0001-scss-fix-alignment-of-custom-check-box-radio-buttons.patch

Frédéric Péters, 25 octobre 2021 19:00

Télécharger (1,02 ko)

Voir les différences:

Subject: [PATCH] scss: fix alignment of custom check box / radio buttons
 elements (#58179)

 static/includes/_forms.scss | 2 ++
 1 file changed, 2 insertions(+)
static/includes/_forms.scss
53 53
		+ span {
54 54
			padding-left: 1.2rem;
55 55
			&::before {
56
				box-sizing: content-box;
56 57
				display: block;
57 58
				content: '';
58 59
				position: absolute;
......
65 66
				border: 1px solid $widget-custom-radio-checkbox-border-color;
66 67
			}
67 68
			&::after {
69
				box-sizing: content-box;
68 70
				display: block;
69 71
				content: '';
70 72
				position: absolute;
71
-