adminforth 2.4.0-next.266 → 2.4.0-next.268
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.
|
@@ -5,11 +5,13 @@
|
|
|
5
5
|
<teleport to="body" v-if="showTooltip">
|
|
6
6
|
<div
|
|
7
7
|
role="tooltip"
|
|
8
|
-
class="absolute z-
|
|
8
|
+
class="absolute z-[100] invisible inline-block px-3 py-2 text-sm font-medium text-lightTooltipText dark:darkTooltipText transition-opacity duration-300 bg-lightTooltipBackground rounded-lg shadow-sm opacity-0 tooltip dark:bg-darkTooltipBackground"
|
|
9
9
|
ref="tooltip"
|
|
10
10
|
>
|
|
11
11
|
<slot name="tooltip"></slot>
|
|
12
|
-
<div class="tooltip-arrow" data-popper-arrow
|
|
12
|
+
<div class="tooltip-arrow absolute -top-2" data-popper-arrow>
|
|
13
|
+
<div class="absolute top-0 -left-0.5 w-0 h-0 border-l-8 border-r-8 border-b-8 border-l-transparent border-r-transparent border-b-lightTooltipBackground dark:border-b-darkTooltipBackground"></div>
|
|
14
|
+
</div>
|
|
13
15
|
</div>
|
|
14
16
|
</teleport>
|
|
15
17
|
</template>
|