diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-03-17 14:22:10 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-17 14:22:10 +0100 |
commit | d10525a375884850b1b643796b839747cbc623b2 (patch) | |
tree | 917c17806b477b7ddb7c51ef2c519ff27fb57ac3 /view/tpl/filer_dialog.tpl | |
parent | 4c2bdc9dc021418563040929fbd0363e08591f9f (diff) | |
download | volse-hubzilla-d10525a375884850b1b643796b839747cbc623b2.tar.gz volse-hubzilla-d10525a375884850b1b643796b839747cbc623b2.tar.bz2 volse-hubzilla-d10525a375884850b1b643796b839747cbc623b2.zip |
fix item_list and item_search templates. make item filer use a bootdtrap modal and some css and class fixes
Diffstat (limited to 'view/tpl/filer_dialog.tpl')
-rwxr-xr-x | view/tpl/filer_dialog.tpl | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/view/tpl/filer_dialog.tpl b/view/tpl/filer_dialog.tpl index 71e075958..61860d10f 100755 --- a/view/tpl/filer_dialog.tpl +++ b/view/tpl/filer_dialog.tpl @@ -1,6 +1,19 @@ -<div class="item-filer-dialog"> -{{include file="field_combobox.tpl"}} -<div class="settings-submit-wrapper" > - <input id="filer_save" type="button" class="settings-submit" value="{{$submit}}" /> -</div> +<div class="modal" id="item-filer-dialog"> + <div class="modal-dialog" role="document"> + <div class="modal-content"> + <div class="modal-header"> + <h4 class="modal-title">{{$title}}</h4> + <button type="button" class="close" data-dismiss="modal" aria-label="Close"> + <span aria-hidden="true">×</span> + </button> + </div> + <div class="modal-body"> + {{include file="field_combobox.tpl"}} + </div> + <div class="modal-footer"> + <button type="button" class="btn btn-secondary" data-dismiss="modal">{{$cancel}}</button> + <button id="filer_save" type="button" class="btn btn-primary">{{$submit}}</button> + </div> + </div> + </div> </div> |