discourse/app/assets/stylesheets/vendor/normalize-ext.scss
Krzysztof Kotlarek 72861f4e1c
FIX: add table CSS rules to normalize (#10176)
* FIX: add table CSS rules to normalize

In the new version of normalize - 8.0.1 `  `table` and `td` CSS rules are missing
https://github.com/necolas/normalize.css/blob/master/normalize.css

They existed in version `3.0.1` https://github.com/necolas/normalize.css/blob/3.0.1/normalize.css#L417

Also, extracted custom rules to new file
2020-07-07 16:47:03 +10:00

21 lines
287 B
SCSS

/* Discourse custom changes for backward compatiblity
========================================================================== */
button,
input,
optgroup,
select,
textarea {
color: inherit;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}