-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Update syntax for "border-radius" and "box-shadow", added vendor prefixes for calc() #2367
Conversation
@bensontrent thanks! |
@@ -91,13 +91,13 @@ body { | |||
padding: 2px 5px; | |||
color: #fff; | |||
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.2); | |||
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2); | |||
box-shadow: inset 0 1px 1px rgba(0,0,0,.2); | |||
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.2); |
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.
please revert whitespace changes to keep the commit clean
(ignore appveyor failure; known problem which is corrected in |
@bensontrent tyvm! If you're interested in helping out, at some point we're going to want a redesign of the site... |
* commit '185c0d902e272216232630fe4e2577268456dd9a': Update syntax for "border-radius" and "box-shadow", added vendor prefixes for calc() (#2367)
@boneskull I want to help in the redesign |
Simple fixes to CSS syntax. My editor was throwing errors on the CSS as border-radius:none is not a acceptable value (Should be "0"). I linted the CSS, kept all legacy css support, and added modern syntax for border-radius and box shadow.