diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b0e2ad6dd..5c0aa7e0bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ - Implement validation for icon input source & set default icon to `Beaker` ([#1137](https://github.com/opensearch-project/oui/pull/1137)) - Add `Docking` icons ([#1041](https://github.com/opensearch-project/oui/pull/1041)) - Add SplitButton control ([#1193](https://github.com/opensearch-project/oui/pull/1193)) +- Eliminate screenreader content when copying and pasting data grid table ([#1198](https://github.com/opensearch-project/oui/pull/1198)) ### 🐛 Bug Fixes diff --git a/src/global_styling/mixins/_helpers.scss b/src/global_styling/mixins/_helpers.scss index ce347c1819..c1c2bcbf94 100644 --- a/src/global_styling/mixins/_helpers.scss +++ b/src/global_styling/mixins/_helpers.scss @@ -114,6 +114,7 @@ width: 1px; height: 1px; overflow: hidden; + user-select: none; } // Specifically target IE11, but not Edge. diff --git a/src/themes/oui-next/global_styling/mixins/_helpers.scss b/src/themes/oui-next/global_styling/mixins/_helpers.scss index ce347c1819..c1c2bcbf94 100644 --- a/src/themes/oui-next/global_styling/mixins/_helpers.scss +++ b/src/themes/oui-next/global_styling/mixins/_helpers.scss @@ -114,6 +114,7 @@ width: 1px; height: 1px; overflow: hidden; + user-select: none; } // Specifically target IE11, but not Edge.