fix(ui): improve group selector dropdown width and visibility

- Increase Select dropdown max-width from 320px to 480px for better content display
- Change KeysView group selector from fixed 256px to adaptive 280-480px width
- Make group switch icon always visible (60% opacity, 100% on hover)
- Allow group description to wrap to 2 lines instead of truncating
- Improve user experience for group selection in API keys page
This commit is contained in:
bayma888
2026-02-09 18:14:50 +08:00
parent 03bf348530
commit 785115c62b
3 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@
/>
<span
v-if="description"
class="w-full truncate text-left text-xs text-gray-500 dark:text-gray-400"
class="w-full text-left text-xs text-gray-500 dark:text-gray-400 line-clamp-2"
>
{{ description }}
</span>

View File

@@ -434,7 +434,7 @@ onUnmounted(() => {
<style>
.select-dropdown-portal {
@apply w-max min-w-[160px] max-w-[320px];
@apply w-max min-w-[200px] max-w-[480px];
@apply bg-white dark:bg-dark-800;
@apply rounded-xl;
@apply border border-gray-200 dark:border-dark-700;