Use new close icon to keep old done icon.
This commit is contained in:
parent
9c03726bef
commit
969816be37
@ -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 {
|
||||||
|
@ -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>
|
||||||
|
BIN
openslides/static/images/icons/close-grey.png
Normal file
BIN
openslides/static/images/icons/close-grey.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 379 B |
BIN
openslides/static/images/icons/close.png
Normal file
BIN
openslides/static/images/icons/close.png
Normal file
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 |
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user