-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Refactor and simplify Badge css #3950
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BPScott
force-pushed
the
badge-refactor
branch
from
January 30, 2021 02:14
9ea9ddc
to
1934b58
Compare
- By using a css variable we can remove the usage a mixin that added additional selectors - Simplify print style for progressPartiallyComplete by using a really large spread and an offset to make it look like half of the box has been colored in. Thus avoiding needing a pseudo-element - Use regular selector chaining instead of nesting
BPScott
force-pushed
the
badge-refactor
branch
from
January 30, 2021 02:15
1934b58
to
e559604
Compare
alex-page
approved these changes
Feb 1, 2021
This was referenced Mar 18, 2021
sylvhama
pushed a commit
that referenced
this pull request
Mar 26, 2021
- By using a css variable we can remove the usage a mixin that added additional selectors - Simplify print style for progressPartiallyComplete by using a really large spread and an offset to make it look like half of the box has been colored in. Thus avoiding needing a pseudo-element - Use regular selector chaining instead of nesting
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
WHY are these changes introduced?
I found a way to remove a bit under a quarter of badge's generated css (3031 bytes => 2358bytes) by using a css variable instead of using a mixin
WHAT is this pull request doing?
additional selectors
large spread and an offset to make it look like half of the box has
been colored in. Thus avoiding needing a pseudo-element
Note that per #3226 we can't simplify so that we always use either background or box-shadow for pips. backgrounds are stripped off in print styles, while box-shadow renders a slight halo on screens (this seems to be due to the pip border radius, rather than the box-shadow itself)
How to 🎩
Check playground. Note that:
Copy-paste this code in
playground/Playground.tsx
: