Projet

Général

Profil

0001-css-don-t-loop-width-prop-on-.agenda-table-53817.patch

Thomas Jund (congés, retour le 29/04), 06 mai 2021 15:15

Télécharger (793 octets)

Voir les différences:

Subject: [PATCH] css: don't loop width prop on .agenda-table (#53817)

 chrono/manager/static/css/style.scss | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
chrono/manager/static/css/style.scss
132 132
	font-weight: normal;
133 133
}
134 134

  
135
@for $i from 1 through 7 {
136
	.agenda-table {
137
		width: 100%;
135
.agenda-table {
136
	width: 100%;
137
	@for $i from 1 through 7 {
138 138
		.desks-#{$i} {
139 139
			thead th { width: (100%/$i)-1%; }
140 140
		}
141
-