Projet

Général

Profil

0001-scss-allow-custom-title-color-for-toggled-categories.patch

Thomas Noël, 17 septembre 2018 13:50

Télécharger (1,23 ko)

Voir les différences:

Subject: [PATCH] scss: allow custom title color for toggled categories
 (#26464)

 static/includes/_categories.scss | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
static/includes/_categories.scss
10 10
$category-title-height: 100px !default;
11 11
$category-toggled-background: #888 !default;
12 12
$category-toggled-link-hover-color: white !default;
13
$category-toggled-title-color: white !default;
13 14
$category-toggled-title-background: $category-toggled-background !default;
14 15
$category-togglable: true !default;
15 16
$category-color: #DF017A !default;
......
53 54

  
54 55
	&.#{$_category_selector_class} {
55 56
		h2:first-child {
56
			color: white;
57
			color: $category-toggled-title-color;
57 58
			background-color: $category-toggled-title-background;
58 59
			background-image: none;
59 60
		}
60
-