Skip to content

Commit

Permalink
Merge pull request #22 from devSviat/1.x
Browse files Browse the repository at this point in the history
Fixed the popover border display in dark theme
  • Loading branch information
atmonshi authored Dec 22, 2024
2 parents 01754d4 + e76b93a commit 5150630
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/popover-column.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class="h-4 w-4 text-gray-500 dark:text-gray-400"
@endif
</div>

<div class="z-50 fi-popover-content w-[{{ $getPopOverMaxWidth }}px] border border-gray-100 rounded-lg shadow-lg bg-white dark:bg-gray-800 transition"
<div class="z-50 fi-popover-content w-[{{ $getPopOverMaxWidth }}px] ring-1 ring-gray-950/5 dark:ring-white/10 rounded-lg shadow-lg bg-white dark:bg-gray-800 transition"
x-transition:enter-start="opacity-0"
x-transition:leave-end="opacity-0"
x-cloak
Expand Down
2 changes: 1 addition & 1 deletion resources/views/popover-entry.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class="h-4 w-4 text-gray-500 dark:text-gray-400"
@endif
</div>

<div class="z-50 fi-popover-content w-[{{ $getPopOverMaxWidth }}px] border border-gray-100 rounded-lg shadow-lg bg-white dark:bg-gray-800 transition"
<div class="z-50 fi-popover-content w-[{{ $getPopOverMaxWidth }}px] ring-1 ring-gray-950/5 dark:ring-white/10 rounded-lg shadow-lg bg-white dark:bg-gray-800 transition"
x-transition:enter-start="opacity-0"
x-transition:leave-end="opacity-0"
x-cloak
Expand Down
2 changes: 1 addition & 1 deletion resources/views/popover-form.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class="text-sm relative w-full fi-popover-trigger cursor-pointer flex items-cent
{{ $getState }}
</div>

<div class="z-50 fi-popover-content w-[{{ $getPopOverMaxWidth }}px] border border-gray-100 rounded-lg shadow-lg bg-white dark:bg-gray-800"
<div class="z-50 fi-popover-content w-[{{ $getPopOverMaxWidth }}px] ring-1 ring-gray-950/5 dark:ring-white/10 rounded-lg shadow-lg bg-white dark:bg-gray-800"
x-transition:enter-start="opacity-0"
x-transition:leave-end="opacity-0"
x-cloak
Expand Down

0 comments on commit 5150630

Please sign in to comment.