Har nå fiksa CSS til highlighting av hyller i hyllekartet. Måtte i prosessen endre litt på hylledesignet, slik at man går gjennom alle kategoriene i hver ytre tabell i tillegg til hver indre, slik at hele hylla lyser opp, ikke bare den usynlige hylla inni hylla. Eller noe sånt. Mer fikling på #12, altså.
This commit is contained in:
parent
c295132a75
commit
3969954144
|
@ -95,8 +95,12 @@ table.shelf{
|
||||||
color:#666;
|
color:#666;
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight {
|
td.highlight {
|
||||||
background-color: #3399CC;
|
background-color: #44A4BD;
|
||||||
|
color: #27606E;
|
||||||
|
font-style: italic;
|
||||||
|
font-weight: bolder;
|
||||||
|
text-shadow: #27606E;
|
||||||
}
|
}
|
||||||
|
|
||||||
.key {
|
.key {
|
||||||
|
|
|
@ -13,7 +13,7 @@ Hyllekart
|
||||||
{% for row in shelf.shelf_list %}
|
{% for row in shelf.shelf_list %}
|
||||||
<tr>
|
<tr>
|
||||||
{% for column in row %}
|
{% for column in row %}
|
||||||
<td>
|
<td {% for category in column %}{% if category.id == highlight_string %}class="highlight"{% endif %}{% endfor %}>
|
||||||
<table>
|
<table>
|
||||||
{% for category in column %}
|
{% for category in column %}
|
||||||
<tr><td {% if category.id == highlight_string %}class="highlight"{% endif %}><a href="/kategori/{{ category.id }}">{{ category }}</a></td></tr>
|
<tr><td {% if category.id == highlight_string %}class="highlight"{% endif %}><a href="/kategori/{{ category.id }}">{{ category }}</a></td></tr>
|
||||||
|
|
Reference in New Issue