Projet

Général

Profil

0002-scss-replace-budget-table-compound-selector-by-a-sim.patch

Frédéric Péters, 01 mars 2020 10:04

Télécharger (1,49 ko)

Voir les différences:

Subject: [PATCH 2/7] scss: replace budget-table compound selector by a simple
 one (#25297)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

required for sassc ≥ 3.6.1
 static/includes/_misc.scss         | 2 +-
 static/la-hague/_custom.scss       | 2 +-
 static/saint-lo-agglo/_custom.scss | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)
static/includes/_misc.scss
653 653
	}
654 654
}
655 655

  
656
div.budget-table {
656
.budget-table {
657 657
	table {
658 658
		width: 100%;
659 659
	}
static/la-hague/_custom.scss
94 94
}
95 95

  
96 96
div.tableau-budget {
97
	@extend div.budget-table;
97
	@extend .budget-table;
98 98
	label {
99 99
		font-weight: bold;
100 100
	}
static/saint-lo-agglo/_custom.scss
148 148
}
149 149

  
150 150
div.tableau-budget {
151
	@extend div.budget-table;
151
	@extend .budget-table;
152 152
}
153
-