fix(project-map): raise inspection modal z-index above map panel
The DaisyUI .modal default z-index (999) was below the phases/layers panel (z-1000) and its reopen button (z-1001), so they showed on top of the modal. Set the modal to z-[2000]. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -338,7 +338,7 @@
|
|||||||
|
|
||||||
{{-- Visor de inspección --}}
|
{{-- Visor de inspección --}}
|
||||||
@if($viewingInspection)
|
@if($viewingInspection)
|
||||||
<div class="modal modal-open" wire:key="ins-viewer-{{ $viewingInspection['id'] }}">
|
<div class="modal modal-open z-[2000]" wire:key="ins-viewer-{{ $viewingInspection['id'] }}">
|
||||||
<div class="modal-box max-w-lg">
|
<div class="modal-box max-w-lg">
|
||||||
<div class="flex justify-between items-start mb-3">
|
<div class="flex justify-between items-start mb-3">
|
||||||
<h3 class="font-bold text-lg">{{ __('Inspection') }} #{{ $viewingInspection['id'] }}</h3>
|
<h3 class="font-bold text-lg">{{ __('Inspection') }} #{{ $viewingInspection['id'] }}</h3>
|
||||||
|
|||||||
Reference in New Issue
Block a user