Skip to content

Commit 0772fd5

Browse files
committed
10.1.0
1 parent 938a4aa commit 0772fd5

4 files changed

Lines changed: 54 additions & 35 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changes to @csstools/normalize.css
22

3-
### 10.0.0 (May 14, 2019)
3+
### 10.1.0 (June 3, 2019)
4+
5+
- Fixed: `Edge` comments without `Chrome` are are changed to `Edge 18-`.
6+
- Fixed: `Chrome` comments without `Edge` have `Edge` added.
7+
- Fixed: Nested list `dl` normalizations split.
8+
- Fixed: Logical `margin-block` normalization changed to `margin`.
9+
10+
### 10.0.0 (May 16, 2019)
411

512
- Added: Removal of the margin on nested lists in Chrome and Safari.
613
- Added: opinionated.css, normalize.css with classic opinionated styles.
@@ -23,7 +30,7 @@
2330
> “csstools” tag. I hope one day our differences are resolved and the projects
2431
> will be one again.
2532
>
26-
> For reference:
33+
> For reference within this project:
2734
> normalize.css resolves bugs and common browser inconsistencies.
2835
> opinionated.css does the same while preserving the classic opinionated styles.
2936

normalize.css

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ html {
1818

1919
/**
2020
* Correct the font size and margin on `h1` elements within `section` and
21-
* `article` contexts in Chrome, Firefox, and Safari.
21+
* `article` contexts in Chrome, Edge, Firefox, and Safari.
2222
*/
2323

2424
h1 {
@@ -30,25 +30,31 @@ h1 {
3030
* ========================================================================== */
3131

3232
/**
33-
* Remove the margin on nested lists in Chrome and Safari.
33+
* Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
3434
*/
3535

3636
dl dl,
3737
dl ol,
3838
dl ul,
3939
ol dl,
40+
ul dl {
41+
margin: 0;
42+
}
43+
44+
/**
45+
* Remove the margin on nested lists in Edge 18- and IE.
46+
*/
47+
4048
ol ol,
4149
ol ul,
42-
ul dl,
4350
ul ol,
4451
ul ul {
45-
margin-block-start: 0;
46-
margin-block-end: 0;
52+
margin: 0;
4753
}
4854

4955
/**
5056
* 1. Add the correct box sizing in Firefox.
51-
* 2. Show the overflow in Edge and IE.
57+
* 2. Show the overflow in Edge 18- and IE.
5258
*/
5359

5460
hr {
@@ -87,7 +93,7 @@ a {
8793
}
8894

8995
/**
90-
* Add the correct text decoration in Edge, IE, Opera, and Safari.
96+
* Add the correct text decoration in Edge 18-, IE, and Safari.
9197
*/
9298

9399
abbr[title] {
@@ -176,7 +182,7 @@ select {
176182

177183
/**
178184
* 1. Show the overflow in IE.
179-
* 2. Remove the inheritance of text transform in Edge, Firefox, and IE.
185+
* 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
180186
*/
181187

182188
button {
@@ -204,15 +210,15 @@ fieldset {
204210
}
205211

206212
/**
207-
* Show the overflow in Edge and IE.
213+
* Show the overflow in Edge 18- and IE.
208214
*/
209215

210216
input {
211217
overflow: visible;
212218
}
213219

214220
/**
215-
* 1. Correct the text wrapping in Edge and IE.
221+
* 1. Correct the text wrapping in Edge 18- and IE.
216222
* 2. Correct the color inheritance from `fieldset` elements in IE.
217223
*/
218224

@@ -225,8 +231,8 @@ legend {
225231
}
226232

227233
/**
228-
* 1. Add the correct display in Edge and IE.
229-
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
234+
* 1. Add the correct display in Edge 18- and IE.
235+
* 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
230236
*/
231237

232238
progress {
@@ -264,7 +270,7 @@ textarea {
264270
}
265271

266272
/**
267-
* 1. Correct the odd appearance in Chrome and Safari.
273+
* 1. Correct the odd appearance in Chrome, Edge, and Safari.
268274
* 2. Correct the outline style in Safari.
269275
*/
270276

@@ -292,7 +298,7 @@ textarea {
292298
}
293299

294300
/**
295-
* Remove the inner padding in Chrome and Safari on macOS.
301+
* Remove the inner padding in Chrome, Edge, and Safari on macOS.
296302
*/
297303

298304
::-webkit-search-decoration {
@@ -338,15 +344,15 @@ textarea {
338344
* ========================================================================== */
339345

340346
/*
341-
* Add the correct display in Edge and IE.
347+
* Add the correct display in Edge 18- and IE.
342348
*/
343349

344350
details {
345351
display: block;
346352
}
347353

348354
/*
349-
* Add the correct styles in Edge, IE, and Safari.
355+
* Add the correct styles in Edge 18-, IE, and Safari.
350356
*/
351357

352358
dialog {

opinionated.css

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ body {
2626

2727
/**
2828
* Correct the font size and margin on `h1` elements within `section` and
29-
* `article` contexts in Chrome, Firefox, and Safari.
29+
* `article` contexts in Chrome, Edge, Firefox, and Safari.
3030
*/
3131

3232
h1 {
@@ -38,25 +38,31 @@ h1 {
3838
* ========================================================================== */
3939

4040
/**
41-
* Remove the margin on nested lists in Chrome and Safari.
41+
* Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
4242
*/
4343

4444
dl dl,
4545
dl ol,
4646
dl ul,
4747
ol dl,
48+
ul dl {
49+
margin: 0;
50+
}
51+
52+
/**
53+
* Remove the margin on nested lists in Edge 18- and IE.
54+
*/
55+
4856
ol ol,
4957
ol ul,
50-
ul dl,
5158
ul ol,
5259
ul ul {
53-
margin-block-start: 0;
54-
margin-block-end: 0;
60+
margin: 0;
5561
}
5662

5763
/**
5864
* 1. Add the correct box sizing in Firefox.
59-
* 2. Show the overflow in Edge and IE.
65+
* 2. Show the overflow in Edge 18- and IE.
6066
*/
6167

6268
hr {
@@ -95,7 +101,7 @@ a {
95101
}
96102

97103
/**
98-
* Add the correct text decoration in Edge, IE, Opera, and Safari.
104+
* Add the correct text decoration in Edge 18-, IE, and Safari.
99105
*/
100106

101107
abbr[title] {
@@ -184,7 +190,7 @@ select {
184190

185191
/**
186192
* 1. Show the overflow in IE.
187-
* 2. Remove the inheritance of text transform in Edge, Firefox, and IE.
193+
* 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
188194
*/
189195

190196
button {
@@ -212,15 +218,15 @@ fieldset {
212218
}
213219

214220
/**
215-
* Show the overflow in Edge and IE.
221+
* Show the overflow in Edge 18- and IE.
216222
*/
217223

218224
input {
219225
overflow: visible;
220226
}
221227

222228
/**
223-
* 1. Correct the text wrapping in Edge and IE.
229+
* 1. Correct the text wrapping in Edge 18- and IE.
224230
* 2. Correct the color inheritance from `fieldset` elements in IE.
225231
*/
226232

@@ -233,8 +239,8 @@ legend {
233239
}
234240

235241
/**
236-
* 1. Add the correct display in Edge and IE.
237-
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
242+
* 1. Add the correct display in Edge 18- and IE.
243+
* 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
238244
*/
239245

240246
progress {
@@ -276,7 +282,7 @@ textarea {
276282
}
277283

278284
/**
279-
* 1. Correct the odd appearance in Chrome and Safari.
285+
* 1. Correct the odd appearance in Chrome, Edge, and Safari.
280286
* 2. Correct the outline style in Safari.
281287
*/
282288

@@ -304,7 +310,7 @@ textarea {
304310
}
305311

306312
/**
307-
* Remove the inner padding in Chrome and Safari on macOS.
313+
* Remove the inner padding in Chrome, Edge, and Safari on macOS.
308314
*/
309315

310316
::-webkit-search-decoration {
@@ -350,15 +356,15 @@ textarea {
350356
* ========================================================================== */
351357

352358
/*
353-
* Add the correct display in Edge and IE.
359+
* Add the correct display in Edge 18- and IE.
354360
*/
355361

356362
details {
357363
display: block;
358364
}
359365

360366
/*
361-
* Add the correct styles in Edge, IE, and Safari.
367+
* Add the correct styles in Edge 18-, IE, and Safari.
362368
*/
363369

364370
dialog {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@csstools/normalize.css",
3-
"version": "10.0.0",
3+
"version": "10.1.0",
44
"description": "A cross-browser CSS foundation",
55
"author": "Jonathan Neal <[email protected]>",
66
"contributors": [

0 commit comments

Comments
 (0)