diff --git a/core/.stylelintrc.yml b/core/.stylelintrc.yml index 6cd3fda7b9..70a8b0c17b 100644 --- a/core/.stylelintrc.yml +++ b/core/.stylelintrc.yml @@ -254,7 +254,7 @@ rules: - visibility - z-index - property-blacklist: + property-disallowed-list: - background-position - right - left diff --git a/core/src/components/content/content.scss b/core/src/components/content/content.scss index 4bd6f5e3f5..f341888456 100644 --- a/core/src/components/content/content.scss +++ b/core/src/components/content/content.scss @@ -150,9 +150,9 @@ display: none; position: absolute; - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ left: -100%; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ width: 100%; height: 100vh; @@ -165,9 +165,9 @@ .transition-cover { position: absolute; - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ right: 0; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ width: 100%; height: 100%; @@ -181,9 +181,9 @@ display: block; position: absolute; - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ right: 0; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ width: 10px; height: 100%; diff --git a/core/src/components/item-options/item-options.scss b/core/src/components/item-options/item-options.scss index 5e64d23bf9..50774c6856 100644 --- a/core/src/components/item-options/item-options.scss +++ b/core/src/components/item-options/item-options.scss @@ -5,10 +5,10 @@ ion-item-options { @include multi-dir() { - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ top: 0; right: 0; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ } @include ltr() { @@ -19,10 +19,10 @@ ion-item-options { justify-content: flex-start; &:not(.item-options-end) { - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ right: auto; left: 0; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ justify-content: flex-end; } @@ -41,10 +41,10 @@ ion-item-options { .item-options-start { @include multi-dir() { - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ right: auto; left: 0; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ } @include ltr() { diff --git a/core/src/components/item-sliding/item-sliding.scss b/core/src/components/item-sliding/item-sliding.scss index 0ff0ae2384..0e2cc06795 100644 --- a/core/src/components/item-sliding/item-sliding.scss +++ b/core/src/components/item-sliding/item-sliding.scss @@ -32,7 +32,7 @@ ion-item-sliding .item { .item-sliding-active-swipe-end .item-options-end .item-option-expandable { @include multi-dir() { - /* stylelint-disable-next-line property-blacklist */ + /* stylelint-disable-next-line property-disallowed-list */ padding-left: 100%; } @@ -50,7 +50,7 @@ ion-item-sliding .item { .item-sliding-active-swipe-start .item-options-start .item-option-expandable { @include multi-dir() { - /* stylelint-disable-next-line property-blacklist */ + /* stylelint-disable-next-line property-disallowed-list */ padding-right: 100%; } diff --git a/core/src/components/menu/menu.scss b/core/src/components/menu/menu.scss index c02884a5a6..890c424c2e 100644 --- a/core/src/components/menu/menu.scss +++ b/core/src/components/menu/menu.scss @@ -63,7 +63,7 @@ --ion-safe-area-right: 0px; @include multi-dir() { - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ right: auto; left: 0; } @@ -75,7 +75,7 @@ @include multi-dir() { right: 0; left: auto; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ } } diff --git a/core/src/components/progress-bar/progress-bar.scss b/core/src/components/progress-bar/progress-bar.scss index d9bc8dfe0c..0752c79d17 100644 --- a/core/src/components/progress-bar/progress-bar.scss +++ b/core/src/components/progress-bar/progress-bar.scss @@ -46,10 +46,10 @@ // Extend a bit to overflow. The size of animated distance. .buffer-circles { - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ right: -10px; left: -10px; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ } // Determinate progress bar @@ -58,7 +58,7 @@ .progress, .progress-buffer-bar, .buffer-circles-container { - /* stylelint-disable-next-line property-blacklist */ + /* stylelint-disable-next-line property-disallowed-list */ transform-origin: left top; transition: transform 150ms linear; @@ -88,12 +88,12 @@ // -------------------------------------------------- .indeterminate-bar-primary { - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ top: 0; right: 0; bottom: 0; left: -145.166611%; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ animation: primary-indeterminate-translate 2s infinite linear; @@ -104,12 +104,12 @@ } .indeterminate-bar-secondary { - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ top: 0; right: 0; bottom: 0; left: -54.888891%; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ animation: secondary-indeterminate-translate 2s infinite linear; @@ -125,11 +125,11 @@ .buffer-circles { background-image: radial-gradient(ellipse at center, var(--buffer-background) 0%, var(--buffer-background) 30%, transparent 30%); - /* stylelint-disable property-blacklist */ + /* stylelint-disable property-disallowed-list */ background-repeat: repeat-x; background-position: 5px center; background-size: 10px 10px; - /* stylelint-enable property-blacklist */ + /* stylelint-enable property-disallowed-list */ z-index: 0; animation: buffering 450ms infinite linear; diff --git a/core/src/components/range/range.md.scss b/core/src/components/range/range.md.scss index 52aa9b23aa..987f286e90 100644 --- a/core/src/components/range/range.md.scss +++ b/core/src/components/range/range.md.scss @@ -105,12 +105,12 @@ @include margin-horizontal(-13px, null); @include multi-dir() { - /* stylelint-disable-next-line property-blacklist */ + /* stylelint-disable-next-line property-disallowed-list */ border-radius: 50% 50% 50% 0; } @include rtl() { - /* stylelint-disable-next-line property-blacklist */ + /* stylelint-disable-next-line property-disallowed-list */ left: unset; } diff --git a/core/src/components/range/range.scss b/core/src/components/range/range.scss index 89e6ab6cbb..10c92149b1 100644 --- a/core/src/components/range/range.scss +++ b/core/src/components/range/range.scss @@ -82,7 +82,7 @@ ); @include rtl() { - /* stylelint-disable-next-line property-blacklist */ + /* stylelint-disable-next-line property-disallowed-list */ left: unset; } @@ -104,7 +104,7 @@ @include position(calc((var(--height) - var(--bar-height)) / 2), null, null, 0); @include rtl() { - /* stylelint-disable-next-line property-blacklist */ + /* stylelint-disable-next-line property-disallowed-list */ left: unset; } @@ -127,7 +127,7 @@ ); @include rtl() { - /* stylelint-disable-next-line property-blacklist */ + /* stylelint-disable-next-line property-disallowed-list */ left: unset; } diff --git a/core/src/components/skeleton-text/skeleton-text.scss b/core/src/components/skeleton-text/skeleton-text.scss index 0f7a69c0f1..455fe41ade 100644 --- a/core/src/components/skeleton-text/skeleton-text.scss +++ b/core/src/components/skeleton-text/skeleton-text.scss @@ -61,7 +61,7 @@ span { animation-timing-function: linear; } -/* stylelint-disable property-blacklist */ +/* stylelint-disable property-disallowed-list */ @keyframes shimmer { 0% { background-position: -400px 0; @@ -71,4 +71,4 @@ span { background-position: 400px 0; } } -/* stylelint-enable property-blacklist */ +/* stylelint-enable property-disallowed-list */ diff --git a/core/src/components/virtual-scroll/virtual-scroll.scss b/core/src/components/virtual-scroll/virtual-scroll.scss index df56ac21e3..00ff1c872c 100644 --- a/core/src/components/virtual-scroll/virtual-scroll.scss +++ b/core/src/components/virtual-scroll/virtual-scroll.scss @@ -16,7 +16,7 @@ ion-virtual-scroll > .virtual-loading { } ion-virtual-scroll > .virtual-item { - /* stylelint-disable declaration-no-important, property-blacklist */ + /* stylelint-disable declaration-no-important, property-disallowed-list */ position: absolute !important; top: 0 !important;