Projet

Général

Profil

0001-scss-globally-hide-.empty-cell-59032.patch

Frédéric Péters, 26 novembre 2021 08:32

Télécharger (3,19 ko)

Voir les différences:

Subject: [PATCH] scss: globally hide .empty-cell (#59032)

 static/guerande/_custom.scss                  | 4 ----
 static/hautes-alpes-territoire/_custom.scss   | 4 +---
 static/includes/_cells.scss                   | 4 ++++
 static/la-rochelle/_custom.scss               | 4 ----
 static/somme-cd80/_custom.scss                | 5 +----
 static/toodego/_custom.scss                   | 3 ---
 static/vandoeuvre-les-nancy-2021/_custom.scss | 4 ----
 7 files changed, 6 insertions(+), 22 deletions(-)
static/guerande/_custom.scss
128 128
	flex: 1 1 0;
129 129
}
130 130

  
131
#center-content div.empty-cell {
132
	display: none;
133
}
134

  
135 131
.page-header {
136 132
	margin-left: 7%;
137 133
	margin-right: 7%;
static/hautes-alpes-territoire/_custom.scss
68 68
		margin: 0;
69 69
		padding: 0;
70 70
	}
71
	&.empty-cell {
72
		display: none;
73
	}
74 71
}
72

  
75 73
// title
76 74
.site-header--title {
77 75
	@media ($min-desktop-viewport) {
static/includes/_cells.scss
829 829
.wcs-card-infos-cell img {
830 830
	max-width: 100%;
831 831
}
832

  
833
.empty-cell {
834
	display: none;
835
}
static/la-rochelle/_custom.scss
120 120
	}
121 121
}
122 122

  
123
div.column div.empty-cell {
124
	display: none;
125
}
126

  
127 123
div#main-content a {
128 124
	text-decoration: underline;
129 125
	text-decoration-color: rgba(16,134,112, 0.5);
static/somme-cd80/_custom.scss
68 68
/* RSA cells */
69 69
.cell[class*=" rsa-"] {
70 70
	padding-bottom: 1rem;
71

  
72
	&.empty-cell {
73
		display: none;
74
	}
75 71
}
72

  
76 73
.rsa-cell--introduction {
77 74
	text-align: center;
78 75
	margin-bottom: 1.5rem;
static/toodego/_custom.scss
244 244
		border-width: 0 1px;
245 245
		overflow: hidden;
246 246
	}
247
	&.empty-cell {
248
		display: none;
249
	}
250 247
}
251 248

  
252 249
@media screen and (max-width: $desktop-limit) {
static/vandoeuvre-les-nancy-2021/_custom.scss
231 231
		}
232 232
	}
233 233
}
234

  
235
.empty-cell {
236
	display: none;
237
}
238
-