Projet

Général

Profil

0001-templates-introduce-.column-instead-left-right-48515.patch

patch rouen - Thomas Jund, 13 janvier 2021 14:42

Télécharger (1,27 ko)

Voir les différences:

Subject: [PATCH] templates: introduce .column instead #left & #right (#48515)

 static/rouen/_custom.scss | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
static/rouen/_custom.scss
547 547
		grid-template-columns: 1fr 1fr;
548 548
	}
549 549

  
550
	#left, #right {
550
	.column {
551 551
		float: none;
552 552
		width: inherit;
553 553
	}
......
564 564

  
565 565
	.description, .intro { display: none; }
566 566

  
567
	#left .cell:nth-child(2n), #right .cell:nth-child(2n+1) {
567
	.column:first-child .cell:nth-child(2n), .column:last-child .cell:nth-child(2n+1) {
568 568
		h2 { background-color: #F4A7AA; }
569 569
		a {
570 570
			background-color: #FCE4E5;
......
573 573
		li.required-authentication a::after { color: #c64a59; }
574 574
	}
575 575

  
576
	#left .cell:nth-child(2n+1), #right .cell:nth-child(2n) {
576
	.column:first-child .cell:nth-child(2n+1), .column:last-child .cell:nth-child(2n) {
577 577
		h2 { background-color: #82cebb; }
578 578
		a {
579 579
			background-color: #D8F0EA;
580
-