Use new close icon to keep old done icon.

This commit is contained in:
Emanuel Schuetze 2012-07-13 07:58:00 +02:00
parent 9c03726bef
commit 969816be37
7 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,7 @@
/* agenda item open/closed */ /* agenda item open/closed */
.close_link span { .close_link span {
background-image: url(../images/icons/done-grey.png); background-image: url(../images/icons/close-grey.png);
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: center; background-position: center;
width: 16px; width: 16px;
@ -16,7 +16,7 @@
} }
.close_link.closed span { .close_link.closed span {
background-image: url(../images/icons/done.png); background-image: url(../images/icons/close.png);
} }
table#menu-overview { table#menu-overview {

View File

@ -9,7 +9,7 @@
<span></span> <span></span>
</a> </a>
{% elif item.closed %} {% elif item.closed %}
<img src="{% static 'images/icons/done.png' %}" title="{% trans 'Item closed' %}"> <img src="{% static 'images/icons/close.png' %}" title="{% trans 'Item closed' %}">
{% endif %} {% endif %}
</span> </span>
</td> </td>

Binary file not shown.

After

Width:  |  Height:  |  Size: 379 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 654 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 379 B

After

Width:  |  Height:  |  Size: 413 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 654 B

After

Width:  |  Height:  |  Size: 756 B

View File

@ -378,6 +378,9 @@ input[type="submit"], input[type="button"] {
.button .done{ .button .done{
background:url(../images/icons/done.png) no-repeat 0px 0px; background:url(../images/icons/done.png) no-repeat 0px 0px;
} }
.button .close{
background:url(../images/icons/close.png) no-repeat 0px 0px;
}
.button .reject{ .button .reject{
background:url(../images/icons/reject.png) no-repeat 0px 0px; background:url(../images/icons/reject.png) no-repeat 0px 0px;
} }