-
Notifications
You must be signed in to change notification settings - Fork 26
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
fix(#1466): apply padding when variant=relaxed #1788
Conversation
Awesome! You could remove the old unused CSS: ui-components/libs/web-components/src/assets/css/components.css Lines 83 to 85 in b690488
|
da84a0c
to
e7a7754
Compare
My code worked since I was testing via Angular which allowed the defined To fix this problem the
This will ensure that the prop is visible in the DOM, and the previously defined css rule can take affect. |
499847f
to
9879880
Compare
🎉 This PR is included in version 1.17.0-alpha.44 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 4.17.0-alpha.23 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 1.20.5 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 4.20.4 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 3.0.0-alpha.4 🎉 The release is available on: Your semantic-release bot 📦🚀 |
🎉 This PR is included in version 3.0.3 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Instead of using JS for dom manipulation and adding 'relaxed' class to all eligible tds, the customElement is forced to spit out 'variant' attribute, and then the css selector goa-table[variant='relaxed'] td does work. See Chris' last comment below