Projects/worblehat-old
Projects
/
worblehat-old
Archived
12
0
Fork 0

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:
Tiril Anette Langfeldt Rødland 2011-03-07 12:02:26 +00:00
parent c295132a75
commit 3969954144
2 changed files with 7 additions and 3 deletions

View File

@ -95,8 +95,12 @@ table.shelf{
color:#666;
}
.highlight {
background-color: #3399CC;
td.highlight {
background-color: #44A4BD;
color: #27606E;
font-style: italic;
font-weight: bolder;
text-shadow: #27606E;
}
.key {

View File

@ -13,7 +13,7 @@ Hyllekart
{% for row in shelf.shelf_list %}
<tr>
{% for column in row %}
<td>
<td {% for category in column %}{% if category.id == highlight_string %}class="highlight"{% endif %}{% endfor %}>
<table>
{% for category in column %}
<tr><td {% if category.id == highlight_string %}class="highlight"{% endif %}><a href="/kategori/{{ category.id }}">{{ category }}</a></td></tr>