diff options
| author | Frank <[email protected]> | 2025-10-10 13:52:54 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-10-10 13:52:54 -0400 |
| commit | 756fb616913e230721eb41117b59d23cd271c179 (patch) | |
| tree | 4bbc4067befe22143bae6723bdb3d20ae66b658f /packages | |
| parent | 94d0a3d888c3b5f5cfc4fcf5f275885128a968e6 (diff) | |
| download | opencode-756fb616913e230721eb41117b59d23cd271c179.tar.gz opencode-756fb616913e230721eb41117b59d23cd271c179.zip | |
wip: zen
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/console/app/src/routes/workspace/[id]/keys/key-section.module.css | 13 | ||||
| -rw-r--r-- | packages/console/app/src/routes/workspace/[id]/provider-section.tsx | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/packages/console/app/src/routes/workspace/[id]/keys/key-section.module.css b/packages/console/app/src/routes/workspace/[id]/keys/key-section.module.css index ad20f1fa6..92329cb57 100644 --- a/packages/console/app/src/routes/workspace/[id]/keys/key-section.module.css +++ b/packages/console/app/src/routes/workspace/[id]/keys/key-section.module.css @@ -147,10 +147,23 @@ &[data-slot="key-actions"] { font-family: var(--font-sans); + + button { + opacity: 0; + pointer-events: none; + transition: opacity 0.15s ease; + } } } tbody tr { + &:hover { + [data-slot="key-actions"] button { + opacity: 1; + pointer-events: auto; + } + } + &:last-child td { border-bottom: none; } diff --git a/packages/console/app/src/routes/workspace/[id]/provider-section.tsx b/packages/console/app/src/routes/workspace/[id]/provider-section.tsx index 65d9e7d0b..b83fd2634 100644 --- a/packages/console/app/src/routes/workspace/[id]/provider-section.tsx +++ b/packages/console/app/src/routes/workspace/[id]/provider-section.tsx @@ -89,7 +89,7 @@ function ProviderRow(props: { provider: Provider }) { <td data-slot="provider-key"> <Show when={store.editing} - fallback={<span>{providerData() ? maskCredentials(providerData()!.credentials) : "--"}</span>} + fallback={<span>{providerData() ? maskCredentials(providerData()!.credentials) : "-"}</span>} > <form id={`provider-form-${props.provider.key}`} action={saveProvider} method="post" data-slot="edit-form"> <div data-slot="input-wrapper"> |
