diff options
author | Mario <mario@mariovavti.com> | 2024-10-18 19:06:35 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-10-18 19:06:35 +0000 |
commit | 1411eafa9b5411df9cfbd8b563025a6665a0a7db (patch) | |
tree | d3bfe3f96085412b3afb9df26c52218aab362652 /view | |
parent | f4495fd441a06c2ee58dd5073348627803d5ccb3 (diff) | |
download | volse-hubzilla-1411eafa9b5411df9cfbd8b563025a6665a0a7db.tar.gz volse-hubzilla-1411eafa9b5411df9cfbd8b563025a6665a0a7db.tar.bz2 volse-hubzilla-1411eafa9b5411df9cfbd8b563025a6665a0a7db.zip |
fix edit button not clickable if below right aside
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/page_display.tpl | 2 | ||||
-rw-r--r-- | view/tpl/page_display_empty.tpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/page_display.tpl b/view/tpl/page_display.tpl index e8c9c0e27..2e87c68e3 100644 --- a/view/tpl/page_display.tpl +++ b/view/tpl/page_display.tpl @@ -10,7 +10,7 @@ <div class="page-date">{{$date}}</div> <div class="page-body">{{$body}}</div> {{if $edit_link}} - <div class="position-fixed bottom-0 end-0 m-3"> + <div class="position-fixed bottom-0 end-0 m-3 z-1"> <a href="{{$edit_link}}" class="btn btn-lg btn-primary rounded-circle"><i class="bi bi-pencil"></i></a> </div> {{/if}} diff --git a/view/tpl/page_display_empty.tpl b/view/tpl/page_display_empty.tpl index 44baec361..c24fe08e5 100644 --- a/view/tpl/page_display_empty.tpl +++ b/view/tpl/page_display_empty.tpl @@ -1,6 +1,6 @@ {{$body}} {{if $edit_link}} <div class="position-fixed bottom-0 end-0 m-3"> - <a href="{{$edit_link}}" class="btn btn-lg btn-primary rounded-circle"><i class="bi bi-pencil"></i></a> + <a href="{{$edit_link}}" class="btn btn-lg btn-primary rounded-circle z-1"><i class="bi bi-pencil"></i></a> </div> {{/if}} |