blob: 4d47b31d1e3f21a270ca4377c85859b70ca0cdd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% for pk, color in categories %}
.main_category.toggle_plus > span#main_category_{{pk}} > label,
.main_category.toggle_minus > span#main_category_{{pk}} > label{% if not forloop.last %}, {% endif%}{% endfor %} {
background-color:transparent;
color: #777;
}
{% for pk, color in categories %}
#main_category_{{pk}}.category-selected .triangle{% if not forloop.last %}, {% endif%}{% endfor %} {
border-color: transparent transparent transparent #fff;
}
{% for pk, color in categories %}
#main_category_{{pk}} .triangle{
border-color: transparent transparent transparent {{color}};
}
#ul_categories #maincategory_{{pk}}.subcategories li .selected label,
.main_category.toggle_plus > span#main_category_{{pk}}.category-selected > label,
.main_category.toggle_minus > span#main_category_{{pk}}.category-selected > label{
background-color: {{color}};
color: #fff;
}
{% endfor %}
|