mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix: enhance focus styles in select-dropdown and docs url (#3336)
This commit is contained in:
parent
59fdbaeecc
commit
1f91086c6b
2 changed files with 9 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ export const SelectDropdown = React.memo(
|
|||
className={cn(
|
||||
"w-full min-w-0 max-w-full inline-flex items-center gap-1.5 relative whitespace-nowrap px-1.5 py-1 text-xs",
|
||||
"bg-transparent border border-[rgba(255,255,255,0.08)] rounded-md text-vscode-foreground w-auto",
|
||||
"transition-all duration-150 focus:outline-none focus-visible:ring-1 focus-visible:ring-vscode-focusBorder",
|
||||
"transition-all duration-150 focus:outline-none focus-visible:ring-1 focus-visible:ring-vscode-focusBorder focus-visible:ring-inset",
|
||||
disabled
|
||||
? "opacity-50 cursor-not-allowed"
|
||||
: "opacity-90 hover:opacity-100 hover:bg-[rgba(255,255,255,0.03)] hover:border-[rgba(255,255,255,0.15)] cursor-pointer",
|
||||
|
|
|
|||
|
|
@ -413,3 +413,11 @@ input[cmdk-input]:focus {
|
|||
.codicon[class*="codicon-"] {
|
||||
text-rendering: geometricPrecision !important;
|
||||
}
|
||||
|
||||
/*
|
||||
* Fix the color of <a> in ChatView
|
||||
*/
|
||||
|
||||
a:focus {
|
||||
outline: 1px solid var(--vscode-focusBorder);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue