-
Notifications
You must be signed in to change notification settings - Fork 0
π¨ Palette: [UX improvement] ν₯μλ μ κ·Όμ±μ μν λΉνμ±ν λ²νΌ μ΄μ μ μ§ #985
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -729,7 +729,9 @@ button:disabled { | |
| } | ||
|
|
||
| .exportModal__disabledHintButton { | ||
| opacity: 0.9; | ||
| opacity: 0.6; | ||
| cursor: not-allowed; | ||
| color: var(--color-disabled); | ||
|
Comment on lines
+732
to
+734
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π‘ Changelog not updated for user-visible change CLAUDE.md and CONTRIBUTING.md require user-visible frontend changes to be recorded in Prompt for agentsWas this helpful? React with π or π to provide feedback.
Comment on lines
+732
to
+734
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π Info: Visual change despite 'no visual change' claim The PR description states no visual change, but Was this helpful? React with π or π to provide feedback. |
||
| } | ||
|
|
||
| .exportModal__hint { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π Info: aria-disabled button remains activatable
Switching from native
disabledtoaria-disabledleaves the button focusable and clickable;onClick={(e) => e.preventDefault()}is a no-op since the button has no real action. Harmless now, but any future handler must itself early-return, as aria-disabled does not block activation.Was this helpful? React with π or π to provide feedback.