forked from brooksbingham/theme-elegance
chore: make the tooltip stay on interaction
parent
4c512015ed
commit
3ef8d861fc
|
@ -197,6 +197,7 @@ $(() => {
|
|||
mouseenter: true,
|
||||
touchstart: true,
|
||||
},
|
||||
interactive: true,
|
||||
delayTouch: [0, 2000],
|
||||
});
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -7,14 +7,16 @@
|
|||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$line_items item="line_item"}
|
||||
<tr class="even:bg-blue-500/10">
|
||||
<td class="py-1 pl-2">
|
||||
{$line_item["label"]}
|
||||
</td>
|
||||
<td class="py-1 pr-2">
|
||||
{$line_item["value"]}
|
||||
</td>
|
||||
</tr>
|
||||
{if !$line_item["backofficeOnly"]}
|
||||
<tr class="even:bg-blue-500/10">
|
||||
<td class="py-1 pl-2">
|
||||
{$line_item["label"]}
|
||||
</td>
|
||||
<td class="py-1 pr-2">
|
||||
{$line_item["value"]}
|
||||
</td>
|
||||
</tr>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Reference in New Issue