Skip to content

Commit

Permalink
three more z-indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
bastihilger committed Jul 14, 2022
1 parent dbf95a1 commit 1e4b066
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/js/field.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions resources/js/components/buttons/BaseButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
<div
class="
pointer-events-none
absolute left-0 w-full flex justify-center z-100
absolute left-0 w-full flex justify-center
"
style="bottom: 36px;"
style="z-index: 100; bottom: 36px;"
v-show="hovered"
>
<div
Expand Down
3 changes: 2 additions & 1 deletion resources/js/components/buttons/PlaceholderBlockButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@

<div
class="
z-10 absolute top-0 left-0 w-full h-full
absolute top-0 left-0 w-full h-full
bg-80 opacity-75
"
style="z-index: 10"
@click="hideMenu"
>
</div>
Expand Down
11 changes: 8 additions & 3 deletions resources/js/components/content-blocks/GalleryContentBlock.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,15 @@
class="
fixed top-0 left-0
w-full h-full overflow-scroll py-8
z-50 flex items-center justify-center
flex items-center justify-center
"
style="z-index: 50"
v-show="modalIsActive"
>
<div class="m-auto rounded-lg shadow-lg overflow-hidden z-20 w-action-fields max-w-full">
<div
class="m-auto rounded-lg shadow-lg overflow-hidden w-action-fields max-w-full"
style="z-index: 20"
>
<div class="px-8 py-8 bg-white">
<div class="flex flex-col">
<div>
Expand Down Expand Up @@ -429,9 +433,10 @@

<div
class="
z-10 fixed top-0 left-0 w-full h-full
fixed top-0 left-0 w-full h-full
bg-80 opacity-75
"
style="z-index: 10"
@click="hideMenu"
>
</div>
Expand Down

0 comments on commit 1e4b066

Please sign in to comment.