aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-10-18 19:14:04 +0000
committerMario <mario@mariovavti.com>2024-10-18 19:14:04 +0000
commit96210f5ecc49861c16f2d7e4274420112d6c2d8a (patch)
tree20957632e2ff8cd110cd627eef7956504c31ad5f
parent9e9e8efb2d702b21a5fa9154c137609268ee588e (diff)
downloadvolse-hubzilla-96210f5ecc49861c16f2d7e4274420112d6c2d8a.tar.gz
volse-hubzilla-96210f5ecc49861c16f2d7e4274420112d6c2d8a.tar.bz2
volse-hubzilla-96210f5ecc49861c16f2d7e4274420112d6c2d8a.zip
fix edit button not clickable if below right aside
(cherry picked from commit 1411eafa9b5411df9cfbd8b563025a6665a0a7db) Co-authored-by: Mario <mario@mariovavti.com>
-rw-r--r--view/tpl/page_display.tpl2
-rw-r--r--view/tpl/page_display_empty.tpl2
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}}