Projet

Général

Profil

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

Thomas Jund (congés, retour le 29/04), 10 mai 2021 16:36

Télécharger (828 octets)

Voir les différences:

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

 chrono/manager/static/css/style.scss | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
chrono/manager/static/css/style.scss
133 133
	word-break: break-word;
134 134
}
135 135

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