@streamscloud/kit 0.42.0 → 0.42.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -179,7 +179,7 @@ const handleMouseLeave = () => {
|
|
|
179
179
|
</div>
|
|
180
180
|
{:else if visibleActions.length}
|
|
181
181
|
<div class="node-actions" class:node-actions--opened={actionsOpened}>
|
|
182
|
-
<Popover position="bottom-
|
|
182
|
+
<Popover position="bottom-end" fixedPosition on={{ opened: handleActionsOpened, closed: handleActionsClosed }}>
|
|
183
183
|
{#snippet trigger()}
|
|
184
184
|
<div class="node-actions__trigger">
|
|
185
185
|
<Icon src={IconMoreVertical} />
|
|
@@ -317,10 +317,11 @@ const handleMouseLeave = () => {
|
|
|
317
317
|
|
|
318
318
|
.node-actions {
|
|
319
319
|
position: absolute;
|
|
320
|
-
top:
|
|
320
|
+
top: 0;
|
|
321
|
+
bottom: 0;
|
|
321
322
|
right: var(--sc-kit--space--2);
|
|
322
323
|
display: flex;
|
|
323
|
-
|
|
324
|
+
align-items: center;
|
|
324
325
|
opacity: var(--_tree-node--action-opacity);
|
|
325
326
|
transition: opacity var(--sc-kit--duration--base) var(--sc-kit--ease--default);
|
|
326
327
|
}
|