-
Notifications
You must be signed in to change notification settings - Fork 13.9k
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
Fixing variable conflicts between Superset and Boot(swatch/strap) #8650
Conversation
Codecov Report
@@ Coverage Diff @@
## master #8650 +/- ##
=======================================
Coverage 65.76% 65.76%
=======================================
Files 482 482
Lines 23824 23824
Branches 2594 2594
=======================================
Hits 15667 15667
Misses 7984 7984
Partials 173 173 Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Thanks for quick fix!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGMT, just left a small comment
@gray: lighten(@gray-base, 33.5%); | ||
@gray-light: lighten(@gray-base, 70%); | ||
@bs-gray: lighten(@gray-base, 33.5%); | ||
@bs-gray-light: lighten(@gray-base, 70%); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: tab miss aligned
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, didn't worry about it since Prettier is about to wipe that out in @etr2460's next merge, and my next PR will rewrite or remove this file entirely ;)
CATEGORY
Choose one
SUMMARY
There were a couple variable collisions between Superset's
variables.less
file and the Bootswatch theme'svariables.less
, both of which had an@gray
value and@gray-light
. I renamed the one ones the Bootstrap/Bootswatch side to have a@bs-...
prefix to namespace them for now. Hopefully all is looking more like it ought to now.BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before:
After:
REVIEWERS
@graceguo-supercat