File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changes to sanitize.css
22
3+ ### 12.0.1 (August 20, 2020)
4+
5+ - Fixed: Used case-insensitive attribute selectors in the evergreen variations.
6+
37### 12.0.0 (August 20, 2020)
48
59- Added: Correct table border color inheritance in all Chrome, Edge, and Safari.
Original file line number Diff line number Diff line change @@ -240,9 +240,9 @@ button {
240240 */
241241
242242button ,
243- [type = "button" ],
244- [type = "reset" ],
245- [type = "submit" ] {
243+ [type = "button" i ],
244+ [type = "reset" i ],
245+ [type = "submit" i ] {
246246 -webkit-appearance : button;
247247}
248248
@@ -287,7 +287,7 @@ textarea {
287287 * 2. Correct the outline style in Safari.
288288 */
289289
290- [type = "search" ] {
290+ [type = "search" i ] {
291291 -webkit-appearance : textfield; /* 1 */
292292 outline-offset : -2px ; /* 2 */
293293}
@@ -396,7 +396,7 @@ summary {
396396 * Change the cursor on busy elements in all browsers (opinionated).
397397 */
398398
399- [aria-busy = "true" ] {
399+ [aria-busy = "true" i ] {
400400 cursor : progress;
401401}
402402
@@ -413,7 +413,7 @@ summary {
413413 * inoperable elements in all browsers (opinionated).
414414 */
415415
416- [aria-disabled = "true" ],
416+ [aria-disabled = "true" i ],
417417[disabled ] {
418418 cursor : not-allowed;
419419}
@@ -423,11 +423,11 @@ summary {
423423 * in all browsers (opinionated).
424424 */
425425
426- [aria-hidden = "false" ][hidden ] {
426+ [aria-hidden = "false" i ][hidden ] {
427427 display : initial;
428428}
429429
430- [aria-hidden = "false" ][hidden ]: not (: focus ) {
430+ [aria-hidden = "false" i ][hidden ]: not (: focus ) {
431431 clip : rect (0 , 0 , 0 , 0 );
432432 position : absolute;
433433}
Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ select:not([multiple]):not([size]) {
3939 * Remove the border and padding in all browsers (opinionated).
4040 */
4141
42- [type = "color" ],
43- [type = "range" ] {
42+ [type = "color" i ],
43+ [type = "range" i ] {
4444 border-width : 0 ;
4545 padding : 0 ;
4646}
Original file line number Diff line number Diff line change 11{
22 "name" : " sanitize.css" ,
3- "version" : " 12.0.0 " ,
3+ "version" : " 12.0.1 " ,
44 "description" : " A best-practices CSS foundation" ,
55 "author" : " Jonathan Neal <jonathantneal@hotmail.com>" ,
66 "contributors" : [
You can’t perform that action at this time.
0 commit comments