Commit 5d731a298fd9083036831856f3acb51e09857c8e
1 parent
978f8a3f
Exists in
master
and in
3 other branches
Adjusting accordion action menu icons
Showing
2 changed files
with
12 additions
and
3 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
categories/templates/categories/list.html
... | ... | @@ -56,10 +56,14 @@ |
56 | 56 | </a> |
57 | 57 | <ul class="dropdown-menu pull-right" aria-labelledby="moreActions"> |
58 | 58 | {% if user.is_staff %} |
59 | - <li><a href="{% url 'categories:replicate' category.slug %}"><i class="fa fa-files-o fa-fw" aria-hidden="true"></i>{% trans 'Replicate' %}</a></li> | |
59 | + <li> | |
60 | + <a href="{% url 'categories:replicate' category.slug %}"> | |
61 | + <i class="fa fa-files-o" aria-hidden="true"></i> {% trans 'Replicate' %} | |
62 | + </a> | |
63 | + </li> | |
60 | 64 | {% endif %} |
61 | - <li><a href="{% url 'categories:update' category.slug %}"><i class="fa fa-pencil fa-fw" aria-hidden="true"></i>{% trans 'Edit' %}</a></li> | |
62 | - <li><a href="javascript:delete_course.get('{% url 'categories:delete' category.slug %}?view=index','#category','#modal_course')"><i class="fa fa-trash fa-fw" aria-hidden="true"></i> {% trans 'Remove' %}</a></li> | |
65 | + <li><a href="{% url 'categories:update' category.slug %}"><i class="fa fa-pencil fa-fw" aria-hidden="true"></i> {% trans 'Edit' %}</a></li> | |
66 | + <li><a href="javascript:delete_course.get('{% url 'categories:delete' category.slug %}?view=index','#category','#modal_course')"><i class="fa fa-trash fa-fw" aria-hidden="true"></i> {% trans 'Remove' %}</a></li> | |
63 | 67 | </ul> |
64 | 68 | {% endif %} |
65 | 69 | <a href="" ><i class="fa fa-list" aria-hidden="true"></i></a> | ... | ... |