Remove new overflow setting

This commit is contained in:
Adria Navarro 2024-05-30 10:11:04 +02:00
parent a672c00899
commit b5a0365097
2 changed files with 1 additions and 6 deletions

View File

@ -27,7 +27,6 @@
export let clickOutsideOverride = false export let clickOutsideOverride = false
export let resizable = true export let resizable = true
export let wrap = false export let wrap = false
export let overflow = false
$: target = portalTarget || getContext(Context.PopoverRoot) || ".spectrum" $: target = portalTarget || getContext(Context.PopoverRoot) || ".spectrum"
@ -105,7 +104,6 @@
class="spectrum-Popover is-open" class="spectrum-Popover is-open"
class:customZindex class:customZindex
class:hidden={!showPopover} class:hidden={!showPopover}
class:overflow
role="presentation" role="presentation"
style="height: {customHeight}; --customZindex: {customZindex};" style="height: {customHeight}; --customZindex: {customZindex};"
transition:fly|local={{ y: -20, duration: animate ? 260 : 0 }} transition:fly|local={{ y: -20, duration: animate ? 260 : 0 }}
@ -124,9 +122,6 @@
overflow: auto; overflow: auto;
transition: opacity 260ms ease-out; transition: opacity 260ms ease-out;
} }
.spectrum-Popover.overflow {
overflow: visible;
}
.hidden { .hidden {
opacity: 0; opacity: 0;
pointer-events: none; pointer-events: none;

View File

@ -61,7 +61,7 @@
</ActionButton> </ActionButton>
</div> </div>
<Popover bind:open {anchor} align="left" overflow> <Popover bind:open {anchor} align="left">
<div class="content"> <div class="content">
<div class="columns"> <div class="columns">
{#if $stickyColumn} {#if $stickyColumn}