-
Notifications
You must be signed in to change notification settings - Fork 66
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
Before after and focus #37
base: master
Are you sure you want to change the base?
Conversation
…ver, focus, visited and active psudoclasses
It seems like many selectors were removed from different places instead of just new stuff added. Why were they removed? Also seems to be a few lines with extra whitespace added at the end. |
I don't think that I removed any selectors, though, I may have inserted some into the middle of a line. Do you have an example of something that was removed? As for the whitespaces, yeah, that was my bad. |
This would be a great addition. |
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.
Here are some differences I found. Maybe I'm looking at this wrong?
|
||
/* HTML5 - Sept 2013 taken from MDN https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5/HTML5_element_list */ | ||
.cleanslate article, .cleanslate aside, .cleanslate figure, .cleanslate figcaption, .cleanslate footer, .cleanslate header, .cleanslate menu, .cleanslate nav, .cleanslate section, .cleanslate time, .cleanslate mark, .cleanslate audio, .cleanslate video, .cleanslate abbr, .cleanslate address, .cleanslate area, .cleanslate blockquote, .cleanslate canvas, .cleanslate caption, .cleanslate cite, .cleanslate code, .cleanslate colgroup, .cleanslate col, .cleanslate datalist, .cleanslate fieldset, .cleanslate main, .cleanslate map, .cleanslate meta, .cleanslate optgroup, .cleanslate output, .cleanslate progress, .cleanslate svg { | ||
.cleanslate article, .cleanslate aside, .cleanslate figure, .cleanslate figcaption, .cleanslate footer, .cleanslate header, .cleanslate menu, .cleanslate nav, .cleanslate section, .cleanslate time, .cleanslate mark, .cleanslate audio, .cleanslate video, .cleanslate abbr, .cleanslate address, .cleanslate area, .cleanslate blockquote, .cleanslate canvas, .cleanslate caption, .cleanslate cite, .cleanslate code, .cleanslate colgroup, .cleanslate col, .cleanslate datalist, .cleanslate fieldset, .cleanslate main, .cleanslate map, .cleanslate meta, .cleanslate optgroup, .cleanslate output, .cleanslate progress, .cleanslate *:before, .cleanslate *:after { |
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.
svg seems to be removed here
@@ -257,7 +259,7 @@ | |||
.cleanslate em { | |||
font-style:italic !important; | |||
} | |||
.cleanslate kbd, .cleanslate samp, .cleanslate code, .cleanslate pre { | |||
.cleanslate kbd, .cleanslate samp, .cleanslate code { |
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.
pre was removed here.
@@ -267,7 +269,7 @@ | |||
.cleanslate a:visited { | |||
color: #529 !important; | |||
} | |||
.cleanslate a, .cleanslate a *, .cleanslate input[type=submit], .cleanslate input[type=button], .cleanslate input[type=radio], .cleanslate input[type=checkbox], .cleanslate select, .cleanslate button { | |||
.cleanslate a, .cleanslate a *, .cleanslate a:hover, .cleanslate a:focus, .cleanslate input[type=submit], .cleanslate input[type=radio], .cleanslate input[type=checkbox], .cleanslate select { |
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.
.cleanslate input[type=button] and .cleanslate button was removed here.
@@ -354,6 +346,16 @@ | |||
.cleanslate input[type=radio] { | |||
margin: 2px 2px 3px 2px !important; | |||
} | |||
.cleanslate input[type=submit]:active, .cleanslate button:active { |
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.
.cleanslate input[type=button]:active and .cleanslate button:active were removed here.
@@ -447,7 +455,3 @@ | |||
text-decoration:none !important; | |||
list-style-type:disc !important; | |||
} | |||
|
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.
another one removed here.
Thanks for the pull request. Yes it looks like there were a couple of accidental deletions. And it looks like the version number has been changed. If you could fix those, I'd be happy to merge. |
Needed to clear before and after for all elements as well as link hover, active, etc. pseudo classes.