Projet

Général

Profil

0001-agent-portal-CSS-improve-typography-of-card-info-cel.patch

Thomas Jund (congés, retour le 29/04), 20 octobre 2021 16:54

Télécharger (1,13 ko)

Voir les différences:

Subject: [PATCH] agent portal CSS: improve typography of card info cell
 (#57587)

 static/portal-agent/css/agent-portal.scss | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
static/portal-agent/css/agent-portal.scss
248 248
		color: lighten($font-color, 10%);
249 249
		font-size: 95%;
250 250
		display: block;
251
		margin-top: 0;
252
		margin-bottom: 0.2em;
253
		letter-spacing: 0.06em;
251 254
	}
252 255
	.value {
253 256
		display: block;
......
268 271
	padding: 0.5em;
269 272
}
270 273

  
274
// wcs card infos cell
275
.wcs-card-infos-cell {
276
	fx-grid, [class*="fx-grid--"] {
277
		align-items: baseline;
278
		> div {
279
			margin-bottom: 1rem;
280
		}
281
	}
282
	h3 {
283
		margin-top: 0;
284
		margin-bottom: 0;
285
	}
286
}
287

  
271 288
@media screen and (min-width: 1586px) {
272 289
	div#page-content div.cubesbarchart {
273 290
		width: 49.5%;
274
-