1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

Adding onTop attribute to tabs which allows setting the z-index for the container - #7679.

This commit is contained in:
mike12345567 2022-09-07 17:45:14 +01:00
parent 6cebd08aec
commit 758514a018

View file

@ -10,6 +10,7 @@
export let noHorizPadding = false
export let quiet = false
export let emphasized = false
export let onTop = false
export let size = "M"
let thisSelected = undefined
@ -75,6 +76,7 @@
bind:this={container}
class:spectrum-Tabs--quiet={quiet}
class:noHorizPadding
class:onTop
class:spectrum-Tabs--vertical={vertical}
class:spectrum-Tabs--horizontal={!vertical}
class="spectrum-Tabs spectrum-Tabs--size{size}"
@ -122,4 +124,7 @@
.noPadding {
margin: 0;
}
.onTop {
z-index: 100;
}
</style>