8

Removed delete button from overview

This commit is contained in:
Jasper Berghoef
2016-11-08 17:47:27 +01:00
parent c7a8119ec9
commit b3fb265f9d
2 changed files with 2 additions and 1 deletions

View File

@@ -14,6 +14,7 @@
border: 1px solid #d9d9d9;
border-radius: 3px;
background-color: #fff;
cursor: pointer;
box-shadow: 0 1px 3px rgba(0,0,0,0.00), 0 1px 2px rgba(0,0,0,0.00);
transition: box-shadow 0.3s cubic-bezier(.25,.8,.25,1), border 0.3s cubic-bezier(.25,.8,.25,1);
}
@@ -30,6 +31,7 @@
.block_container .block.disabled {
background-color: #eee;
cursor: default;
}
.block_container .block.disabled:hover {

View File

@@ -31,7 +31,6 @@
<li><a href="{% url 'segment:disable' segment.pk %}">disable</a></li>
{% endif %}
<li><a href="edit/{{ segment.pk }}">configure this</a></li>
<li><a href="delete/{{ segment.pk }}">delete</a></li>
</ul>
{% endif %}
</div>