We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Carbon Tab list does not trigger this rule in Chrome, but does in Firefox:
input_label_visible
The SVG button is clipped 0,0,0,0 in this Carbon tab list buttons, so this rule should not be triggered: See https://react.carbondesignsystem.com/iframe.html?args=&id=components-tabs--default&viewMode=story
<button title="Remove Dashboard tab" class="cds--visually-hidden cds--tabs__nav-item--close-icon--selected" aria-hidden="true" tabindex="-1" type="button">
In Chrome, the style is cds--tabs__nav-item--close--hidden { clip: rect(0, 0, 0, 0);
cds--tabs__nav-item--close--hidden {
clip: rect(0, 0, 0, 0);
In Firefox, the style is also: .cds--tabs__nav-item--close--hidden { clip: rect(0,0,0,0);
.cds--tabs__nav-item--close--hidden {
clip: rect(0,0,0,0);
but, Firefox is warning:
clip is deprecated by W3C standards. Learn more about clip
The text was updated successfully, but these errors were encountered:
This rule does not trigger in either Chrome or Firefox in store Version 3.1.76 only in Firefox using PR #2025 Action Artifact.
Sorry, something went wrong.
This is an "Other related Issues possible for this release" in Epic #2100
shunguoy
No branches or pull requests
The Carbon Tab list does not trigger this rule in Chrome, but does in Firefox:
input_label_visible
:The SVG button is clipped 0,0,0,0 in this Carbon tab list buttons, so this rule should not be triggered:
See
https://react.carbondesignsystem.com/iframe.html?args=&id=components-tabs--default&viewMode=story
In Chrome, the style is
cds--tabs__nav-item--close--hidden {
clip: rect(0, 0, 0, 0);
In Firefox, the style is also:
.cds--tabs__nav-item--close--hidden {
clip: rect(0,0,0,0);
but, Firefox is warning:
The text was updated successfully, but these errors were encountered: