Skip to content

Commit 38469f5

Browse files
build(deps-dev): bump webpack from 5.76.2 to 5.94.0 (#830)
1 parent 0b33bd1 commit 38469f5

File tree

3 files changed

+242
-220
lines changed

3 files changed

+242
-220
lines changed

test/scss/fixtures/bitstyles-overrides.css

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,6 @@ img {
440440
max-width: 100%;
441441
}
442442
[type='checkbox'] {
443-
-webkit-appearance: none;
444443
-moz-appearance: none;
445444
appearance: none;
446445
cursor: pointer;
@@ -453,9 +452,7 @@ img {
453452
vertical-align: middle;
454453
width: 1em;
455454
}
456-
@supports (
457-
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
458-
) {
455+
@supports ((-moz-appearance: none) or (appearance: none)) {
459456
[type='checkbox'] {
460457
background-color: var(--bscpn-color-grayscale-white);
461458
border: var(--bscpn-size-s7) solid var(--bscpn-color-grayscale);
@@ -508,7 +505,6 @@ img {
508505
}
509506
}
510507
[type='radio'] {
511-
-webkit-appearance: none;
512508
-moz-appearance: none;
513509
appearance: none;
514510
cursor: pointer;
@@ -521,9 +517,7 @@ img {
521517
vertical-align: middle;
522518
width: 1em;
523519
}
524-
@supports (
525-
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
526-
) {
520+
@supports ((-moz-appearance: none) or (appearance: none)) {
527521
[type='radio'] {
528522
background-color: var(--bscpn-color-grayscale-white);
529523
border: var(--bscpn-size-s7) solid var(--bscpn-color-grayscale);
@@ -749,11 +743,8 @@ textarea:disabled {
749743
color: var(--bscpn-color-grayscale);
750744
cursor: default;
751745
}
752-
@supports (
753-
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
754-
) {
746+
@supports ((-moz-appearance: none) or (appearance: none)) {
755747
select {
756-
-webkit-appearance: none;
757748
-moz-appearance: none;
758749
appearance: none;
759750
background-color: var(--bscpn-color-grayscale-white);
@@ -6096,7 +6087,6 @@ table {
60966087
.bs-sr-only {
60976088
clip: rect(0, 0, 0, 0);
60986089
border: 0;
6099-
-webkit-clip-path: inset(50%);
61006090
clip-path: inset(50%);
61016091
height: 1px;
61026092
margin: -1px;
@@ -6110,7 +6100,6 @@ table {
61106100
.bs-sr-only\@xl {
61116101
clip: rect(0, 0, 0, 0);
61126102
border: 0;
6113-
-webkit-clip-path: inset(50%);
61146103
clip-path: inset(50%);
61156104
height: 1px;
61166105
margin: -1px;

test/scss/fixtures/bitstyles.css

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,6 @@ img {
687687
max-width: 100%;
688688
}
689689
[type='checkbox'] {
690-
-webkit-appearance: none;
691690
-moz-appearance: none;
692691
appearance: none;
693692
cursor: pointer;
@@ -700,9 +699,7 @@ img {
700699
vertical-align: middle;
701700
width: 1em;
702701
}
703-
@supports (
704-
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
705-
) {
702+
@supports ((-moz-appearance: none) or (appearance: none)) {
706703
[type='checkbox'] {
707704
background-color: var(--bs-color-grayscale-white);
708705
border: var(--bs-size-s7) solid var(--bs-color-grayscale);
@@ -755,7 +752,6 @@ img {
755752
}
756753
}
757754
[type='radio'] {
758-
-webkit-appearance: none;
759755
-moz-appearance: none;
760756
appearance: none;
761757
cursor: pointer;
@@ -768,9 +764,7 @@ img {
768764
vertical-align: middle;
769765
width: 1em;
770766
}
771-
@supports (
772-
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
773-
) {
767+
@supports ((-moz-appearance: none) or (appearance: none)) {
774768
[type='radio'] {
775769
background-color: var(--bs-color-grayscale-white);
776770
border: var(--bs-size-s7) solid var(--bs-color-grayscale);
@@ -993,11 +987,8 @@ textarea:disabled {
993987
color: var(--bs-color-grayscale);
994988
cursor: default;
995989
}
996-
@supports (
997-
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
998-
) {
990+
@supports ((-moz-appearance: none) or (appearance: none)) {
999991
select {
1000-
-webkit-appearance: none;
1001992
-moz-appearance: none;
1002993
appearance: none;
1003994
background-color: var(--bs-color-grayscale-white);
@@ -7046,7 +7037,6 @@ table {
70467037
.u-sr-only {
70477038
clip: rect(0, 0, 0, 0);
70487039
border: 0;
7049-
-webkit-clip-path: inset(50%);
70507040
clip-path: inset(50%);
70517041
height: 1px;
70527042
margin: -1px;

0 commit comments

Comments
 (0)