mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
72861f4e1c
* 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
21 lines
287 B
SCSS
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;
|
|
}
|