Skip to content

Commit 41fbcb3

Browse files
committed
11.0.1
1 parent dcf6136 commit 41fbcb3

4 files changed

Lines changed: 13 additions & 9 deletions

File tree

CHANGELOG.md

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

3+
### 11.0.1 (August 20, 2020)
4+
5+
- Fixed: Used case-insensitive attribute selectors in the evergreen variations.
6+
37
### 11.0.0 (August 20, 2020)
48

59
- Added: Correct table border color inheritance in all Chrome, Edge, and Safari.

evergreen.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,9 @@ button {
152152
*/
153153

154154
button,
155-
[type="button"],
156-
[type="reset"],
157-
[type="submit"] {
155+
[type="button" i],
156+
[type="reset" i],
157+
[type="submit" i] {
158158
-webkit-appearance: button;
159159
}
160160

@@ -195,7 +195,7 @@ textarea {
195195
* 2. Correct the outline style in Safari.
196196
*/
197197

198-
[type="search"] {
198+
[type="search" i] {
199199
-webkit-appearance: textfield; /* 1 */
200200
outline-offset: -2px; /* 2 */
201201
}

opinionated.evergreen.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,9 +160,9 @@ button {
160160
*/
161161

162162
button,
163-
[type="button"],
164-
[type="reset"],
165-
[type="submit"] {
163+
[type="button" i],
164+
[type="reset" i],
165+
[type="submit" i] {
166166
-webkit-appearance: button;
167167
}
168168

@@ -203,7 +203,7 @@ textarea {
203203
* 2. Correct the outline style in Safari.
204204
*/
205205

206-
[type="search"] {
206+
[type="search" i] {
207207
-webkit-appearance: textfield; /* 1 */
208208
outline-offset: -2px; /* 2 */
209209
}

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": "11.0.0",
3+
"version": "11.0.1",
44
"description": "A cross-browser CSS foundation",
55
"author": "Jonathan Neal <[email protected]>",
66
"contributors": [

0 commit comments

Comments
 (0)