edit event: available-actions are limited in size
editing should be easier now
This commit is contained in:
parent
d06c72043f
commit
1a21495434
1 changed files with 5 additions and 1 deletions
|
@ -7,6 +7,10 @@
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
border: 2px dashed #999;
|
border: 2px dashed #999;
|
||||||
}
|
}
|
||||||
|
#available-actions {
|
||||||
|
max-height: 50vw;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
{%endblock styles%}
|
{%endblock styles%}
|
||||||
{%block scripts %}
|
{%block scripts %}
|
||||||
|
@ -50,7 +54,7 @@ $(function() {
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<h2>Change actions</h2>
|
<h2>Change actions</h2>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-8">
|
<div id="available-actions" class="col-md-8">
|
||||||
Available actions:
|
Available actions:
|
||||||
<ul>
|
<ul>
|
||||||
{% for a in all_actions %}
|
{% for a in all_actions %}
|
||||||
|
|
Loading…
Reference in a new issue