-
Notifications
You must be signed in to change notification settings - Fork 4
Cleanup stuff for 2.0 version #1
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
Conversation
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary { | ||
html, | ||
body, | ||
body div, |
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.
Why the body
before?
d8f50dd
to
396b455
Compare
audio, | ||
video, | ||
details, | ||
summary { |
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.
This list is pretty exhaustive to me, we don’t use all those elements in our projects and I feel we should add them manually in projects where we use them. Personally, I’d keep:
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
code,
em,
img,
small,
strong,
sub,
sup,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
footer,
header,
nav,
section,
time,
audio,
video
What do you think?
396b455
to
7a9433e
Compare
button, input, select, textarea {margin: 0;} | ||
input[type="button"], | ||
input[type="submit"], | ||
input[type="file"], |
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.
Should we add input[type="reset"]
?
👍 |
7a9433e
to
559c527
Compare
You’re probably better off reviewing the whole file.
I basically ended up cleanup up the syntax inconstancies as well as removing useless selectors and properties. Hopefully after this PR we’ll be able to release a 2.0 version that satisfy us all 😀