-
-
Notifications
You must be signed in to change notification settings - Fork 654
fix/ui-fixes #687
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
fix/ui-fixes #687
Conversation
Delete an unnecessary media query that set `.meta` color for the light color scheme in the recent-playlists playlist-item stylesheet. The rule duplicated default styling and added extra specificity, so removing it simplifies the CSS and avoids redundant overrides. This reduces stylesheet size and potential maintenance confusion while preserving visual behaviour across themes.
Prevent global hotkeys from triggering while the user is typing in input or textarea fields. Add a private isTypingInInput(event) helper and short-circuit key handlers (info key and digit keys) to return early when the event target is an input or textarea. This avoids interfering with normal text entry (e.g., entering numbers in forms) and prevents accidental overlay toggles or channel changes while the user is focused on a form field.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Note
|
|
View your CI Pipeline Execution ↗ for commit a5685ef
☁️ Nx Cloud last updated this comment at |
Re-enable user selection for input and textarea elements so users can select and copy text in form fields. Add an Electron context menu handler that shows a focused edit menu only for recognized text input types or editable fields. The menu includes Cut, Copy, Paste and Select All and respects the editFlags to enable actions. This restores native editing UX in the renderer while avoiding global context menus elsewhere in the app.
Summary
What changed
.metacolor styling in recent-playlists playlist-item stylesheet.Why
Notes