-
Notifications
You must be signed in to change notification settings - Fork 10.4k
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
CSS cleanup #145
CSS cleanup #145
Conversation
This changes all classes to be formatted in the same way. * Each property is on it's own line * Each declaration is on it's own line * Single linebreak in between rulesets
* Remove quotes from url function * Change background to background-image where only image is defined
Quotes in font-family value are not supposed to wrap around multiple typeface names. They are only to wrap around single typeface names.
* Remove trailing and leading 0's from values with a decimal * Remove commented out css * Remove units from values of 0
.body { | ||
color: black; | ||
background: white; | ||
margin: 0 0 0 0; |
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.
Maybe replace this with margin: 0
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.
+1
That'd be better.
👍 on @mrmrs' changes. @philipgiuliani your comments warrant discussion but aren't useful in the context of these changes. Perhaps open another PR if you'd like to collapse CSS rules? |
[Gardening] Apply formatting rules from #145 to docs
…port-134-135-139-138-140 Backport PRs 134 135 139 138 140 to swift-3.0-branch
…type Update coloring test for swiftlang#27416
Adding config for Swift 4 support
Small fixes to the CSS.