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

ADAPT-000: Remove link-underline utility class #851

Merged
merged 9 commits into from
Sep 17, 2021
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
15
16
7 changes: 7 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Upgrade

Upgrade from version 7.0.0-beta.0 to 7.0.0-beta.1
-------------------------------------------
- Removed `su-link-underline`, `su-link-no-underline`, and `.su-link` nested variant states as they don't play nice with JIT mode.
- Replace this functionality by installing and using the tailwind children varients plugin within your project and using it with the no-underline utility.
- https://github.com/benface/tailwindcss-children
- https://tailwindcss.com/docs/text-decoration#no-underline

Upgrade from version 7.0.0-alpha to 7.0.0-beta
-------------------------------------------
- Renamed `su-input-base` to `su-input`
Expand Down
14 changes: 13 additions & 1 deletion dist/decanter-base.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* plugins.
*/

/*! tailwindcss v2.2.7 | MIT License | https://tailwindcss.com
/*! tailwindcss v2.2.15 | MIT License | https://tailwindcss.com
*/

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
Expand Down Expand Up @@ -472,6 +472,18 @@ button,
cursor: pointer;
}

/**
* Override legacy focus reset from Normalize with modern Firefox focus styles.
*
* This is actually an improvement over the new defaults in Firefox in our testing,
* as it triggers the better focus styles even for links, which still use a dotted
* outline in Firefox by default.
*/

:-moz-focusring {
outline: auto;
}

table {
border-collapse: collapse;
}
Expand Down
Loading