mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 11:56:00 +00:00
default action improved & configurable
This commit is contained in:
@@ -130,7 +130,7 @@
|
||||
changeActiveSubmenu();
|
||||
}}
|
||||
>
|
||||
<a on:click={e => handleClick(e, item)} class:disabled={item.disabled}>
|
||||
<a on:click={e => handleClick(e, item)} class:disabled={item.disabled} class:bold={item.isBold}>
|
||||
{item.text || item.label}
|
||||
{#if item.keyText}
|
||||
<span class="keyText">{formatKeyText(item.keyText)}</span>
|
||||
@@ -201,6 +201,10 @@
|
||||
color: var(--theme-font-3);
|
||||
}
|
||||
|
||||
a.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
a:hover:not(.disabled) {
|
||||
background-color: var(--theme-bg-1);
|
||||
text-decoration: none;
|
||||
|
||||
Reference in New Issue
Block a user