diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-11-16 17:55:45 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:23:19 +0100 |
commit | cbf4b6cfba17564c169cbacd4dbd6fcaeb5ef319 (patch) | |
tree | 24457545454eaa6f9f041326cbd5aff3e617f1f6 | |
parent | cda77c979e232386ef24ea7a04600f16f3c32c98 (diff) | |
download | Ishtar-cbf4b6cfba17564c169cbacd4dbd6fcaeb5ef319.tar.bz2 Ishtar-cbf4b6cfba17564c169cbacd4dbd6fcaeb5ef319.zip |
Template minor improve on sheet : more compact
-rw-r--r-- | ishtar_common/templates/ishtar/blocks/window_nav.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/window_nav.html b/ishtar_common/templates/ishtar/blocks/window_nav.html index a1ec01dcb..f77673663 100644 --- a/ishtar_common/templates/ishtar/blocks/window_nav.html +++ b/ishtar_common/templates/ishtar/blocks/window_nav.html @@ -29,9 +29,9 @@ {% endif %} </div> </div> - <div class='offset-md-4 col-md-6 text-right'> + <div class='offset-md-1 col-md-9 text-right'> {% else %} - <div class='offset-md-6 col-md-6 text-right'> + <div class='offset-md-3 col-md-9 text-right'> {% endif %} {% else %} <div class='offset-md-6 col-md-6 text-right'> @@ -71,13 +71,13 @@ <div class="btn-group btn-group-sm" role="group" aria-label="{% trans 'Export' %}"> - <div class="dropdown btn-secondary"> - <button class="btn btn-sm btn-secondary dropdown-toggle" type="button" + <div class="btn btn-sm dropdown btn-secondary"> + <a class="dropdown-toggle" type="button" id="dropdown-sheet-export-{{window_id}}" data-toggle="dropdown"aria-haspopup="true" aria-expanded="false"> <i class="fa fa-file-word-o"></i> {% trans "Export" %} - </button> + </a> <div class="dropdown-menu" aria-labelledby="dropdown-sheet-export-{{window_id}}"> <a class="dropdown-item" href='{% url show_url item.pk "odt" %}' |