mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
fix(frontend): implement a pointer cursor on applicable UI elements when hovered over on the settings page (#11300)
This commit is contained in:
parent
18f6484ef3
commit
9db558fd87
@ -97,7 +97,7 @@ function LlmApiKeyManager({
|
||||
{llmApiKey.key && (
|
||||
<button
|
||||
type="button"
|
||||
className="text-white hover:text-gray-300 mr-2"
|
||||
className="text-white hover:text-gray-300 mr-2 cursor-pointer"
|
||||
aria-label={showLlmApiKey ? "Hide API key" : "Show API key"}
|
||||
title={showLlmApiKey ? "Hide API key" : "Show API key"}
|
||||
onClick={() => setShowLlmApiKey(!showLlmApiKey)}
|
||||
@ -111,7 +111,7 @@ function LlmApiKeyManager({
|
||||
)}
|
||||
<button
|
||||
type="button"
|
||||
className="text-white hover:text-gray-300 mr-2"
|
||||
className="text-white hover:text-gray-300 mr-2 cursor-pointer"
|
||||
aria-label="Copy API key"
|
||||
title="Copy API key"
|
||||
onClick={() => {
|
||||
|
||||
@ -59,7 +59,7 @@ export function SettingsNavigation({
|
||||
<button
|
||||
type="button"
|
||||
onClick={onCloseMobileMenu}
|
||||
className="md:hidden p-0.5 hover:bg-[#454545] rounded-md transition-colors"
|
||||
className="md:hidden p-0.5 hover:bg-[#454545] rounded-md transition-colors cursor-pointer"
|
||||
aria-label="Close navigation menu"
|
||||
>
|
||||
<CloseIcon width={32} height={32} />
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user