Skip to content

Commit

Permalink
Update fixtures after caniuse DB update
Browse files Browse the repository at this point in the history
  • Loading branch information
planktonic committed Sep 3, 2024
1 parent e6b8526 commit 724e02b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 27 deletions.
17 changes: 3 additions & 14 deletions test/scss/fixtures/bitstyles-overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,6 @@ img {
max-width: 100%;
}
[type='checkbox'] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
Expand All @@ -453,9 +452,7 @@ img {
vertical-align: middle;
width: 1em;
}
@supports (
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
) {
@supports ((-moz-appearance: none) or (appearance: none)) {
[type='checkbox'] {
background-color: var(--bscpn-color-grayscale-white);
border: var(--bscpn-size-s7) solid var(--bscpn-color-grayscale);
Expand Down Expand Up @@ -508,7 +505,6 @@ img {
}
}
[type='radio'] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
Expand All @@ -521,9 +517,7 @@ img {
vertical-align: middle;
width: 1em;
}
@supports (
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
) {
@supports ((-moz-appearance: none) or (appearance: none)) {
[type='radio'] {
background-color: var(--bscpn-color-grayscale-white);
border: var(--bscpn-size-s7) solid var(--bscpn-color-grayscale);
Expand Down Expand Up @@ -749,11 +743,8 @@ textarea:disabled {
color: var(--bscpn-color-grayscale);
cursor: default;
}
@supports (
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
) {
@supports ((-moz-appearance: none) or (appearance: none)) {
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: var(--bscpn-color-grayscale-white);
Expand Down Expand Up @@ -6096,7 +6087,6 @@ table {
.bs-sr-only {
clip: rect(0, 0, 0, 0);
border: 0;
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
height: 1px;
margin: -1px;
Expand All @@ -6110,7 +6100,6 @@ table {
.bs-sr-only\@xl {
clip: rect(0, 0, 0, 0);
border: 0;
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
height: 1px;
margin: -1px;
Expand Down
16 changes: 3 additions & 13 deletions test/scss/fixtures/bitstyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,6 @@ img {
max-width: 100%;
}
[type='checkbox'] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
Expand All @@ -700,9 +699,7 @@ img {
vertical-align: middle;
width: 1em;
}
@supports (
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
) {
@supports ((-moz-appearance: none) or (appearance: none)) {
[type='checkbox'] {
background-color: var(--bs-color-grayscale-white);
border: var(--bs-size-s7) solid var(--bs-color-grayscale);
Expand Down Expand Up @@ -755,7 +752,6 @@ img {
}
}
[type='radio'] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
cursor: pointer;
Expand All @@ -768,9 +764,7 @@ img {
vertical-align: middle;
width: 1em;
}
@supports (
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
) {
@supports ((-moz-appearance: none) or (appearance: none)) {
[type='radio'] {
background-color: var(--bs-color-grayscale-white);
border: var(--bs-size-s7) solid var(--bs-color-grayscale);
Expand Down Expand Up @@ -993,11 +987,8 @@ textarea:disabled {
color: var(--bs-color-grayscale);
cursor: default;
}
@supports (
(-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)
) {
@supports ((-moz-appearance: none) or (appearance: none)) {
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: var(--bs-color-grayscale-white);
Expand Down Expand Up @@ -7046,7 +7037,6 @@ table {
.u-sr-only {
clip: rect(0, 0, 0, 0);
border: 0;
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
height: 1px;
margin: -1px;
Expand Down

0 comments on commit 724e02b

Please sign in to comment.