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
drupal-tabs
Currently the drupal-tabs component has chained selectors pointing to tag selectors.
To decrease the specificity of these declarations, refactor by adding classes to the child li and a elements.
li
a
E.g.,
.drupal-tabs--secondary > li > a
would be better as
.drupal-tabs__item-link--secondary
See #26 for the introduction of these selectors.
The text was updated successfully, but these errors were encountered:
@leo-mobomo here's another code debt task that needs to be done to clean things up.
Sorry, something went wrong.
No branches or pull requests
Currently the
drupal-tabs
component has chained selectors pointing to tag selectors.To decrease the specificity of these declarations, refactor by adding classes to the child
li
anda
elements.E.g.,
.drupal-tabs--secondary > li > a
would be better as
.drupal-tabs__item-link--secondary
See #26 for the introduction of these selectors.
The text was updated successfully, but these errors were encountered: