Skip to content
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

Rich text editor | Fix for updating "tabindex" of button in toolbar when clicking on the icon #1503

Merged
merged 11 commits into from
Sep 13, 2023
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Fix for tabindex value change when clicked on icon of the buttons in rich text editor toolbar.",
vivinkrishna-ni marked this conversation as resolved.
Show resolved Hide resolved
"packageName": "@ni/nimble-components",
"email": "[email protected]",
"dependentChangeType": "patch"
}
4 changes: 4 additions & 0 deletions packages/nimble-components/src/rich-text/editor/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,10 @@ export const styles = css`
place-items: center;
}

vivinkrishna-ni marked this conversation as resolved.
Show resolved Hide resolved
nimble-toggle-button::part(start) {
vivinkrishna-ni marked this conversation as resolved.
Show resolved Hide resolved
pointer-events: none;
}

:host([error-visible]) .error-icon {
display: none;
}
Expand Down
Loading