Skip to content

Commit 8f45bb5

Browse files
Bump stylelint-config-standard-scss from 14.0.0 to 15.0.1 (#1069)
* Bump stylelint-config-standard-scss from 14.0.0 to 15.0.1 Bumps [stylelint-config-standard-scss](https://github.com/stylelint-scss/stylelint-config-standard-scss) from 14.0.0 to 15.0.1. - [Release notes](https://github.com/stylelint-scss/stylelint-config-standard-scss/releases) - [Changelog](https://github.com/stylelint-scss/stylelint-config-standard-scss/blob/main/CHANGELOG.md) - [Commits](stylelint-scss/stylelint-config-standard-scss@v14.0.0...v15.0.1) --- updated-dependencies: - dependency-name: stylelint-config-standard-scss dependency-version: 15.0.1 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Auto-fix new stylelint errors --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: maureenlholland <[email protected]>
1 parent 3cc2445 commit 8f45bb5

File tree

14 files changed

+66
-55
lines changed

14 files changed

+66
-55
lines changed

assets/sass/protocol/base/elements/_forms.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ button,
5555
[type='button'],
5656
[type='reset'],
5757
[type='submit'] {
58-
appearance: button;
58+
appearance: auto;
5959
}
6060

6161
// Remove the default vertical scrollbar in IE 10+.

assets/sass/protocol/base/elements/_links.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717

1818
&:active {
19-
background-color: rgba(0, 0, 0, 0.05);
19+
background-color: rgb(0, 0, 0, 0.05);
2020
}
2121

2222
@supports (--css: variables) {

assets/sass/protocol/base/elements/_tables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
th,
2121
td {
2222
@include bidi(((text-align, left, right),));
23-
border-top: 1px solid rgba(0, 0, 0, 0.2);
23+
border-top: 1px solid rgb(0, 0, 0, 0.2);
2424
padding: 0.5em 10px;
2525
text-align: left;
2626
}

assets/sass/protocol/components/_menu-list.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
.mzp-c-menu-list-list {
2222
background-color: $color-white;
23-
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
23+
box-shadow: 0 0 6px 0 rgb(0, 0, 0, 0.3);
2424
border-radius: $border-radius-sm;
2525
}
2626

assets/sass/protocol/components/_menu.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@
267267

268268
@media #{$mq-md} {
269269
border-top: 1px solid $color-marketing-gray-20;
270-
box-shadow: 0 16px 16px -16px rgba(0, 0, 0, 0.3);
270+
box-shadow: 0 16px 16px -16px rgb(0, 0, 0, 0.3);
271271
left: 0;
272272
padding: $spacing-xl $spacing-xs;
273273
position: absolute;

assets/sass/protocol/components/_modal.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ html.mzp-is-noscroll {
3333
.mzp-c-modal {
3434
@include animation(mzp-a-fade-in 300ms ease-in 0ms 1 normal both);
3535
background: $color-black;
36-
background: rgba(0, 0, 0, 0.85);
36+
background: rgb(0, 0, 0, 0.85);
3737
bottom: 0;
3838
height: 101%;
3939
left: 0;
@@ -51,7 +51,7 @@ html.mzp-is-noscroll {
5151

5252
.mzp-c-modal-inner {
5353
@include clearfix;
54-
background: rgba(0, 0, 0, 0.9);
54+
background: rgb(0, 0, 0, 0.9);
5555
max-width: 1200px;
5656
padding: $spacing-xl;
5757
position: relative;

assets/sass/protocol/components/_navigation.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
&.mzp-is-scrolling {
5858
// Shadow colors are equivalent to $color-ink-90, $color-blue-90, $color-ink-90
59-
box-shadow: 0 0 6px 1px rgba(29, 17, 51, 0.04), 0 0 8px 2px rgba(9, 32, 77, 0.12), 0 0 5px -3px rgba(29, 17, 51, 0.12);
59+
box-shadow: 0 0 6px 1px rgb(29, 17, 51, 0.04), 0 0 8px 2px rgb(9, 32, 77, 0.12), 0 0 5px -3px rgb(29, 17, 51, 0.12);
6060
}
6161

6262
&.mzp-is-hidden {

assets/sass/protocol/components/_sidebar-menu.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
&:hover,
6767
&:focus,
6868
&:active {
69-
background-color: rgba(0, 0, 0, 0.05);
69+
background-color: rgb(0, 0, 0, 0.05);
7070
text-decoration: underline;
7171
}
7272
}

assets/sass/protocol/includes/mixins/_images.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
@return url('data:image/svg+xml,#{$encoded}');
5959
}
6060

61-
//* -------------------------------------------------------------------------- */
61+
// * -------------------------------------------------------------------------- */
6262
// images
6363

6464
// SVGs - xmlns attribute must be first

package-lock.json

Lines changed: 49 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)