diff --git a/admin/tool/generator/templates/parsingresult.mustache b/admin/tool/generator/templates/parsingresult.mustache index 25bf2492a74..a426a6a3ccc 100644 --- a/admin/tool/generator/templates/parsingresult.mustache +++ b/admin/tool/generator/templates/parsingresult.mustache @@ -74,14 +74,14 @@
{{text}} {{^isvalid}} - + {{#str}} error {{/str}} {{/isvalid}} {{#isvalid}} {{#isexecuted}} - + {{#str}} success {{/str}} diff --git a/lib/behat/classes/behat_session_trait.php b/lib/behat/classes/behat_session_trait.php index 9e8f8f01cba..508d073e6df 100644 --- a/lib/behat/classes/behat_session_trait.php +++ b/lib/behat/classes/behat_session_trait.php @@ -1038,14 +1038,25 @@ EOF; return; } - // Look for any DOM element with deprecated message in before pseudo-element. + // Look for DOM elements with deprecated message in before pseudo-element. $js = << window.getComputedStyle(el, ':before').content === '"Deprecated style in use"' - ); + [...document.querySelectorAll('*')].flatMap(el => { + const beforeContent = window.getComputedStyle(el, ':before').content; + if (beforeContent.startsWith('"Deprecated style in use')) { + const deprecatedClass = beforeContent.match(/\(([^)]+)\)/)?.[1] ?? 'unknown'; + return [deprecatedClass + ' (found in: ' + el.classList + ')']; + } + return []; + }); EOF; - if ($this->evaluate_script($js)) { - throw new \Exception(html_entity_decode("Deprecated style in use", ENT_COMPAT)); + + $deprecations = $this->evaluate_script($js); + if ($deprecations) { + $deprecationdata = "Deprecated styles found:\n"; + foreach ($deprecations as $deprecation) { + $deprecationdata .= " {$deprecation}\n"; + } + throw new \Exception(html_entity_decode($deprecationdata, ENT_COMPAT)); } } diff --git a/mod/assign/templates/actionbar/grading/extra_filters_dropdown_trigger.mustache b/mod/assign/templates/actionbar/grading/extra_filters_dropdown_trigger.mustache index bc503d02d50..485a9c443e1 100644 --- a/mod/assign/templates/actionbar/grading/extra_filters_dropdown_trigger.mustache +++ b/mod/assign/templates/actionbar/grading/extra_filters_dropdown_trigger.mustache @@ -27,6 +27,6 @@
{{#str}} advanced, core {{/str}} {{#appliedfilterscount}} - +{{.}} + +{{.}} {{/appliedfilterscount}}
diff --git a/theme/boost/scss/moodle/bs4-compat.scss b/theme/boost/scss/moodle/bs4-compat.scss index da6c4cc18fc..bd30d9e72f1 100644 --- a/theme/boost/scss/moodle/bs4-compat.scss +++ b/theme/boost/scss/moodle/bs4-compat.scss @@ -14,13 +14,13 @@ // .media { - @include deprecated-styles(); + @include deprecated-styles(".media"); display: flex; align-items: flex-start; } .media-body { - @include deprecated-styles(); + @include deprecated-styles(".media-body"); flex: 1; } @@ -73,7 +73,7 @@ $yiq-contrasted-threshold: 128; @each $color, $value in $theme-colors { .badge-#{$color} { - @include deprecated-styles(); + @include deprecated-styles(".badge-#{$color}"); @include badge-variant($value); } } @@ -82,7 +82,7 @@ $badge-pill-padding-x: .6em !default; $badge-pill-border-radius: 10rem !default; .badge-pill { - @include deprecated-styles(); + @include deprecated-styles(".badge-pill"); padding-right: $badge-pill-padding-x; padding-left: $badge-pill-padding-x; @include border-radius($badge-pill-border-radius); @@ -95,14 +95,14 @@ $badge-pill-border-radius: 10rem !default; $form-group-margin-bottom: 1rem !default; .form-group { - @include deprecated-styles(); + @include deprecated-styles(".form-group"); margin-bottom: $form-group-margin-bottom; } $form-check-input-margin-x: .25rem !default; .form-inline { - @include deprecated-styles(); + @include deprecated-styles(".form-inline"); display: flex; flex-flow: row wrap; align-items: center; @@ -174,7 +174,7 @@ $form-check-input-margin-x: .25rem !default; $card-deck-margin: 30px * .5 !default; .card-deck { - @include deprecated-styles(); + @include deprecated-styles(".card-deck"); .card { margin-bottom: $card-deck-margin; } @@ -199,7 +199,7 @@ $card-deck-margin: 30px * .5 !default; // .no-gutters { - @include deprecated-styles(); + @include deprecated-styles(".no-gutters"); margin-right: 0; margin-left: 0; > .col, @@ -220,11 +220,11 @@ $card-deck-margin: 30px * .5 !default; @each $prop, $abbrev in (margin: m, padding: p) { @each $size, $length in $spacers { .#{$abbrev}r#{$infix}-#{$size} { - @include deprecated-styles(); + @include deprecated-styles(".#{$abbrev}r"); #{$prop}-right: $length !important; } .#{$abbrev}l#{$infix}-#{$size} { - @include deprecated-styles(); + @include deprecated-styles(".#{$abbrev}l"); #{$prop}-left: $length !important; } } @@ -234,11 +234,11 @@ $card-deck-margin: 30px * .5 !default; @each $size, $length in $spacers { @if "#{$size}" != "0" { .mr#{$infix}-n#{$size} { - @include deprecated-styles(); + @include deprecated-styles(".mr"); margin-right: -$length !important; } .ml#{$infix}-n#{$size} { - @include deprecated-styles(); + @include deprecated-styles(".ml"); margin-left: -$length !important; } } @@ -246,11 +246,11 @@ $card-deck-margin: 30px * .5 !default; // Some special margin utils .mr#{$infix}-auto { - @include deprecated-styles(); + @include deprecated-styles(".mr"); margin-right: auto !important; } .ml#{$infix}-auto { - @include deprecated-styles(); + @include deprecated-styles(".ml"); margin-left: auto !important; } } @@ -265,11 +265,11 @@ $card-deck-margin: 30px * .5 !default; $infix: breakpoint-infix($breakpoint, $grid-breakpoints); .text#{$infix}-left { - @include deprecated-styles(); + @include deprecated-styles(".text-left"); text-align: left !important; } .text#{$infix}-right { - @include deprecated-styles(); + @include deprecated-styles(".text-right"); text-align: right !important; } } @@ -280,28 +280,28 @@ $card-deck-margin: 30px * .5 !default; // .border-right { - @include deprecated-styles(); + @include deprecated-styles(".border-right"); border-right: $border-width solid $border-color !important; } .border-left { - @include deprecated-styles(); + @include deprecated-styles(".border-left"); border-left: $border-width solid $border-color !important; } .border-right-0 { - @include deprecated-styles(); + @include deprecated-styles(".border-right"); border-right: 0 !important; } .border-left-0 { - @include deprecated-styles(); + @include deprecated-styles(".border-left"); border-left: 0 !important; } .rounded-right { - @include deprecated-styles(); + @include deprecated-styles(".rounded-right"); border-top-right-radius: $border-radius !important; border-bottom-right-radius: $border-radius !important; } .rounded-left { - @include deprecated-styles(); + @include deprecated-styles(".rounded-left"); border-top-left-radius: $border-radius !important; border-bottom-left-radius: $border-radius !important; } @@ -315,11 +315,11 @@ $card-deck-margin: 30px * .5 !default; $infix: breakpoint-infix($breakpoint, $grid-breakpoints); .float#{$infix}-left { - @include deprecated-styles(); + @include deprecated-styles(".float-left"); float: left !important; } .float#{$infix}-right { - @include deprecated-styles(); + @include deprecated-styles(".float-right"); float: right !important; } } @@ -376,27 +376,27 @@ a.close.disabled { // .font-weight-light { - @include deprecated-styles(); + @include deprecated-styles(".font-weight"); font-weight: $font-weight-light !important; } .font-weight-lighter { - @include deprecated-styles(); + @include deprecated-styles(".font-weight"); font-weight: $font-weight-lighter !important; } .font-weight-normal { - @include deprecated-styles(); + @include deprecated-styles(".font-weight"); font-weight: $font-weight-normal !important; } .font-weight-bold { - @include deprecated-styles(); + @include deprecated-styles(".font-weight"); font-weight: $font-weight-bold !important; } .font-weight-bolder { - @include deprecated-styles(); + @include deprecated-styles(".font-weight"); font-weight: $font-weight-bolder !important; } .font-italic { - @include deprecated-styles(); + @include deprecated-styles(".font-weight"); font-style: italic !important; } @@ -404,11 +404,11 @@ a.close.disabled { // Rounded sizes // .rounded-sm { - @include deprecated-styles(); + @include deprecated-styles(".rounded-sm"); border-radius: $border-radius-sm !important; } .rounded-lg { - @include deprecated-styles(); + @include deprecated-styles(".rounded-lg"); border-radius: $border-radius-lg !important; } @@ -438,12 +438,12 @@ a.close.disabled { } .sr-only { - @include deprecated-styles(); + @include deprecated-styles(".sr-only"); @include sr-only(); } .sr-only-focusable { - @include deprecated-styles(); + @include deprecated-styles(".sr-only-focusable"); @include sr-only-focusable(); } @@ -646,7 +646,7 @@ $custom-forms-transition: background-color .15s ease-in-out, borde } .custom-checkbox { - @include deprecated-styles(); + @include deprecated-styles(".custom-checkbox"); .custom-control-label::before { @include border-radius($custom-checkbox-indicator-border-radius); } @@ -676,7 +676,7 @@ $custom-forms-transition: background-color .15s ease-in-out, borde } .custom-radio { - @include deprecated-styles(); + @include deprecated-styles(".custom-radio"); .custom-control-label::before { border-radius: $custom-radio-indicator-border-radius; } @@ -693,7 +693,7 @@ $custom-forms-transition: background-color .15s ease-in-out, borde } .custom-switch { - @include deprecated-styles(); + @include deprecated-styles(".custom-switch"); padding-left: $custom-switch-width + $custom-control-gutter; .custom-control-label { &::before { @@ -726,7 +726,7 @@ $custom-forms-transition: background-color .15s ease-in-out, borde } .custom-select { - @include deprecated-styles(); + @include deprecated-styles(".custom-select"); display: inline-block; width: 100%; height: $custom-select-height; @@ -790,7 +790,7 @@ $custom-forms-transition: background-color .15s ease-in-out, borde } .custom-file { - @include deprecated-styles(); + @include deprecated-styles(".custom-file"); position: relative; display: inline-block; width: 100%; @@ -858,7 +858,7 @@ $custom-forms-transition: background-color .15s ease-in-out, borde } .custom-range { - @include deprecated-styles(); + @include deprecated-styles(".custom-range"); width: 100%; height: add($custom-range-thumb-height, $custom-range-thumb-focus-box-shadow-width * 2); padding: 0; @@ -993,7 +993,7 @@ $custom-forms-transition: background-color .15s ease-in-out, borde $btn-block-spacing-y: .5rem !default; .btn-block { - @include deprecated-styles(); + @include deprecated-styles(".btn-block"); display: block; width: 100%; + .btn-block { diff --git a/theme/boost/scss/moodle/deprecated.scss b/theme/boost/scss/moodle/deprecated.scss index 9a7bc6332c7..54d6709c926 100644 --- a/theme/boost/scss/moodle/deprecated.scss +++ b/theme/boost/scss/moodle/deprecated.scss @@ -5,7 +5,7 @@ // // Deprecation mixin. // -@mixin deprecated-styles() { +@mixin deprecated-styles($deprecatedrule) { /* stylelint-disable declaration-no-important */ body.behat-site &, body.behat-site#{&}, @@ -14,7 +14,7 @@ outline: 3px dotted $red !important; background-color: lighten($red, 50%) !important; &::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (#{$deprecatedrule})" !important; color: $red !important; font-size: smaller !important; } @@ -43,7 +43,7 @@ // In 6.0 all YUI section spinners wont be needed. .course-content .stateready .section .spinner { - @include deprecated-styles(); + @include deprecated-styles(".course-content .stateready .section .spinner"); display: none; } diff --git a/theme/boost/style/moodle.css b/theme/boost/style/moodle.css index dbb257faa98..c37c4f03f10 100644 --- a/theme/boost/style/moodle.css +++ b/theme/boost/style/moodle.css @@ -40908,7 +40908,7 @@ body.behat-site .course-content .stateready .section .spinner, body.behat-site .course-content .stateready .section .spinner::before, .course-content .stateready .section .spinner body.behat-site.course-content .stateready .section .spinner::before, body.themedesignermode .course-content .stateready .section .spinner::before, .course-content .stateready .section .spinner body.themedesignermode.course-content .stateready .section .spinner::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.course-content .stateready .section .spinner)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40931,7 +40931,7 @@ body.behat-site .media, body.behat-site .media::before, .media body.behat-site.media::before, body.themedesignermode .media::before, .media body.themedesignermode.media::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.media)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40950,7 +40950,7 @@ body.behat-site .media-body, body.behat-site .media-body::before, .media-body body.behat-site.media-body::before, body.themedesignermode .media-body::before, .media-body body.themedesignermode.media-body::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.media-body)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40970,7 +40970,7 @@ body.behat-site .badge-primary, body.behat-site .badge-primary::before, .badge-primary body.behat-site.badge-primary::before, body.themedesignermode .badge-primary::before, .badge-primary body.themedesignermode.badge-primary::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-primary)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40998,7 +40998,7 @@ body.behat-site .badge-secondary, body.behat-site .badge-secondary::before, .badge-secondary body.behat-site.badge-secondary::before, body.themedesignermode .badge-secondary::before, .badge-secondary body.themedesignermode.badge-secondary::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-secondary)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41026,7 +41026,7 @@ body.behat-site .badge-success, body.behat-site .badge-success::before, .badge-success body.behat-site.badge-success::before, body.themedesignermode .badge-success::before, .badge-success body.themedesignermode.badge-success::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-success)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41054,7 +41054,7 @@ body.behat-site .badge-info, body.behat-site .badge-info::before, .badge-info body.behat-site.badge-info::before, body.themedesignermode .badge-info::before, .badge-info body.themedesignermode.badge-info::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-info)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41082,7 +41082,7 @@ body.behat-site .badge-warning, body.behat-site .badge-warning::before, .badge-warning body.behat-site.badge-warning::before, body.themedesignermode .badge-warning::before, .badge-warning body.themedesignermode.badge-warning::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-warning)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41110,7 +41110,7 @@ body.behat-site .badge-danger, body.behat-site .badge-danger::before, .badge-danger body.behat-site.badge-danger::before, body.themedesignermode .badge-danger::before, .badge-danger body.themedesignermode.badge-danger::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-danger)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41138,7 +41138,7 @@ body.behat-site .badge-light, body.behat-site .badge-light::before, .badge-light body.behat-site.badge-light::before, body.themedesignermode .badge-light::before, .badge-light body.themedesignermode.badge-light::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-light)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41166,7 +41166,7 @@ body.behat-site .badge-dark, body.behat-site .badge-dark::before, .badge-dark body.behat-site.badge-dark::before, body.themedesignermode .badge-dark::before, .badge-dark body.themedesignermode.badge-dark::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-dark)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41195,7 +41195,7 @@ body.behat-site .badge-pill, body.behat-site .badge-pill::before, .badge-pill body.behat-site.badge-pill::before, body.themedesignermode .badge-pill::before, .badge-pill body.themedesignermode.badge-pill::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-pill)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41214,7 +41214,7 @@ body.behat-site .form-group, body.behat-site .form-group::before, .form-group body.behat-site.form-group::before, body.themedesignermode .form-group::before, .form-group body.themedesignermode.form-group::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.form-group)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41235,7 +41235,7 @@ body.behat-site .form-inline, body.behat-site .form-inline::before, .form-inline body.behat-site.form-inline::before, body.themedesignermode .form-inline::before, .form-inline body.themedesignermode.form-inline::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.form-inline)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41304,7 +41304,7 @@ body.behat-site .card-deck, body.behat-site .card-deck::before, .card-deck body.behat-site.card-deck::before, body.themedesignermode .card-deck::before, .card-deck body.themedesignermode.card-deck::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.card-deck)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41341,7 +41341,7 @@ body.behat-site .no-gutters, body.behat-site .no-gutters::before, .no-gutters body.behat-site.no-gutters::before, body.themedesignermode .no-gutters::before, .no-gutters body.themedesignermode.no-gutters::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.no-gutters)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41365,7 +41365,7 @@ body.behat-site .mr-0, body.behat-site .mr-0::before, .mr-0 body.behat-site.mr-0::before, body.themedesignermode .mr-0::before, .mr-0 body.themedesignermode.mr-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41384,7 +41384,7 @@ body.behat-site .ml-0, body.behat-site .ml-0::before, .ml-0 body.behat-site.ml-0::before, body.themedesignermode .ml-0::before, .ml-0 body.themedesignermode.ml-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41403,7 +41403,7 @@ body.behat-site .mr-1, body.behat-site .mr-1::before, .mr-1 body.behat-site.mr-1::before, body.themedesignermode .mr-1::before, .mr-1 body.themedesignermode.mr-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41422,7 +41422,7 @@ body.behat-site .ml-1, body.behat-site .ml-1::before, .ml-1 body.behat-site.ml-1::before, body.themedesignermode .ml-1::before, .ml-1 body.themedesignermode.ml-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41441,7 +41441,7 @@ body.behat-site .mr-2, body.behat-site .mr-2::before, .mr-2 body.behat-site.mr-2::before, body.themedesignermode .mr-2::before, .mr-2 body.themedesignermode.mr-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41460,7 +41460,7 @@ body.behat-site .ml-2, body.behat-site .ml-2::before, .ml-2 body.behat-site.ml-2::before, body.themedesignermode .ml-2::before, .ml-2 body.themedesignermode.ml-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41479,7 +41479,7 @@ body.behat-site .mr-3, body.behat-site .mr-3::before, .mr-3 body.behat-site.mr-3::before, body.themedesignermode .mr-3::before, .mr-3 body.themedesignermode.mr-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41498,7 +41498,7 @@ body.behat-site .ml-3, body.behat-site .ml-3::before, .ml-3 body.behat-site.ml-3::before, body.themedesignermode .ml-3::before, .ml-3 body.themedesignermode.ml-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41517,7 +41517,7 @@ body.behat-site .mr-4, body.behat-site .mr-4::before, .mr-4 body.behat-site.mr-4::before, body.themedesignermode .mr-4::before, .mr-4 body.themedesignermode.mr-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41536,7 +41536,7 @@ body.behat-site .ml-4, body.behat-site .ml-4::before, .ml-4 body.behat-site.ml-4::before, body.themedesignermode .ml-4::before, .ml-4 body.themedesignermode.ml-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41555,7 +41555,7 @@ body.behat-site .mr-5, body.behat-site .mr-5::before, .mr-5 body.behat-site.mr-5::before, body.themedesignermode .mr-5::before, .mr-5 body.themedesignermode.mr-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41574,7 +41574,7 @@ body.behat-site .ml-5, body.behat-site .ml-5::before, .ml-5 body.behat-site.ml-5::before, body.themedesignermode .ml-5::before, .ml-5 body.themedesignermode.ml-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41593,7 +41593,7 @@ body.behat-site .mr-6, body.behat-site .mr-6::before, .mr-6 body.behat-site.mr-6::before, body.themedesignermode .mr-6::before, .mr-6 body.themedesignermode.mr-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41612,7 +41612,7 @@ body.behat-site .ml-6, body.behat-site .ml-6::before, .ml-6 body.behat-site.ml-6::before, body.themedesignermode .ml-6::before, .ml-6 body.themedesignermode.ml-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41631,7 +41631,7 @@ body.behat-site .pr-0, body.behat-site .pr-0::before, .pr-0 body.behat-site.pr-0::before, body.themedesignermode .pr-0::before, .pr-0 body.themedesignermode.pr-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41650,7 +41650,7 @@ body.behat-site .pl-0, body.behat-site .pl-0::before, .pl-0 body.behat-site.pl-0::before, body.themedesignermode .pl-0::before, .pl-0 body.themedesignermode.pl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41669,7 +41669,7 @@ body.behat-site .pr-1, body.behat-site .pr-1::before, .pr-1 body.behat-site.pr-1::before, body.themedesignermode .pr-1::before, .pr-1 body.themedesignermode.pr-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41688,7 +41688,7 @@ body.behat-site .pl-1, body.behat-site .pl-1::before, .pl-1 body.behat-site.pl-1::before, body.themedesignermode .pl-1::before, .pl-1 body.themedesignermode.pl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41707,7 +41707,7 @@ body.behat-site .pr-2, body.behat-site .pr-2::before, .pr-2 body.behat-site.pr-2::before, body.themedesignermode .pr-2::before, .pr-2 body.themedesignermode.pr-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41726,7 +41726,7 @@ body.behat-site .pl-2, body.behat-site .pl-2::before, .pl-2 body.behat-site.pl-2::before, body.themedesignermode .pl-2::before, .pl-2 body.themedesignermode.pl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41745,7 +41745,7 @@ body.behat-site .pr-3, body.behat-site .pr-3::before, .pr-3 body.behat-site.pr-3::before, body.themedesignermode .pr-3::before, .pr-3 body.themedesignermode.pr-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41764,7 +41764,7 @@ body.behat-site .pl-3, body.behat-site .pl-3::before, .pl-3 body.behat-site.pl-3::before, body.themedesignermode .pl-3::before, .pl-3 body.themedesignermode.pl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41783,7 +41783,7 @@ body.behat-site .pr-4, body.behat-site .pr-4::before, .pr-4 body.behat-site.pr-4::before, body.themedesignermode .pr-4::before, .pr-4 body.themedesignermode.pr-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41802,7 +41802,7 @@ body.behat-site .pl-4, body.behat-site .pl-4::before, .pl-4 body.behat-site.pl-4::before, body.themedesignermode .pl-4::before, .pl-4 body.themedesignermode.pl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41821,7 +41821,7 @@ body.behat-site .pr-5, body.behat-site .pr-5::before, .pr-5 body.behat-site.pr-5::before, body.themedesignermode .pr-5::before, .pr-5 body.themedesignermode.pr-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41840,7 +41840,7 @@ body.behat-site .pl-5, body.behat-site .pl-5::before, .pl-5 body.behat-site.pl-5::before, body.themedesignermode .pl-5::before, .pl-5 body.themedesignermode.pl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41859,7 +41859,7 @@ body.behat-site .pr-6, body.behat-site .pr-6::before, .pr-6 body.behat-site.pr-6::before, body.themedesignermode .pr-6::before, .pr-6 body.themedesignermode.pr-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41878,7 +41878,7 @@ body.behat-site .pl-6, body.behat-site .pl-6::before, .pl-6 body.behat-site.pl-6::before, body.themedesignermode .pl-6::before, .pl-6 body.themedesignermode.pl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41897,7 +41897,7 @@ body.behat-site .mr-n1, body.behat-site .mr-n1::before, .mr-n1 body.behat-site.mr-n1::before, body.themedesignermode .mr-n1::before, .mr-n1 body.themedesignermode.mr-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41916,7 +41916,7 @@ body.behat-site .ml-n1, body.behat-site .ml-n1::before, .ml-n1 body.behat-site.ml-n1::before, body.themedesignermode .ml-n1::before, .ml-n1 body.themedesignermode.ml-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41935,7 +41935,7 @@ body.behat-site .mr-n2, body.behat-site .mr-n2::before, .mr-n2 body.behat-site.mr-n2::before, body.themedesignermode .mr-n2::before, .mr-n2 body.themedesignermode.mr-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41954,7 +41954,7 @@ body.behat-site .ml-n2, body.behat-site .ml-n2::before, .ml-n2 body.behat-site.ml-n2::before, body.themedesignermode .ml-n2::before, .ml-n2 body.themedesignermode.ml-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41973,7 +41973,7 @@ body.behat-site .mr-n3, body.behat-site .mr-n3::before, .mr-n3 body.behat-site.mr-n3::before, body.themedesignermode .mr-n3::before, .mr-n3 body.themedesignermode.mr-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41992,7 +41992,7 @@ body.behat-site .ml-n3, body.behat-site .ml-n3::before, .ml-n3 body.behat-site.ml-n3::before, body.themedesignermode .ml-n3::before, .ml-n3 body.themedesignermode.ml-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42011,7 +42011,7 @@ body.behat-site .mr-n4, body.behat-site .mr-n4::before, .mr-n4 body.behat-site.mr-n4::before, body.themedesignermode .mr-n4::before, .mr-n4 body.themedesignermode.mr-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42030,7 +42030,7 @@ body.behat-site .ml-n4, body.behat-site .ml-n4::before, .ml-n4 body.behat-site.ml-n4::before, body.themedesignermode .ml-n4::before, .ml-n4 body.themedesignermode.ml-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42049,7 +42049,7 @@ body.behat-site .mr-n5, body.behat-site .mr-n5::before, .mr-n5 body.behat-site.mr-n5::before, body.themedesignermode .mr-n5::before, .mr-n5 body.themedesignermode.mr-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42068,7 +42068,7 @@ body.behat-site .ml-n5, body.behat-site .ml-n5::before, .ml-n5 body.behat-site.ml-n5::before, body.themedesignermode .ml-n5::before, .ml-n5 body.themedesignermode.ml-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42087,7 +42087,7 @@ body.behat-site .mr-n6, body.behat-site .mr-n6::before, .mr-n6 body.behat-site.mr-n6::before, body.themedesignermode .mr-n6::before, .mr-n6 body.themedesignermode.mr-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42106,7 +42106,7 @@ body.behat-site .ml-n6, body.behat-site .ml-n6::before, .ml-n6 body.behat-site.ml-n6::before, body.themedesignermode .ml-n6::before, .ml-n6 body.themedesignermode.ml-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42125,7 +42125,7 @@ body.behat-site .mr-auto, body.behat-site .mr-auto::before, .mr-auto body.behat-site.mr-auto::before, body.themedesignermode .mr-auto::before, .mr-auto body.themedesignermode.mr-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42144,7 +42144,7 @@ body.behat-site .ml-auto, body.behat-site .ml-auto::before, .ml-auto body.behat-site.ml-auto::before, body.themedesignermode .ml-auto::before, .ml-auto body.themedesignermode.ml-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42164,7 +42164,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-0::before, .mr-sm-0 body.behat-site.mr-sm-0::before, body.themedesignermode .mr-sm-0::before, .mr-sm-0 body.themedesignermode.mr-sm-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42182,7 +42182,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-0::before, .ml-sm-0 body.behat-site.ml-sm-0::before, body.themedesignermode .ml-sm-0::before, .ml-sm-0 body.themedesignermode.ml-sm-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42200,7 +42200,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-1::before, .mr-sm-1 body.behat-site.mr-sm-1::before, body.themedesignermode .mr-sm-1::before, .mr-sm-1 body.themedesignermode.mr-sm-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42218,7 +42218,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-1::before, .ml-sm-1 body.behat-site.ml-sm-1::before, body.themedesignermode .ml-sm-1::before, .ml-sm-1 body.themedesignermode.ml-sm-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42236,7 +42236,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-2::before, .mr-sm-2 body.behat-site.mr-sm-2::before, body.themedesignermode .mr-sm-2::before, .mr-sm-2 body.themedesignermode.mr-sm-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42254,7 +42254,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-2::before, .ml-sm-2 body.behat-site.ml-sm-2::before, body.themedesignermode .ml-sm-2::before, .ml-sm-2 body.themedesignermode.ml-sm-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42272,7 +42272,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-3::before, .mr-sm-3 body.behat-site.mr-sm-3::before, body.themedesignermode .mr-sm-3::before, .mr-sm-3 body.themedesignermode.mr-sm-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42290,7 +42290,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-3::before, .ml-sm-3 body.behat-site.ml-sm-3::before, body.themedesignermode .ml-sm-3::before, .ml-sm-3 body.themedesignermode.ml-sm-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42308,7 +42308,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-4::before, .mr-sm-4 body.behat-site.mr-sm-4::before, body.themedesignermode .mr-sm-4::before, .mr-sm-4 body.themedesignermode.mr-sm-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42326,7 +42326,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-4::before, .ml-sm-4 body.behat-site.ml-sm-4::before, body.themedesignermode .ml-sm-4::before, .ml-sm-4 body.themedesignermode.ml-sm-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42344,7 +42344,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-5::before, .mr-sm-5 body.behat-site.mr-sm-5::before, body.themedesignermode .mr-sm-5::before, .mr-sm-5 body.themedesignermode.mr-sm-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42362,7 +42362,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-5::before, .ml-sm-5 body.behat-site.ml-sm-5::before, body.themedesignermode .ml-sm-5::before, .ml-sm-5 body.themedesignermode.ml-sm-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42380,7 +42380,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-6::before, .mr-sm-6 body.behat-site.mr-sm-6::before, body.themedesignermode .mr-sm-6::before, .mr-sm-6 body.themedesignermode.mr-sm-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42398,7 +42398,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-6::before, .ml-sm-6 body.behat-site.ml-sm-6::before, body.themedesignermode .ml-sm-6::before, .ml-sm-6 body.themedesignermode.ml-sm-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42416,7 +42416,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-0::before, .pr-sm-0 body.behat-site.pr-sm-0::before, body.themedesignermode .pr-sm-0::before, .pr-sm-0 body.themedesignermode.pr-sm-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42434,7 +42434,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-0::before, .pl-sm-0 body.behat-site.pl-sm-0::before, body.themedesignermode .pl-sm-0::before, .pl-sm-0 body.themedesignermode.pl-sm-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42452,7 +42452,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-1::before, .pr-sm-1 body.behat-site.pr-sm-1::before, body.themedesignermode .pr-sm-1::before, .pr-sm-1 body.themedesignermode.pr-sm-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42470,7 +42470,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-1::before, .pl-sm-1 body.behat-site.pl-sm-1::before, body.themedesignermode .pl-sm-1::before, .pl-sm-1 body.themedesignermode.pl-sm-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42488,7 +42488,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-2::before, .pr-sm-2 body.behat-site.pr-sm-2::before, body.themedesignermode .pr-sm-2::before, .pr-sm-2 body.themedesignermode.pr-sm-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42506,7 +42506,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-2::before, .pl-sm-2 body.behat-site.pl-sm-2::before, body.themedesignermode .pl-sm-2::before, .pl-sm-2 body.themedesignermode.pl-sm-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42524,7 +42524,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-3::before, .pr-sm-3 body.behat-site.pr-sm-3::before, body.themedesignermode .pr-sm-3::before, .pr-sm-3 body.themedesignermode.pr-sm-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42542,7 +42542,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-3::before, .pl-sm-3 body.behat-site.pl-sm-3::before, body.themedesignermode .pl-sm-3::before, .pl-sm-3 body.themedesignermode.pl-sm-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42560,7 +42560,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-4::before, .pr-sm-4 body.behat-site.pr-sm-4::before, body.themedesignermode .pr-sm-4::before, .pr-sm-4 body.themedesignermode.pr-sm-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42578,7 +42578,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-4::before, .pl-sm-4 body.behat-site.pl-sm-4::before, body.themedesignermode .pl-sm-4::before, .pl-sm-4 body.themedesignermode.pl-sm-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42596,7 +42596,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-5::before, .pr-sm-5 body.behat-site.pr-sm-5::before, body.themedesignermode .pr-sm-5::before, .pr-sm-5 body.themedesignermode.pr-sm-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42614,7 +42614,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-5::before, .pl-sm-5 body.behat-site.pl-sm-5::before, body.themedesignermode .pl-sm-5::before, .pl-sm-5 body.themedesignermode.pl-sm-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42632,7 +42632,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-6::before, .pr-sm-6 body.behat-site.pr-sm-6::before, body.themedesignermode .pr-sm-6::before, .pr-sm-6 body.themedesignermode.pr-sm-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42650,7 +42650,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-6::before, .pl-sm-6 body.behat-site.pl-sm-6::before, body.themedesignermode .pl-sm-6::before, .pl-sm-6 body.themedesignermode.pl-sm-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42668,7 +42668,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n1::before, .mr-sm-n1 body.behat-site.mr-sm-n1::before, body.themedesignermode .mr-sm-n1::before, .mr-sm-n1 body.themedesignermode.mr-sm-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42686,7 +42686,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n1::before, .ml-sm-n1 body.behat-site.ml-sm-n1::before, body.themedesignermode .ml-sm-n1::before, .ml-sm-n1 body.themedesignermode.ml-sm-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42704,7 +42704,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n2::before, .mr-sm-n2 body.behat-site.mr-sm-n2::before, body.themedesignermode .mr-sm-n2::before, .mr-sm-n2 body.themedesignermode.mr-sm-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42722,7 +42722,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n2::before, .ml-sm-n2 body.behat-site.ml-sm-n2::before, body.themedesignermode .ml-sm-n2::before, .ml-sm-n2 body.themedesignermode.ml-sm-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42740,7 +42740,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n3::before, .mr-sm-n3 body.behat-site.mr-sm-n3::before, body.themedesignermode .mr-sm-n3::before, .mr-sm-n3 body.themedesignermode.mr-sm-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42758,7 +42758,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n3::before, .ml-sm-n3 body.behat-site.ml-sm-n3::before, body.themedesignermode .ml-sm-n3::before, .ml-sm-n3 body.themedesignermode.ml-sm-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42776,7 +42776,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n4::before, .mr-sm-n4 body.behat-site.mr-sm-n4::before, body.themedesignermode .mr-sm-n4::before, .mr-sm-n4 body.themedesignermode.mr-sm-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42794,7 +42794,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n4::before, .ml-sm-n4 body.behat-site.ml-sm-n4::before, body.themedesignermode .ml-sm-n4::before, .ml-sm-n4 body.themedesignermode.ml-sm-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42812,7 +42812,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n5::before, .mr-sm-n5 body.behat-site.mr-sm-n5::before, body.themedesignermode .mr-sm-n5::before, .mr-sm-n5 body.themedesignermode.mr-sm-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42830,7 +42830,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n5::before, .ml-sm-n5 body.behat-site.ml-sm-n5::before, body.themedesignermode .ml-sm-n5::before, .ml-sm-n5 body.themedesignermode.ml-sm-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42848,7 +42848,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n6::before, .mr-sm-n6 body.behat-site.mr-sm-n6::before, body.themedesignermode .mr-sm-n6::before, .mr-sm-n6 body.themedesignermode.mr-sm-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42866,7 +42866,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n6::before, .ml-sm-n6 body.behat-site.ml-sm-n6::before, body.themedesignermode .ml-sm-n6::before, .ml-sm-n6 body.themedesignermode.ml-sm-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42884,7 +42884,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-auto::before, .mr-sm-auto body.behat-site.mr-sm-auto::before, body.themedesignermode .mr-sm-auto::before, .mr-sm-auto body.themedesignermode.mr-sm-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42902,7 +42902,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-auto::before, .ml-sm-auto body.behat-site.ml-sm-auto::before, body.themedesignermode .ml-sm-auto::before, .ml-sm-auto body.themedesignermode.ml-sm-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42922,7 +42922,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-0::before, .mr-md-0 body.behat-site.mr-md-0::before, body.themedesignermode .mr-md-0::before, .mr-md-0 body.themedesignermode.mr-md-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42940,7 +42940,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-0::before, .ml-md-0 body.behat-site.ml-md-0::before, body.themedesignermode .ml-md-0::before, .ml-md-0 body.themedesignermode.ml-md-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42958,7 +42958,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-1::before, .mr-md-1 body.behat-site.mr-md-1::before, body.themedesignermode .mr-md-1::before, .mr-md-1 body.themedesignermode.mr-md-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42976,7 +42976,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-1::before, .ml-md-1 body.behat-site.ml-md-1::before, body.themedesignermode .ml-md-1::before, .ml-md-1 body.themedesignermode.ml-md-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42994,7 +42994,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-2::before, .mr-md-2 body.behat-site.mr-md-2::before, body.themedesignermode .mr-md-2::before, .mr-md-2 body.themedesignermode.mr-md-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43012,7 +43012,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-2::before, .ml-md-2 body.behat-site.ml-md-2::before, body.themedesignermode .ml-md-2::before, .ml-md-2 body.themedesignermode.ml-md-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43030,7 +43030,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-3::before, .mr-md-3 body.behat-site.mr-md-3::before, body.themedesignermode .mr-md-3::before, .mr-md-3 body.themedesignermode.mr-md-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43048,7 +43048,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-3::before, .ml-md-3 body.behat-site.ml-md-3::before, body.themedesignermode .ml-md-3::before, .ml-md-3 body.themedesignermode.ml-md-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43066,7 +43066,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-4::before, .mr-md-4 body.behat-site.mr-md-4::before, body.themedesignermode .mr-md-4::before, .mr-md-4 body.themedesignermode.mr-md-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43084,7 +43084,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-4::before, .ml-md-4 body.behat-site.ml-md-4::before, body.themedesignermode .ml-md-4::before, .ml-md-4 body.themedesignermode.ml-md-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43102,7 +43102,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-5::before, .mr-md-5 body.behat-site.mr-md-5::before, body.themedesignermode .mr-md-5::before, .mr-md-5 body.themedesignermode.mr-md-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43120,7 +43120,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-5::before, .ml-md-5 body.behat-site.ml-md-5::before, body.themedesignermode .ml-md-5::before, .ml-md-5 body.themedesignermode.ml-md-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43138,7 +43138,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-6::before, .mr-md-6 body.behat-site.mr-md-6::before, body.themedesignermode .mr-md-6::before, .mr-md-6 body.themedesignermode.mr-md-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43156,7 +43156,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-6::before, .ml-md-6 body.behat-site.ml-md-6::before, body.themedesignermode .ml-md-6::before, .ml-md-6 body.themedesignermode.ml-md-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43174,7 +43174,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-0::before, .pr-md-0 body.behat-site.pr-md-0::before, body.themedesignermode .pr-md-0::before, .pr-md-0 body.themedesignermode.pr-md-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43192,7 +43192,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-0::before, .pl-md-0 body.behat-site.pl-md-0::before, body.themedesignermode .pl-md-0::before, .pl-md-0 body.themedesignermode.pl-md-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43210,7 +43210,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-1::before, .pr-md-1 body.behat-site.pr-md-1::before, body.themedesignermode .pr-md-1::before, .pr-md-1 body.themedesignermode.pr-md-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43228,7 +43228,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-1::before, .pl-md-1 body.behat-site.pl-md-1::before, body.themedesignermode .pl-md-1::before, .pl-md-1 body.themedesignermode.pl-md-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43246,7 +43246,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-2::before, .pr-md-2 body.behat-site.pr-md-2::before, body.themedesignermode .pr-md-2::before, .pr-md-2 body.themedesignermode.pr-md-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43264,7 +43264,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-2::before, .pl-md-2 body.behat-site.pl-md-2::before, body.themedesignermode .pl-md-2::before, .pl-md-2 body.themedesignermode.pl-md-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43282,7 +43282,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-3::before, .pr-md-3 body.behat-site.pr-md-3::before, body.themedesignermode .pr-md-3::before, .pr-md-3 body.themedesignermode.pr-md-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43300,7 +43300,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-3::before, .pl-md-3 body.behat-site.pl-md-3::before, body.themedesignermode .pl-md-3::before, .pl-md-3 body.themedesignermode.pl-md-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43318,7 +43318,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-4::before, .pr-md-4 body.behat-site.pr-md-4::before, body.themedesignermode .pr-md-4::before, .pr-md-4 body.themedesignermode.pr-md-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43336,7 +43336,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-4::before, .pl-md-4 body.behat-site.pl-md-4::before, body.themedesignermode .pl-md-4::before, .pl-md-4 body.themedesignermode.pl-md-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43354,7 +43354,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-5::before, .pr-md-5 body.behat-site.pr-md-5::before, body.themedesignermode .pr-md-5::before, .pr-md-5 body.themedesignermode.pr-md-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43372,7 +43372,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-5::before, .pl-md-5 body.behat-site.pl-md-5::before, body.themedesignermode .pl-md-5::before, .pl-md-5 body.themedesignermode.pl-md-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43390,7 +43390,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-6::before, .pr-md-6 body.behat-site.pr-md-6::before, body.themedesignermode .pr-md-6::before, .pr-md-6 body.themedesignermode.pr-md-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43408,7 +43408,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-6::before, .pl-md-6 body.behat-site.pl-md-6::before, body.themedesignermode .pl-md-6::before, .pl-md-6 body.themedesignermode.pl-md-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43426,7 +43426,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n1::before, .mr-md-n1 body.behat-site.mr-md-n1::before, body.themedesignermode .mr-md-n1::before, .mr-md-n1 body.themedesignermode.mr-md-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43444,7 +43444,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n1::before, .ml-md-n1 body.behat-site.ml-md-n1::before, body.themedesignermode .ml-md-n1::before, .ml-md-n1 body.themedesignermode.ml-md-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43462,7 +43462,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n2::before, .mr-md-n2 body.behat-site.mr-md-n2::before, body.themedesignermode .mr-md-n2::before, .mr-md-n2 body.themedesignermode.mr-md-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43480,7 +43480,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n2::before, .ml-md-n2 body.behat-site.ml-md-n2::before, body.themedesignermode .ml-md-n2::before, .ml-md-n2 body.themedesignermode.ml-md-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43498,7 +43498,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n3::before, .mr-md-n3 body.behat-site.mr-md-n3::before, body.themedesignermode .mr-md-n3::before, .mr-md-n3 body.themedesignermode.mr-md-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43516,7 +43516,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n3::before, .ml-md-n3 body.behat-site.ml-md-n3::before, body.themedesignermode .ml-md-n3::before, .ml-md-n3 body.themedesignermode.ml-md-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43534,7 +43534,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n4::before, .mr-md-n4 body.behat-site.mr-md-n4::before, body.themedesignermode .mr-md-n4::before, .mr-md-n4 body.themedesignermode.mr-md-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43552,7 +43552,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n4::before, .ml-md-n4 body.behat-site.ml-md-n4::before, body.themedesignermode .ml-md-n4::before, .ml-md-n4 body.themedesignermode.ml-md-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43570,7 +43570,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n5::before, .mr-md-n5 body.behat-site.mr-md-n5::before, body.themedesignermode .mr-md-n5::before, .mr-md-n5 body.themedesignermode.mr-md-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43588,7 +43588,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n5::before, .ml-md-n5 body.behat-site.ml-md-n5::before, body.themedesignermode .ml-md-n5::before, .ml-md-n5 body.themedesignermode.ml-md-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43606,7 +43606,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n6::before, .mr-md-n6 body.behat-site.mr-md-n6::before, body.themedesignermode .mr-md-n6::before, .mr-md-n6 body.themedesignermode.mr-md-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43624,7 +43624,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n6::before, .ml-md-n6 body.behat-site.ml-md-n6::before, body.themedesignermode .ml-md-n6::before, .ml-md-n6 body.themedesignermode.ml-md-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43642,7 +43642,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-auto::before, .mr-md-auto body.behat-site.mr-md-auto::before, body.themedesignermode .mr-md-auto::before, .mr-md-auto body.themedesignermode.mr-md-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43660,7 +43660,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-auto::before, .ml-md-auto body.behat-site.ml-md-auto::before, body.themedesignermode .ml-md-auto::before, .ml-md-auto body.themedesignermode.ml-md-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43680,7 +43680,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-0::before, .mr-lg-0 body.behat-site.mr-lg-0::before, body.themedesignermode .mr-lg-0::before, .mr-lg-0 body.themedesignermode.mr-lg-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43698,7 +43698,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-0::before, .ml-lg-0 body.behat-site.ml-lg-0::before, body.themedesignermode .ml-lg-0::before, .ml-lg-0 body.themedesignermode.ml-lg-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43716,7 +43716,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-1::before, .mr-lg-1 body.behat-site.mr-lg-1::before, body.themedesignermode .mr-lg-1::before, .mr-lg-1 body.themedesignermode.mr-lg-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43734,7 +43734,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-1::before, .ml-lg-1 body.behat-site.ml-lg-1::before, body.themedesignermode .ml-lg-1::before, .ml-lg-1 body.themedesignermode.ml-lg-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43752,7 +43752,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-2::before, .mr-lg-2 body.behat-site.mr-lg-2::before, body.themedesignermode .mr-lg-2::before, .mr-lg-2 body.themedesignermode.mr-lg-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43770,7 +43770,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-2::before, .ml-lg-2 body.behat-site.ml-lg-2::before, body.themedesignermode .ml-lg-2::before, .ml-lg-2 body.themedesignermode.ml-lg-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43788,7 +43788,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-3::before, .mr-lg-3 body.behat-site.mr-lg-3::before, body.themedesignermode .mr-lg-3::before, .mr-lg-3 body.themedesignermode.mr-lg-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43806,7 +43806,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-3::before, .ml-lg-3 body.behat-site.ml-lg-3::before, body.themedesignermode .ml-lg-3::before, .ml-lg-3 body.themedesignermode.ml-lg-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43824,7 +43824,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-4::before, .mr-lg-4 body.behat-site.mr-lg-4::before, body.themedesignermode .mr-lg-4::before, .mr-lg-4 body.themedesignermode.mr-lg-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43842,7 +43842,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-4::before, .ml-lg-4 body.behat-site.ml-lg-4::before, body.themedesignermode .ml-lg-4::before, .ml-lg-4 body.themedesignermode.ml-lg-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43860,7 +43860,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-5::before, .mr-lg-5 body.behat-site.mr-lg-5::before, body.themedesignermode .mr-lg-5::before, .mr-lg-5 body.themedesignermode.mr-lg-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43878,7 +43878,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-5::before, .ml-lg-5 body.behat-site.ml-lg-5::before, body.themedesignermode .ml-lg-5::before, .ml-lg-5 body.themedesignermode.ml-lg-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43896,7 +43896,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-6::before, .mr-lg-6 body.behat-site.mr-lg-6::before, body.themedesignermode .mr-lg-6::before, .mr-lg-6 body.themedesignermode.mr-lg-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43914,7 +43914,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-6::before, .ml-lg-6 body.behat-site.ml-lg-6::before, body.themedesignermode .ml-lg-6::before, .ml-lg-6 body.themedesignermode.ml-lg-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43932,7 +43932,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-0::before, .pr-lg-0 body.behat-site.pr-lg-0::before, body.themedesignermode .pr-lg-0::before, .pr-lg-0 body.themedesignermode.pr-lg-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43950,7 +43950,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-0::before, .pl-lg-0 body.behat-site.pl-lg-0::before, body.themedesignermode .pl-lg-0::before, .pl-lg-0 body.themedesignermode.pl-lg-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43968,7 +43968,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-1::before, .pr-lg-1 body.behat-site.pr-lg-1::before, body.themedesignermode .pr-lg-1::before, .pr-lg-1 body.themedesignermode.pr-lg-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43986,7 +43986,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-1::before, .pl-lg-1 body.behat-site.pl-lg-1::before, body.themedesignermode .pl-lg-1::before, .pl-lg-1 body.themedesignermode.pl-lg-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44004,7 +44004,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-2::before, .pr-lg-2 body.behat-site.pr-lg-2::before, body.themedesignermode .pr-lg-2::before, .pr-lg-2 body.themedesignermode.pr-lg-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44022,7 +44022,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-2::before, .pl-lg-2 body.behat-site.pl-lg-2::before, body.themedesignermode .pl-lg-2::before, .pl-lg-2 body.themedesignermode.pl-lg-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44040,7 +44040,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-3::before, .pr-lg-3 body.behat-site.pr-lg-3::before, body.themedesignermode .pr-lg-3::before, .pr-lg-3 body.themedesignermode.pr-lg-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44058,7 +44058,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-3::before, .pl-lg-3 body.behat-site.pl-lg-3::before, body.themedesignermode .pl-lg-3::before, .pl-lg-3 body.themedesignermode.pl-lg-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44076,7 +44076,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-4::before, .pr-lg-4 body.behat-site.pr-lg-4::before, body.themedesignermode .pr-lg-4::before, .pr-lg-4 body.themedesignermode.pr-lg-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44094,7 +44094,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-4::before, .pl-lg-4 body.behat-site.pl-lg-4::before, body.themedesignermode .pl-lg-4::before, .pl-lg-4 body.themedesignermode.pl-lg-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44112,7 +44112,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-5::before, .pr-lg-5 body.behat-site.pr-lg-5::before, body.themedesignermode .pr-lg-5::before, .pr-lg-5 body.themedesignermode.pr-lg-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44130,7 +44130,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-5::before, .pl-lg-5 body.behat-site.pl-lg-5::before, body.themedesignermode .pl-lg-5::before, .pl-lg-5 body.themedesignermode.pl-lg-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44148,7 +44148,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-6::before, .pr-lg-6 body.behat-site.pr-lg-6::before, body.themedesignermode .pr-lg-6::before, .pr-lg-6 body.themedesignermode.pr-lg-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44166,7 +44166,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-6::before, .pl-lg-6 body.behat-site.pl-lg-6::before, body.themedesignermode .pl-lg-6::before, .pl-lg-6 body.themedesignermode.pl-lg-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44184,7 +44184,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n1::before, .mr-lg-n1 body.behat-site.mr-lg-n1::before, body.themedesignermode .mr-lg-n1::before, .mr-lg-n1 body.themedesignermode.mr-lg-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44202,7 +44202,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n1::before, .ml-lg-n1 body.behat-site.ml-lg-n1::before, body.themedesignermode .ml-lg-n1::before, .ml-lg-n1 body.themedesignermode.ml-lg-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44220,7 +44220,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n2::before, .mr-lg-n2 body.behat-site.mr-lg-n2::before, body.themedesignermode .mr-lg-n2::before, .mr-lg-n2 body.themedesignermode.mr-lg-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44238,7 +44238,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n2::before, .ml-lg-n2 body.behat-site.ml-lg-n2::before, body.themedesignermode .ml-lg-n2::before, .ml-lg-n2 body.themedesignermode.ml-lg-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44256,7 +44256,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n3::before, .mr-lg-n3 body.behat-site.mr-lg-n3::before, body.themedesignermode .mr-lg-n3::before, .mr-lg-n3 body.themedesignermode.mr-lg-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44274,7 +44274,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n3::before, .ml-lg-n3 body.behat-site.ml-lg-n3::before, body.themedesignermode .ml-lg-n3::before, .ml-lg-n3 body.themedesignermode.ml-lg-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44292,7 +44292,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n4::before, .mr-lg-n4 body.behat-site.mr-lg-n4::before, body.themedesignermode .mr-lg-n4::before, .mr-lg-n4 body.themedesignermode.mr-lg-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44310,7 +44310,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n4::before, .ml-lg-n4 body.behat-site.ml-lg-n4::before, body.themedesignermode .ml-lg-n4::before, .ml-lg-n4 body.themedesignermode.ml-lg-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44328,7 +44328,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n5::before, .mr-lg-n5 body.behat-site.mr-lg-n5::before, body.themedesignermode .mr-lg-n5::before, .mr-lg-n5 body.themedesignermode.mr-lg-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44346,7 +44346,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n5::before, .ml-lg-n5 body.behat-site.ml-lg-n5::before, body.themedesignermode .ml-lg-n5::before, .ml-lg-n5 body.themedesignermode.ml-lg-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44364,7 +44364,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n6::before, .mr-lg-n6 body.behat-site.mr-lg-n6::before, body.themedesignermode .mr-lg-n6::before, .mr-lg-n6 body.themedesignermode.mr-lg-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44382,7 +44382,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n6::before, .ml-lg-n6 body.behat-site.ml-lg-n6::before, body.themedesignermode .ml-lg-n6::before, .ml-lg-n6 body.themedesignermode.ml-lg-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44400,7 +44400,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-auto::before, .mr-lg-auto body.behat-site.mr-lg-auto::before, body.themedesignermode .mr-lg-auto::before, .mr-lg-auto body.themedesignermode.mr-lg-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44418,7 +44418,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-auto::before, .ml-lg-auto body.behat-site.ml-lg-auto::before, body.themedesignermode .ml-lg-auto::before, .ml-lg-auto body.themedesignermode.ml-lg-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44438,7 +44438,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-0::before, .mr-xl-0 body.behat-site.mr-xl-0::before, body.themedesignermode .mr-xl-0::before, .mr-xl-0 body.themedesignermode.mr-xl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44456,7 +44456,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-0::before, .ml-xl-0 body.behat-site.ml-xl-0::before, body.themedesignermode .ml-xl-0::before, .ml-xl-0 body.themedesignermode.ml-xl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44474,7 +44474,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-1::before, .mr-xl-1 body.behat-site.mr-xl-1::before, body.themedesignermode .mr-xl-1::before, .mr-xl-1 body.themedesignermode.mr-xl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44492,7 +44492,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-1::before, .ml-xl-1 body.behat-site.ml-xl-1::before, body.themedesignermode .ml-xl-1::before, .ml-xl-1 body.themedesignermode.ml-xl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44510,7 +44510,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-2::before, .mr-xl-2 body.behat-site.mr-xl-2::before, body.themedesignermode .mr-xl-2::before, .mr-xl-2 body.themedesignermode.mr-xl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44528,7 +44528,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-2::before, .ml-xl-2 body.behat-site.ml-xl-2::before, body.themedesignermode .ml-xl-2::before, .ml-xl-2 body.themedesignermode.ml-xl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44546,7 +44546,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-3::before, .mr-xl-3 body.behat-site.mr-xl-3::before, body.themedesignermode .mr-xl-3::before, .mr-xl-3 body.themedesignermode.mr-xl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44564,7 +44564,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-3::before, .ml-xl-3 body.behat-site.ml-xl-3::before, body.themedesignermode .ml-xl-3::before, .ml-xl-3 body.themedesignermode.ml-xl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44582,7 +44582,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-4::before, .mr-xl-4 body.behat-site.mr-xl-4::before, body.themedesignermode .mr-xl-4::before, .mr-xl-4 body.themedesignermode.mr-xl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44600,7 +44600,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-4::before, .ml-xl-4 body.behat-site.ml-xl-4::before, body.themedesignermode .ml-xl-4::before, .ml-xl-4 body.themedesignermode.ml-xl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44618,7 +44618,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-5::before, .mr-xl-5 body.behat-site.mr-xl-5::before, body.themedesignermode .mr-xl-5::before, .mr-xl-5 body.themedesignermode.mr-xl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44636,7 +44636,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-5::before, .ml-xl-5 body.behat-site.ml-xl-5::before, body.themedesignermode .ml-xl-5::before, .ml-xl-5 body.themedesignermode.ml-xl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44654,7 +44654,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-6::before, .mr-xl-6 body.behat-site.mr-xl-6::before, body.themedesignermode .mr-xl-6::before, .mr-xl-6 body.themedesignermode.mr-xl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44672,7 +44672,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-6::before, .ml-xl-6 body.behat-site.ml-xl-6::before, body.themedesignermode .ml-xl-6::before, .ml-xl-6 body.themedesignermode.ml-xl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44690,7 +44690,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-0::before, .pr-xl-0 body.behat-site.pr-xl-0::before, body.themedesignermode .pr-xl-0::before, .pr-xl-0 body.themedesignermode.pr-xl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44708,7 +44708,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-0::before, .pl-xl-0 body.behat-site.pl-xl-0::before, body.themedesignermode .pl-xl-0::before, .pl-xl-0 body.themedesignermode.pl-xl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44726,7 +44726,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-1::before, .pr-xl-1 body.behat-site.pr-xl-1::before, body.themedesignermode .pr-xl-1::before, .pr-xl-1 body.themedesignermode.pr-xl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44744,7 +44744,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-1::before, .pl-xl-1 body.behat-site.pl-xl-1::before, body.themedesignermode .pl-xl-1::before, .pl-xl-1 body.themedesignermode.pl-xl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44762,7 +44762,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-2::before, .pr-xl-2 body.behat-site.pr-xl-2::before, body.themedesignermode .pr-xl-2::before, .pr-xl-2 body.themedesignermode.pr-xl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44780,7 +44780,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-2::before, .pl-xl-2 body.behat-site.pl-xl-2::before, body.themedesignermode .pl-xl-2::before, .pl-xl-2 body.themedesignermode.pl-xl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44798,7 +44798,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-3::before, .pr-xl-3 body.behat-site.pr-xl-3::before, body.themedesignermode .pr-xl-3::before, .pr-xl-3 body.themedesignermode.pr-xl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44816,7 +44816,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-3::before, .pl-xl-3 body.behat-site.pl-xl-3::before, body.themedesignermode .pl-xl-3::before, .pl-xl-3 body.themedesignermode.pl-xl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44834,7 +44834,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-4::before, .pr-xl-4 body.behat-site.pr-xl-4::before, body.themedesignermode .pr-xl-4::before, .pr-xl-4 body.themedesignermode.pr-xl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44852,7 +44852,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-4::before, .pl-xl-4 body.behat-site.pl-xl-4::before, body.themedesignermode .pl-xl-4::before, .pl-xl-4 body.themedesignermode.pl-xl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44870,7 +44870,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-5::before, .pr-xl-5 body.behat-site.pr-xl-5::before, body.themedesignermode .pr-xl-5::before, .pr-xl-5 body.themedesignermode.pr-xl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44888,7 +44888,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-5::before, .pl-xl-5 body.behat-site.pl-xl-5::before, body.themedesignermode .pl-xl-5::before, .pl-xl-5 body.themedesignermode.pl-xl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44906,7 +44906,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-6::before, .pr-xl-6 body.behat-site.pr-xl-6::before, body.themedesignermode .pr-xl-6::before, .pr-xl-6 body.themedesignermode.pr-xl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44924,7 +44924,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-6::before, .pl-xl-6 body.behat-site.pl-xl-6::before, body.themedesignermode .pl-xl-6::before, .pl-xl-6 body.themedesignermode.pl-xl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44942,7 +44942,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n1::before, .mr-xl-n1 body.behat-site.mr-xl-n1::before, body.themedesignermode .mr-xl-n1::before, .mr-xl-n1 body.themedesignermode.mr-xl-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44960,7 +44960,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n1::before, .ml-xl-n1 body.behat-site.ml-xl-n1::before, body.themedesignermode .ml-xl-n1::before, .ml-xl-n1 body.themedesignermode.ml-xl-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44978,7 +44978,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n2::before, .mr-xl-n2 body.behat-site.mr-xl-n2::before, body.themedesignermode .mr-xl-n2::before, .mr-xl-n2 body.themedesignermode.mr-xl-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44996,7 +44996,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n2::before, .ml-xl-n2 body.behat-site.ml-xl-n2::before, body.themedesignermode .ml-xl-n2::before, .ml-xl-n2 body.themedesignermode.ml-xl-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45014,7 +45014,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n3::before, .mr-xl-n3 body.behat-site.mr-xl-n3::before, body.themedesignermode .mr-xl-n3::before, .mr-xl-n3 body.themedesignermode.mr-xl-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45032,7 +45032,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n3::before, .ml-xl-n3 body.behat-site.ml-xl-n3::before, body.themedesignermode .ml-xl-n3::before, .ml-xl-n3 body.themedesignermode.ml-xl-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45050,7 +45050,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n4::before, .mr-xl-n4 body.behat-site.mr-xl-n4::before, body.themedesignermode .mr-xl-n4::before, .mr-xl-n4 body.themedesignermode.mr-xl-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45068,7 +45068,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n4::before, .ml-xl-n4 body.behat-site.ml-xl-n4::before, body.themedesignermode .ml-xl-n4::before, .ml-xl-n4 body.themedesignermode.ml-xl-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45086,7 +45086,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n5::before, .mr-xl-n5 body.behat-site.mr-xl-n5::before, body.themedesignermode .mr-xl-n5::before, .mr-xl-n5 body.themedesignermode.mr-xl-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45104,7 +45104,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n5::before, .ml-xl-n5 body.behat-site.ml-xl-n5::before, body.themedesignermode .ml-xl-n5::before, .ml-xl-n5 body.themedesignermode.ml-xl-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45122,7 +45122,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n6::before, .mr-xl-n6 body.behat-site.mr-xl-n6::before, body.themedesignermode .mr-xl-n6::before, .mr-xl-n6 body.themedesignermode.mr-xl-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45140,7 +45140,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n6::before, .ml-xl-n6 body.behat-site.ml-xl-n6::before, body.themedesignermode .ml-xl-n6::before, .ml-xl-n6 body.themedesignermode.ml-xl-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45158,7 +45158,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-auto::before, .mr-xl-auto body.behat-site.mr-xl-auto::before, body.themedesignermode .mr-xl-auto::before, .mr-xl-auto body.themedesignermode.mr-xl-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45176,7 +45176,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-auto::before, .ml-xl-auto body.behat-site.ml-xl-auto::before, body.themedesignermode .ml-xl-auto::before, .ml-xl-auto body.themedesignermode.ml-xl-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45196,7 +45196,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-0::before, .mr-xxl-0 body.behat-site.mr-xxl-0::before, body.themedesignermode .mr-xxl-0::before, .mr-xxl-0 body.themedesignermode.mr-xxl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45214,7 +45214,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-0::before, .ml-xxl-0 body.behat-site.ml-xxl-0::before, body.themedesignermode .ml-xxl-0::before, .ml-xxl-0 body.themedesignermode.ml-xxl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45232,7 +45232,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-1::before, .mr-xxl-1 body.behat-site.mr-xxl-1::before, body.themedesignermode .mr-xxl-1::before, .mr-xxl-1 body.themedesignermode.mr-xxl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45250,7 +45250,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-1::before, .ml-xxl-1 body.behat-site.ml-xxl-1::before, body.themedesignermode .ml-xxl-1::before, .ml-xxl-1 body.themedesignermode.ml-xxl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45268,7 +45268,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-2::before, .mr-xxl-2 body.behat-site.mr-xxl-2::before, body.themedesignermode .mr-xxl-2::before, .mr-xxl-2 body.themedesignermode.mr-xxl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45286,7 +45286,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-2::before, .ml-xxl-2 body.behat-site.ml-xxl-2::before, body.themedesignermode .ml-xxl-2::before, .ml-xxl-2 body.themedesignermode.ml-xxl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45304,7 +45304,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-3::before, .mr-xxl-3 body.behat-site.mr-xxl-3::before, body.themedesignermode .mr-xxl-3::before, .mr-xxl-3 body.themedesignermode.mr-xxl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45322,7 +45322,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-3::before, .ml-xxl-3 body.behat-site.ml-xxl-3::before, body.themedesignermode .ml-xxl-3::before, .ml-xxl-3 body.themedesignermode.ml-xxl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45340,7 +45340,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-4::before, .mr-xxl-4 body.behat-site.mr-xxl-4::before, body.themedesignermode .mr-xxl-4::before, .mr-xxl-4 body.themedesignermode.mr-xxl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45358,7 +45358,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-4::before, .ml-xxl-4 body.behat-site.ml-xxl-4::before, body.themedesignermode .ml-xxl-4::before, .ml-xxl-4 body.themedesignermode.ml-xxl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45376,7 +45376,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-5::before, .mr-xxl-5 body.behat-site.mr-xxl-5::before, body.themedesignermode .mr-xxl-5::before, .mr-xxl-5 body.themedesignermode.mr-xxl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45394,7 +45394,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-5::before, .ml-xxl-5 body.behat-site.ml-xxl-5::before, body.themedesignermode .ml-xxl-5::before, .ml-xxl-5 body.themedesignermode.ml-xxl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45412,7 +45412,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-6::before, .mr-xxl-6 body.behat-site.mr-xxl-6::before, body.themedesignermode .mr-xxl-6::before, .mr-xxl-6 body.themedesignermode.mr-xxl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45430,7 +45430,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-6::before, .ml-xxl-6 body.behat-site.ml-xxl-6::before, body.themedesignermode .ml-xxl-6::before, .ml-xxl-6 body.themedesignermode.ml-xxl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45448,7 +45448,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-0::before, .pr-xxl-0 body.behat-site.pr-xxl-0::before, body.themedesignermode .pr-xxl-0::before, .pr-xxl-0 body.themedesignermode.pr-xxl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45466,7 +45466,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-0::before, .pl-xxl-0 body.behat-site.pl-xxl-0::before, body.themedesignermode .pl-xxl-0::before, .pl-xxl-0 body.themedesignermode.pl-xxl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45484,7 +45484,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-1::before, .pr-xxl-1 body.behat-site.pr-xxl-1::before, body.themedesignermode .pr-xxl-1::before, .pr-xxl-1 body.themedesignermode.pr-xxl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45502,7 +45502,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-1::before, .pl-xxl-1 body.behat-site.pl-xxl-1::before, body.themedesignermode .pl-xxl-1::before, .pl-xxl-1 body.themedesignermode.pl-xxl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45520,7 +45520,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-2::before, .pr-xxl-2 body.behat-site.pr-xxl-2::before, body.themedesignermode .pr-xxl-2::before, .pr-xxl-2 body.themedesignermode.pr-xxl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45538,7 +45538,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-2::before, .pl-xxl-2 body.behat-site.pl-xxl-2::before, body.themedesignermode .pl-xxl-2::before, .pl-xxl-2 body.themedesignermode.pl-xxl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45556,7 +45556,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-3::before, .pr-xxl-3 body.behat-site.pr-xxl-3::before, body.themedesignermode .pr-xxl-3::before, .pr-xxl-3 body.themedesignermode.pr-xxl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45574,7 +45574,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-3::before, .pl-xxl-3 body.behat-site.pl-xxl-3::before, body.themedesignermode .pl-xxl-3::before, .pl-xxl-3 body.themedesignermode.pl-xxl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45592,7 +45592,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-4::before, .pr-xxl-4 body.behat-site.pr-xxl-4::before, body.themedesignermode .pr-xxl-4::before, .pr-xxl-4 body.themedesignermode.pr-xxl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45610,7 +45610,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-4::before, .pl-xxl-4 body.behat-site.pl-xxl-4::before, body.themedesignermode .pl-xxl-4::before, .pl-xxl-4 body.themedesignermode.pl-xxl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45628,7 +45628,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-5::before, .pr-xxl-5 body.behat-site.pr-xxl-5::before, body.themedesignermode .pr-xxl-5::before, .pr-xxl-5 body.themedesignermode.pr-xxl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45646,7 +45646,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-5::before, .pl-xxl-5 body.behat-site.pl-xxl-5::before, body.themedesignermode .pl-xxl-5::before, .pl-xxl-5 body.themedesignermode.pl-xxl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45664,7 +45664,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-6::before, .pr-xxl-6 body.behat-site.pr-xxl-6::before, body.themedesignermode .pr-xxl-6::before, .pr-xxl-6 body.themedesignermode.pr-xxl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45682,7 +45682,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-6::before, .pl-xxl-6 body.behat-site.pl-xxl-6::before, body.themedesignermode .pl-xxl-6::before, .pl-xxl-6 body.themedesignermode.pl-xxl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45700,7 +45700,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n1::before, .mr-xxl-n1 body.behat-site.mr-xxl-n1::before, body.themedesignermode .mr-xxl-n1::before, .mr-xxl-n1 body.themedesignermode.mr-xxl-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45718,7 +45718,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n1::before, .ml-xxl-n1 body.behat-site.ml-xxl-n1::before, body.themedesignermode .ml-xxl-n1::before, .ml-xxl-n1 body.themedesignermode.ml-xxl-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45736,7 +45736,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n2::before, .mr-xxl-n2 body.behat-site.mr-xxl-n2::before, body.themedesignermode .mr-xxl-n2::before, .mr-xxl-n2 body.themedesignermode.mr-xxl-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45754,7 +45754,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n2::before, .ml-xxl-n2 body.behat-site.ml-xxl-n2::before, body.themedesignermode .ml-xxl-n2::before, .ml-xxl-n2 body.themedesignermode.ml-xxl-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45772,7 +45772,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n3::before, .mr-xxl-n3 body.behat-site.mr-xxl-n3::before, body.themedesignermode .mr-xxl-n3::before, .mr-xxl-n3 body.themedesignermode.mr-xxl-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45790,7 +45790,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n3::before, .ml-xxl-n3 body.behat-site.ml-xxl-n3::before, body.themedesignermode .ml-xxl-n3::before, .ml-xxl-n3 body.themedesignermode.ml-xxl-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45808,7 +45808,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n4::before, .mr-xxl-n4 body.behat-site.mr-xxl-n4::before, body.themedesignermode .mr-xxl-n4::before, .mr-xxl-n4 body.themedesignermode.mr-xxl-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45826,7 +45826,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n4::before, .ml-xxl-n4 body.behat-site.ml-xxl-n4::before, body.themedesignermode .ml-xxl-n4::before, .ml-xxl-n4 body.themedesignermode.ml-xxl-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45844,7 +45844,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n5::before, .mr-xxl-n5 body.behat-site.mr-xxl-n5::before, body.themedesignermode .mr-xxl-n5::before, .mr-xxl-n5 body.themedesignermode.mr-xxl-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45862,7 +45862,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n5::before, .ml-xxl-n5 body.behat-site.ml-xxl-n5::before, body.themedesignermode .ml-xxl-n5::before, .ml-xxl-n5 body.themedesignermode.ml-xxl-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45880,7 +45880,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n6::before, .mr-xxl-n6 body.behat-site.mr-xxl-n6::before, body.themedesignermode .mr-xxl-n6::before, .mr-xxl-n6 body.themedesignermode.mr-xxl-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45898,7 +45898,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n6::before, .ml-xxl-n6 body.behat-site.ml-xxl-n6::before, body.themedesignermode .ml-xxl-n6::before, .ml-xxl-n6 body.themedesignermode.ml-xxl-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45916,7 +45916,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-auto::before, .mr-xxl-auto body.behat-site.mr-xxl-auto::before, body.themedesignermode .mr-xxl-auto::before, .mr-xxl-auto body.themedesignermode.mr-xxl-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45934,7 +45934,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-auto::before, .ml-xxl-auto body.behat-site.ml-xxl-auto::before, body.themedesignermode .ml-xxl-auto::before, .ml-xxl-auto body.themedesignermode.ml-xxl-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45953,7 +45953,7 @@ body.behat-site .text-left, body.behat-site .text-left::before, .text-left body.behat-site.text-left::before, body.themedesignermode .text-left::before, .text-left body.themedesignermode.text-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45972,7 +45972,7 @@ body.behat-site .text-right, body.behat-site .text-right::before, .text-right body.behat-site.text-right::before, body.themedesignermode .text-right::before, .text-right body.themedesignermode.text-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45992,7 +45992,7 @@ body.behat-site .text-right::before, body.behat-site .text-sm-left::before, .text-sm-left body.behat-site.text-sm-left::before, body.themedesignermode .text-sm-left::before, .text-sm-left body.themedesignermode.text-sm-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46010,7 +46010,7 @@ body.behat-site .text-right::before, body.behat-site .text-sm-right::before, .text-sm-right body.behat-site.text-sm-right::before, body.themedesignermode .text-sm-right::before, .text-sm-right body.themedesignermode.text-sm-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46030,7 +46030,7 @@ body.behat-site .text-right::before, body.behat-site .text-md-left::before, .text-md-left body.behat-site.text-md-left::before, body.themedesignermode .text-md-left::before, .text-md-left body.themedesignermode.text-md-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46048,7 +46048,7 @@ body.behat-site .text-right::before, body.behat-site .text-md-right::before, .text-md-right body.behat-site.text-md-right::before, body.themedesignermode .text-md-right::before, .text-md-right body.themedesignermode.text-md-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46068,7 +46068,7 @@ body.behat-site .text-right::before, body.behat-site .text-lg-left::before, .text-lg-left body.behat-site.text-lg-left::before, body.themedesignermode .text-lg-left::before, .text-lg-left body.themedesignermode.text-lg-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46086,7 +46086,7 @@ body.behat-site .text-right::before, body.behat-site .text-lg-right::before, .text-lg-right body.behat-site.text-lg-right::before, body.themedesignermode .text-lg-right::before, .text-lg-right body.themedesignermode.text-lg-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46106,7 +46106,7 @@ body.behat-site .text-right::before, body.behat-site .text-xl-left::before, .text-xl-left body.behat-site.text-xl-left::before, body.themedesignermode .text-xl-left::before, .text-xl-left body.themedesignermode.text-xl-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46124,7 +46124,7 @@ body.behat-site .text-right::before, body.behat-site .text-xl-right::before, .text-xl-right body.behat-site.text-xl-right::before, body.themedesignermode .text-xl-right::before, .text-xl-right body.themedesignermode.text-xl-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46144,7 +46144,7 @@ body.behat-site .text-right::before, body.behat-site .text-xxl-left::before, .text-xxl-left body.behat-site.text-xxl-left::before, body.themedesignermode .text-xxl-left::before, .text-xxl-left body.themedesignermode.text-xxl-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46162,7 +46162,7 @@ body.behat-site .text-right::before, body.behat-site .text-xxl-right::before, .text-xxl-right body.behat-site.text-xxl-right::before, body.themedesignermode .text-xxl-right::before, .text-xxl-right body.themedesignermode.text-xxl-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46181,7 +46181,7 @@ body.behat-site .border-right, body.behat-site .border-right::before, .border-right body.behat-site.border-right::before, body.themedesignermode .border-right::before, .border-right body.themedesignermode.border-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.border-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46200,7 +46200,7 @@ body.behat-site .border-left, body.behat-site .border-left::before, .border-left body.behat-site.border-left::before, body.themedesignermode .border-left::before, .border-left body.themedesignermode.border-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.border-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46219,7 +46219,7 @@ body.behat-site .border-right-0, body.behat-site .border-right-0::before, .border-right-0 body.behat-site.border-right-0::before, body.themedesignermode .border-right-0::before, .border-right-0 body.themedesignermode.border-right-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.border-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46238,7 +46238,7 @@ body.behat-site .border-left-0, body.behat-site .border-left-0::before, .border-left-0 body.behat-site.border-left-0::before, body.themedesignermode .border-left-0::before, .border-left-0 body.themedesignermode.border-left-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.border-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46258,7 +46258,7 @@ body.behat-site .rounded-right, body.behat-site .rounded-right::before, .rounded-right body.behat-site.rounded-right::before, body.themedesignermode .rounded-right::before, .rounded-right body.themedesignermode.rounded-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.rounded-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46278,7 +46278,7 @@ body.behat-site .rounded-left, body.behat-site .rounded-left::before, .rounded-left body.behat-site.rounded-left::before, body.themedesignermode .rounded-left::before, .rounded-left body.themedesignermode.rounded-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.rounded-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46297,7 +46297,7 @@ body.behat-site .float-left, body.behat-site .float-left::before, .float-left body.behat-site.float-left::before, body.themedesignermode .float-left::before, .float-left body.themedesignermode.float-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46316,7 +46316,7 @@ body.behat-site .float-right, body.behat-site .float-right::before, .float-right body.behat-site.float-right::before, body.themedesignermode .float-right::before, .float-right body.themedesignermode.float-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46336,7 +46336,7 @@ body.behat-site .float-right::before, body.behat-site .float-sm-left::before, .float-sm-left body.behat-site.float-sm-left::before, body.themedesignermode .float-sm-left::before, .float-sm-left body.themedesignermode.float-sm-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46354,7 +46354,7 @@ body.behat-site .float-right::before, body.behat-site .float-sm-right::before, .float-sm-right body.behat-site.float-sm-right::before, body.themedesignermode .float-sm-right::before, .float-sm-right body.themedesignermode.float-sm-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46374,7 +46374,7 @@ body.behat-site .float-right::before, body.behat-site .float-md-left::before, .float-md-left body.behat-site.float-md-left::before, body.themedesignermode .float-md-left::before, .float-md-left body.themedesignermode.float-md-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46392,7 +46392,7 @@ body.behat-site .float-right::before, body.behat-site .float-md-right::before, .float-md-right body.behat-site.float-md-right::before, body.themedesignermode .float-md-right::before, .float-md-right body.themedesignermode.float-md-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46412,7 +46412,7 @@ body.behat-site .float-right::before, body.behat-site .float-lg-left::before, .float-lg-left body.behat-site.float-lg-left::before, body.themedesignermode .float-lg-left::before, .float-lg-left body.themedesignermode.float-lg-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46430,7 +46430,7 @@ body.behat-site .float-right::before, body.behat-site .float-lg-right::before, .float-lg-right body.behat-site.float-lg-right::before, body.themedesignermode .float-lg-right::before, .float-lg-right body.themedesignermode.float-lg-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46450,7 +46450,7 @@ body.behat-site .float-right::before, body.behat-site .float-xl-left::before, .float-xl-left body.behat-site.float-xl-left::before, body.themedesignermode .float-xl-left::before, .float-xl-left body.themedesignermode.float-xl-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46468,7 +46468,7 @@ body.behat-site .float-right::before, body.behat-site .float-xl-right::before, .float-xl-right body.behat-site.float-xl-right::before, body.themedesignermode .float-xl-right::before, .float-xl-right body.themedesignermode.float-xl-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46488,7 +46488,7 @@ body.behat-site .float-right::before, body.behat-site .float-xxl-left::before, .float-xxl-left body.behat-site.float-xxl-left::before, body.themedesignermode .float-xxl-left::before, .float-xxl-left body.themedesignermode.float-xxl-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46506,7 +46506,7 @@ body.behat-site .float-right::before, body.behat-site .float-xxl-right::before, .float-xxl-right body.behat-site.float-xxl-right::before, body.themedesignermode .float-xxl-right::before, .float-xxl-right body.themedesignermode.float-xxl-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46557,7 +46557,7 @@ body.behat-site .font-weight-light, body.behat-site .font-weight-light::before, .font-weight-light body.behat-site.font-weight-light::before, body.themedesignermode .font-weight-light::before, .font-weight-light body.themedesignermode.font-weight-light::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46576,7 +46576,7 @@ body.behat-site .font-weight-lighter, body.behat-site .font-weight-lighter::before, .font-weight-lighter body.behat-site.font-weight-lighter::before, body.themedesignermode .font-weight-lighter::before, .font-weight-lighter body.themedesignermode.font-weight-lighter::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46595,7 +46595,7 @@ body.behat-site .font-weight-normal, body.behat-site .font-weight-normal::before, .font-weight-normal body.behat-site.font-weight-normal::before, body.themedesignermode .font-weight-normal::before, .font-weight-normal body.themedesignermode.font-weight-normal::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46614,7 +46614,7 @@ body.behat-site .font-weight-bold, body.behat-site .font-weight-bold::before, .font-weight-bold body.behat-site.font-weight-bold::before, body.themedesignermode .font-weight-bold::before, .font-weight-bold body.themedesignermode.font-weight-bold::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46633,7 +46633,7 @@ body.behat-site .font-weight-bolder, body.behat-site .font-weight-bolder::before, .font-weight-bolder body.behat-site.font-weight-bolder::before, body.themedesignermode .font-weight-bolder::before, .font-weight-bolder body.themedesignermode.font-weight-bolder::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46652,7 +46652,7 @@ body.behat-site .font-italic, body.behat-site .font-italic::before, .font-italic body.behat-site.font-italic::before, body.themedesignermode .font-italic::before, .font-italic body.themedesignermode.font-italic::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46671,7 +46671,7 @@ body.behat-site .rounded-sm, body.behat-site .rounded-sm::before, .rounded-sm body.behat-site.rounded-sm::before, body.themedesignermode .rounded-sm::before, .rounded-sm body.themedesignermode.rounded-sm::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.rounded-sm)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46690,7 +46690,7 @@ body.behat-site .rounded-lg, body.behat-site .rounded-lg::before, .rounded-lg body.behat-site.rounded-lg::before, body.themedesignermode .rounded-lg::before, .rounded-lg body.themedesignermode.rounded-lg::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.rounded-lg)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46717,7 +46717,7 @@ body.behat-site .sr-only, body.behat-site .sr-only::before, .sr-only body.behat-site.sr-only::before, body.themedesignermode .sr-only::before, .sr-only body.themedesignermode.sr-only::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.sr-only)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46735,7 +46735,7 @@ body.behat-site .sr-only-focusable, body.behat-site .sr-only-focusable::before, .sr-only-focusable body.behat-site.sr-only-focusable::before, body.themedesignermode .sr-only-focusable::before, .sr-only-focusable body.themedesignermode.sr-only-focusable::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.sr-only-focusable)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46834,7 +46834,7 @@ body.behat-site .custom-checkbox, body.behat-site .custom-checkbox::before, .custom-checkbox body.behat-site.custom-checkbox::before, body.themedesignermode .custom-checkbox::before, .custom-checkbox body.themedesignermode.custom-checkbox::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-checkbox)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46871,7 +46871,7 @@ body.behat-site .custom-radio, body.behat-site .custom-radio::before, .custom-radio body.behat-site.custom-radio::before, body.themedesignermode .custom-radio::before, .custom-radio body.themedesignermode.custom-radio::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-radio)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46899,7 +46899,7 @@ body.behat-site .custom-switch, body.behat-site .custom-switch::before, .custom-switch body.behat-site.custom-switch::before, body.themedesignermode .custom-switch::before, .custom-switch body.themedesignermode.custom-switch::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-switch)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46957,7 +46957,7 @@ body.behat-site .custom-select, body.behat-site .custom-select::before, .custom-select body.behat-site.custom-select::before, body.themedesignermode .custom-select::before, .custom-select body.themedesignermode.custom-select::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-select)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -47021,7 +47021,7 @@ body.behat-site .custom-file, body.behat-site .custom-file::before, .custom-file body.behat-site.custom-file::before, body.themedesignermode .custom-file::before, .custom-file body.themedesignermode.custom-file::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-file)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -47100,7 +47100,7 @@ body.behat-site .custom-range, body.behat-site .custom-range::before, .custom-range body.behat-site.custom-range::before, body.themedesignermode .custom-range::before, .custom-range body.themedesignermode.custom-range::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-range)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -47254,7 +47254,7 @@ body.behat-site .btn-block, body.behat-site .btn-block::before, .btn-block body.behat-site.btn-block::before, body.themedesignermode .btn-block::before, .btn-block body.themedesignermode.btn-block::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.btn-block)" !important; color: #ca3120 !important; font-size: smaller !important; } diff --git a/theme/classic/style/moodle.css b/theme/classic/style/moodle.css index f4f560c35ed..6360dc1d708 100644 --- a/theme/classic/style/moodle.css +++ b/theme/classic/style/moodle.css @@ -40842,7 +40842,7 @@ body.behat-site .course-content .stateready .section .spinner, body.behat-site .course-content .stateready .section .spinner::before, .course-content .stateready .section .spinner body.behat-site.course-content .stateready .section .spinner::before, body.themedesignermode .course-content .stateready .section .spinner::before, .course-content .stateready .section .spinner body.themedesignermode.course-content .stateready .section .spinner::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.course-content .stateready .section .spinner)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40865,7 +40865,7 @@ body.behat-site .media, body.behat-site .media::before, .media body.behat-site.media::before, body.themedesignermode .media::before, .media body.themedesignermode.media::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.media)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40884,7 +40884,7 @@ body.behat-site .media-body, body.behat-site .media-body::before, .media-body body.behat-site.media-body::before, body.themedesignermode .media-body::before, .media-body body.themedesignermode.media-body::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.media-body)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40904,7 +40904,7 @@ body.behat-site .badge-primary, body.behat-site .badge-primary::before, .badge-primary body.behat-site.badge-primary::before, body.themedesignermode .badge-primary::before, .badge-primary body.themedesignermode.badge-primary::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-primary)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40932,7 +40932,7 @@ body.behat-site .badge-secondary, body.behat-site .badge-secondary::before, .badge-secondary body.behat-site.badge-secondary::before, body.themedesignermode .badge-secondary::before, .badge-secondary body.themedesignermode.badge-secondary::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-secondary)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40960,7 +40960,7 @@ body.behat-site .badge-success, body.behat-site .badge-success::before, .badge-success body.behat-site.badge-success::before, body.themedesignermode .badge-success::before, .badge-success body.themedesignermode.badge-success::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-success)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -40988,7 +40988,7 @@ body.behat-site .badge-info, body.behat-site .badge-info::before, .badge-info body.behat-site.badge-info::before, body.themedesignermode .badge-info::before, .badge-info body.themedesignermode.badge-info::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-info)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41016,7 +41016,7 @@ body.behat-site .badge-warning, body.behat-site .badge-warning::before, .badge-warning body.behat-site.badge-warning::before, body.themedesignermode .badge-warning::before, .badge-warning body.themedesignermode.badge-warning::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-warning)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41044,7 +41044,7 @@ body.behat-site .badge-danger, body.behat-site .badge-danger::before, .badge-danger body.behat-site.badge-danger::before, body.themedesignermode .badge-danger::before, .badge-danger body.themedesignermode.badge-danger::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-danger)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41072,7 +41072,7 @@ body.behat-site .badge-light, body.behat-site .badge-light::before, .badge-light body.behat-site.badge-light::before, body.themedesignermode .badge-light::before, .badge-light body.themedesignermode.badge-light::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-light)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41100,7 +41100,7 @@ body.behat-site .badge-dark, body.behat-site .badge-dark::before, .badge-dark body.behat-site.badge-dark::before, body.themedesignermode .badge-dark::before, .badge-dark body.themedesignermode.badge-dark::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-dark)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41129,7 +41129,7 @@ body.behat-site .badge-pill, body.behat-site .badge-pill::before, .badge-pill body.behat-site.badge-pill::before, body.themedesignermode .badge-pill::before, .badge-pill body.themedesignermode.badge-pill::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.badge-pill)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41148,7 +41148,7 @@ body.behat-site .form-group, body.behat-site .form-group::before, .form-group body.behat-site.form-group::before, body.themedesignermode .form-group::before, .form-group body.themedesignermode.form-group::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.form-group)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41169,7 +41169,7 @@ body.behat-site .form-inline, body.behat-site .form-inline::before, .form-inline body.behat-site.form-inline::before, body.themedesignermode .form-inline::before, .form-inline body.themedesignermode.form-inline::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.form-inline)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41238,7 +41238,7 @@ body.behat-site .card-deck, body.behat-site .card-deck::before, .card-deck body.behat-site.card-deck::before, body.themedesignermode .card-deck::before, .card-deck body.themedesignermode.card-deck::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.card-deck)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41275,7 +41275,7 @@ body.behat-site .no-gutters, body.behat-site .no-gutters::before, .no-gutters body.behat-site.no-gutters::before, body.themedesignermode .no-gutters::before, .no-gutters body.themedesignermode.no-gutters::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.no-gutters)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41299,7 +41299,7 @@ body.behat-site .mr-0, body.behat-site .mr-0::before, .mr-0 body.behat-site.mr-0::before, body.themedesignermode .mr-0::before, .mr-0 body.themedesignermode.mr-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41318,7 +41318,7 @@ body.behat-site .ml-0, body.behat-site .ml-0::before, .ml-0 body.behat-site.ml-0::before, body.themedesignermode .ml-0::before, .ml-0 body.themedesignermode.ml-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41337,7 +41337,7 @@ body.behat-site .mr-1, body.behat-site .mr-1::before, .mr-1 body.behat-site.mr-1::before, body.themedesignermode .mr-1::before, .mr-1 body.themedesignermode.mr-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41356,7 +41356,7 @@ body.behat-site .ml-1, body.behat-site .ml-1::before, .ml-1 body.behat-site.ml-1::before, body.themedesignermode .ml-1::before, .ml-1 body.themedesignermode.ml-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41375,7 +41375,7 @@ body.behat-site .mr-2, body.behat-site .mr-2::before, .mr-2 body.behat-site.mr-2::before, body.themedesignermode .mr-2::before, .mr-2 body.themedesignermode.mr-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41394,7 +41394,7 @@ body.behat-site .ml-2, body.behat-site .ml-2::before, .ml-2 body.behat-site.ml-2::before, body.themedesignermode .ml-2::before, .ml-2 body.themedesignermode.ml-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41413,7 +41413,7 @@ body.behat-site .mr-3, body.behat-site .mr-3::before, .mr-3 body.behat-site.mr-3::before, body.themedesignermode .mr-3::before, .mr-3 body.themedesignermode.mr-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41432,7 +41432,7 @@ body.behat-site .ml-3, body.behat-site .ml-3::before, .ml-3 body.behat-site.ml-3::before, body.themedesignermode .ml-3::before, .ml-3 body.themedesignermode.ml-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41451,7 +41451,7 @@ body.behat-site .mr-4, body.behat-site .mr-4::before, .mr-4 body.behat-site.mr-4::before, body.themedesignermode .mr-4::before, .mr-4 body.themedesignermode.mr-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41470,7 +41470,7 @@ body.behat-site .ml-4, body.behat-site .ml-4::before, .ml-4 body.behat-site.ml-4::before, body.themedesignermode .ml-4::before, .ml-4 body.themedesignermode.ml-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41489,7 +41489,7 @@ body.behat-site .mr-5, body.behat-site .mr-5::before, .mr-5 body.behat-site.mr-5::before, body.themedesignermode .mr-5::before, .mr-5 body.themedesignermode.mr-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41508,7 +41508,7 @@ body.behat-site .ml-5, body.behat-site .ml-5::before, .ml-5 body.behat-site.ml-5::before, body.themedesignermode .ml-5::before, .ml-5 body.themedesignermode.ml-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41527,7 +41527,7 @@ body.behat-site .mr-6, body.behat-site .mr-6::before, .mr-6 body.behat-site.mr-6::before, body.themedesignermode .mr-6::before, .mr-6 body.themedesignermode.mr-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41546,7 +41546,7 @@ body.behat-site .ml-6, body.behat-site .ml-6::before, .ml-6 body.behat-site.ml-6::before, body.themedesignermode .ml-6::before, .ml-6 body.themedesignermode.ml-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41565,7 +41565,7 @@ body.behat-site .pr-0, body.behat-site .pr-0::before, .pr-0 body.behat-site.pr-0::before, body.themedesignermode .pr-0::before, .pr-0 body.themedesignermode.pr-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41584,7 +41584,7 @@ body.behat-site .pl-0, body.behat-site .pl-0::before, .pl-0 body.behat-site.pl-0::before, body.themedesignermode .pl-0::before, .pl-0 body.themedesignermode.pl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41603,7 +41603,7 @@ body.behat-site .pr-1, body.behat-site .pr-1::before, .pr-1 body.behat-site.pr-1::before, body.themedesignermode .pr-1::before, .pr-1 body.themedesignermode.pr-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41622,7 +41622,7 @@ body.behat-site .pl-1, body.behat-site .pl-1::before, .pl-1 body.behat-site.pl-1::before, body.themedesignermode .pl-1::before, .pl-1 body.themedesignermode.pl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41641,7 +41641,7 @@ body.behat-site .pr-2, body.behat-site .pr-2::before, .pr-2 body.behat-site.pr-2::before, body.themedesignermode .pr-2::before, .pr-2 body.themedesignermode.pr-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41660,7 +41660,7 @@ body.behat-site .pl-2, body.behat-site .pl-2::before, .pl-2 body.behat-site.pl-2::before, body.themedesignermode .pl-2::before, .pl-2 body.themedesignermode.pl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41679,7 +41679,7 @@ body.behat-site .pr-3, body.behat-site .pr-3::before, .pr-3 body.behat-site.pr-3::before, body.themedesignermode .pr-3::before, .pr-3 body.themedesignermode.pr-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41698,7 +41698,7 @@ body.behat-site .pl-3, body.behat-site .pl-3::before, .pl-3 body.behat-site.pl-3::before, body.themedesignermode .pl-3::before, .pl-3 body.themedesignermode.pl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41717,7 +41717,7 @@ body.behat-site .pr-4, body.behat-site .pr-4::before, .pr-4 body.behat-site.pr-4::before, body.themedesignermode .pr-4::before, .pr-4 body.themedesignermode.pr-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41736,7 +41736,7 @@ body.behat-site .pl-4, body.behat-site .pl-4::before, .pl-4 body.behat-site.pl-4::before, body.themedesignermode .pl-4::before, .pl-4 body.themedesignermode.pl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41755,7 +41755,7 @@ body.behat-site .pr-5, body.behat-site .pr-5::before, .pr-5 body.behat-site.pr-5::before, body.themedesignermode .pr-5::before, .pr-5 body.themedesignermode.pr-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41774,7 +41774,7 @@ body.behat-site .pl-5, body.behat-site .pl-5::before, .pl-5 body.behat-site.pl-5::before, body.themedesignermode .pl-5::before, .pl-5 body.themedesignermode.pl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41793,7 +41793,7 @@ body.behat-site .pr-6, body.behat-site .pr-6::before, .pr-6 body.behat-site.pr-6::before, body.themedesignermode .pr-6::before, .pr-6 body.themedesignermode.pr-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41812,7 +41812,7 @@ body.behat-site .pl-6, body.behat-site .pl-6::before, .pl-6 body.behat-site.pl-6::before, body.themedesignermode .pl-6::before, .pl-6 body.themedesignermode.pl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41831,7 +41831,7 @@ body.behat-site .mr-n1, body.behat-site .mr-n1::before, .mr-n1 body.behat-site.mr-n1::before, body.themedesignermode .mr-n1::before, .mr-n1 body.themedesignermode.mr-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41850,7 +41850,7 @@ body.behat-site .ml-n1, body.behat-site .ml-n1::before, .ml-n1 body.behat-site.ml-n1::before, body.themedesignermode .ml-n1::before, .ml-n1 body.themedesignermode.ml-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41869,7 +41869,7 @@ body.behat-site .mr-n2, body.behat-site .mr-n2::before, .mr-n2 body.behat-site.mr-n2::before, body.themedesignermode .mr-n2::before, .mr-n2 body.themedesignermode.mr-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41888,7 +41888,7 @@ body.behat-site .ml-n2, body.behat-site .ml-n2::before, .ml-n2 body.behat-site.ml-n2::before, body.themedesignermode .ml-n2::before, .ml-n2 body.themedesignermode.ml-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41907,7 +41907,7 @@ body.behat-site .mr-n3, body.behat-site .mr-n3::before, .mr-n3 body.behat-site.mr-n3::before, body.themedesignermode .mr-n3::before, .mr-n3 body.themedesignermode.mr-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41926,7 +41926,7 @@ body.behat-site .ml-n3, body.behat-site .ml-n3::before, .ml-n3 body.behat-site.ml-n3::before, body.themedesignermode .ml-n3::before, .ml-n3 body.themedesignermode.ml-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41945,7 +41945,7 @@ body.behat-site .mr-n4, body.behat-site .mr-n4::before, .mr-n4 body.behat-site.mr-n4::before, body.themedesignermode .mr-n4::before, .mr-n4 body.themedesignermode.mr-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41964,7 +41964,7 @@ body.behat-site .ml-n4, body.behat-site .ml-n4::before, .ml-n4 body.behat-site.ml-n4::before, body.themedesignermode .ml-n4::before, .ml-n4 body.themedesignermode.ml-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -41983,7 +41983,7 @@ body.behat-site .mr-n5, body.behat-site .mr-n5::before, .mr-n5 body.behat-site.mr-n5::before, body.themedesignermode .mr-n5::before, .mr-n5 body.themedesignermode.mr-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42002,7 +42002,7 @@ body.behat-site .ml-n5, body.behat-site .ml-n5::before, .ml-n5 body.behat-site.ml-n5::before, body.themedesignermode .ml-n5::before, .ml-n5 body.themedesignermode.ml-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42021,7 +42021,7 @@ body.behat-site .mr-n6, body.behat-site .mr-n6::before, .mr-n6 body.behat-site.mr-n6::before, body.themedesignermode .mr-n6::before, .mr-n6 body.themedesignermode.mr-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42040,7 +42040,7 @@ body.behat-site .ml-n6, body.behat-site .ml-n6::before, .ml-n6 body.behat-site.ml-n6::before, body.themedesignermode .ml-n6::before, .ml-n6 body.themedesignermode.ml-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42059,7 +42059,7 @@ body.behat-site .mr-auto, body.behat-site .mr-auto::before, .mr-auto body.behat-site.mr-auto::before, body.themedesignermode .mr-auto::before, .mr-auto body.themedesignermode.mr-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42078,7 +42078,7 @@ body.behat-site .ml-auto, body.behat-site .ml-auto::before, .ml-auto body.behat-site.ml-auto::before, body.themedesignermode .ml-auto::before, .ml-auto body.themedesignermode.ml-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42098,7 +42098,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-0::before, .mr-sm-0 body.behat-site.mr-sm-0::before, body.themedesignermode .mr-sm-0::before, .mr-sm-0 body.themedesignermode.mr-sm-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42116,7 +42116,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-0::before, .ml-sm-0 body.behat-site.ml-sm-0::before, body.themedesignermode .ml-sm-0::before, .ml-sm-0 body.themedesignermode.ml-sm-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42134,7 +42134,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-1::before, .mr-sm-1 body.behat-site.mr-sm-1::before, body.themedesignermode .mr-sm-1::before, .mr-sm-1 body.themedesignermode.mr-sm-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42152,7 +42152,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-1::before, .ml-sm-1 body.behat-site.ml-sm-1::before, body.themedesignermode .ml-sm-1::before, .ml-sm-1 body.themedesignermode.ml-sm-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42170,7 +42170,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-2::before, .mr-sm-2 body.behat-site.mr-sm-2::before, body.themedesignermode .mr-sm-2::before, .mr-sm-2 body.themedesignermode.mr-sm-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42188,7 +42188,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-2::before, .ml-sm-2 body.behat-site.ml-sm-2::before, body.themedesignermode .ml-sm-2::before, .ml-sm-2 body.themedesignermode.ml-sm-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42206,7 +42206,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-3::before, .mr-sm-3 body.behat-site.mr-sm-3::before, body.themedesignermode .mr-sm-3::before, .mr-sm-3 body.themedesignermode.mr-sm-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42224,7 +42224,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-3::before, .ml-sm-3 body.behat-site.ml-sm-3::before, body.themedesignermode .ml-sm-3::before, .ml-sm-3 body.themedesignermode.ml-sm-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42242,7 +42242,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-4::before, .mr-sm-4 body.behat-site.mr-sm-4::before, body.themedesignermode .mr-sm-4::before, .mr-sm-4 body.themedesignermode.mr-sm-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42260,7 +42260,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-4::before, .ml-sm-4 body.behat-site.ml-sm-4::before, body.themedesignermode .ml-sm-4::before, .ml-sm-4 body.themedesignermode.ml-sm-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42278,7 +42278,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-5::before, .mr-sm-5 body.behat-site.mr-sm-5::before, body.themedesignermode .mr-sm-5::before, .mr-sm-5 body.themedesignermode.mr-sm-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42296,7 +42296,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-5::before, .ml-sm-5 body.behat-site.ml-sm-5::before, body.themedesignermode .ml-sm-5::before, .ml-sm-5 body.themedesignermode.ml-sm-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42314,7 +42314,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-6::before, .mr-sm-6 body.behat-site.mr-sm-6::before, body.themedesignermode .mr-sm-6::before, .mr-sm-6 body.themedesignermode.mr-sm-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42332,7 +42332,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-6::before, .ml-sm-6 body.behat-site.ml-sm-6::before, body.themedesignermode .ml-sm-6::before, .ml-sm-6 body.themedesignermode.ml-sm-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42350,7 +42350,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-0::before, .pr-sm-0 body.behat-site.pr-sm-0::before, body.themedesignermode .pr-sm-0::before, .pr-sm-0 body.themedesignermode.pr-sm-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42368,7 +42368,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-0::before, .pl-sm-0 body.behat-site.pl-sm-0::before, body.themedesignermode .pl-sm-0::before, .pl-sm-0 body.themedesignermode.pl-sm-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42386,7 +42386,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-1::before, .pr-sm-1 body.behat-site.pr-sm-1::before, body.themedesignermode .pr-sm-1::before, .pr-sm-1 body.themedesignermode.pr-sm-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42404,7 +42404,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-1::before, .pl-sm-1 body.behat-site.pl-sm-1::before, body.themedesignermode .pl-sm-1::before, .pl-sm-1 body.themedesignermode.pl-sm-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42422,7 +42422,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-2::before, .pr-sm-2 body.behat-site.pr-sm-2::before, body.themedesignermode .pr-sm-2::before, .pr-sm-2 body.themedesignermode.pr-sm-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42440,7 +42440,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-2::before, .pl-sm-2 body.behat-site.pl-sm-2::before, body.themedesignermode .pl-sm-2::before, .pl-sm-2 body.themedesignermode.pl-sm-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42458,7 +42458,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-3::before, .pr-sm-3 body.behat-site.pr-sm-3::before, body.themedesignermode .pr-sm-3::before, .pr-sm-3 body.themedesignermode.pr-sm-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42476,7 +42476,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-3::before, .pl-sm-3 body.behat-site.pl-sm-3::before, body.themedesignermode .pl-sm-3::before, .pl-sm-3 body.themedesignermode.pl-sm-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42494,7 +42494,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-4::before, .pr-sm-4 body.behat-site.pr-sm-4::before, body.themedesignermode .pr-sm-4::before, .pr-sm-4 body.themedesignermode.pr-sm-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42512,7 +42512,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-4::before, .pl-sm-4 body.behat-site.pl-sm-4::before, body.themedesignermode .pl-sm-4::before, .pl-sm-4 body.themedesignermode.pl-sm-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42530,7 +42530,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-5::before, .pr-sm-5 body.behat-site.pr-sm-5::before, body.themedesignermode .pr-sm-5::before, .pr-sm-5 body.themedesignermode.pr-sm-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42548,7 +42548,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-5::before, .pl-sm-5 body.behat-site.pl-sm-5::before, body.themedesignermode .pl-sm-5::before, .pl-sm-5 body.themedesignermode.pl-sm-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42566,7 +42566,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-sm-6::before, .pr-sm-6 body.behat-site.pr-sm-6::before, body.themedesignermode .pr-sm-6::before, .pr-sm-6 body.themedesignermode.pr-sm-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42584,7 +42584,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-sm-6::before, .pl-sm-6 body.behat-site.pl-sm-6::before, body.themedesignermode .pl-sm-6::before, .pl-sm-6 body.themedesignermode.pl-sm-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42602,7 +42602,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n1::before, .mr-sm-n1 body.behat-site.mr-sm-n1::before, body.themedesignermode .mr-sm-n1::before, .mr-sm-n1 body.themedesignermode.mr-sm-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42620,7 +42620,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n1::before, .ml-sm-n1 body.behat-site.ml-sm-n1::before, body.themedesignermode .ml-sm-n1::before, .ml-sm-n1 body.themedesignermode.ml-sm-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42638,7 +42638,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n2::before, .mr-sm-n2 body.behat-site.mr-sm-n2::before, body.themedesignermode .mr-sm-n2::before, .mr-sm-n2 body.themedesignermode.mr-sm-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42656,7 +42656,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n2::before, .ml-sm-n2 body.behat-site.ml-sm-n2::before, body.themedesignermode .ml-sm-n2::before, .ml-sm-n2 body.themedesignermode.ml-sm-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42674,7 +42674,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n3::before, .mr-sm-n3 body.behat-site.mr-sm-n3::before, body.themedesignermode .mr-sm-n3::before, .mr-sm-n3 body.themedesignermode.mr-sm-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42692,7 +42692,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n3::before, .ml-sm-n3 body.behat-site.ml-sm-n3::before, body.themedesignermode .ml-sm-n3::before, .ml-sm-n3 body.themedesignermode.ml-sm-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42710,7 +42710,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n4::before, .mr-sm-n4 body.behat-site.mr-sm-n4::before, body.themedesignermode .mr-sm-n4::before, .mr-sm-n4 body.themedesignermode.mr-sm-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42728,7 +42728,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n4::before, .ml-sm-n4 body.behat-site.ml-sm-n4::before, body.themedesignermode .ml-sm-n4::before, .ml-sm-n4 body.themedesignermode.ml-sm-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42746,7 +42746,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n5::before, .mr-sm-n5 body.behat-site.mr-sm-n5::before, body.themedesignermode .mr-sm-n5::before, .mr-sm-n5 body.themedesignermode.mr-sm-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42764,7 +42764,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n5::before, .ml-sm-n5 body.behat-site.ml-sm-n5::before, body.themedesignermode .ml-sm-n5::before, .ml-sm-n5 body.themedesignermode.ml-sm-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42782,7 +42782,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-n6::before, .mr-sm-n6 body.behat-site.mr-sm-n6::before, body.themedesignermode .mr-sm-n6::before, .mr-sm-n6 body.themedesignermode.mr-sm-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42800,7 +42800,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-n6::before, .ml-sm-n6 body.behat-site.ml-sm-n6::before, body.themedesignermode .ml-sm-n6::before, .ml-sm-n6 body.themedesignermode.ml-sm-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42818,7 +42818,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-sm-auto::before, .mr-sm-auto body.behat-site.mr-sm-auto::before, body.themedesignermode .mr-sm-auto::before, .mr-sm-auto body.themedesignermode.mr-sm-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42836,7 +42836,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-sm-auto::before, .ml-sm-auto body.behat-site.ml-sm-auto::before, body.themedesignermode .ml-sm-auto::before, .ml-sm-auto body.themedesignermode.ml-sm-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42856,7 +42856,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-0::before, .mr-md-0 body.behat-site.mr-md-0::before, body.themedesignermode .mr-md-0::before, .mr-md-0 body.themedesignermode.mr-md-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42874,7 +42874,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-0::before, .ml-md-0 body.behat-site.ml-md-0::before, body.themedesignermode .ml-md-0::before, .ml-md-0 body.themedesignermode.ml-md-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42892,7 +42892,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-1::before, .mr-md-1 body.behat-site.mr-md-1::before, body.themedesignermode .mr-md-1::before, .mr-md-1 body.themedesignermode.mr-md-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42910,7 +42910,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-1::before, .ml-md-1 body.behat-site.ml-md-1::before, body.themedesignermode .ml-md-1::before, .ml-md-1 body.themedesignermode.ml-md-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42928,7 +42928,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-2::before, .mr-md-2 body.behat-site.mr-md-2::before, body.themedesignermode .mr-md-2::before, .mr-md-2 body.themedesignermode.mr-md-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42946,7 +42946,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-2::before, .ml-md-2 body.behat-site.ml-md-2::before, body.themedesignermode .ml-md-2::before, .ml-md-2 body.themedesignermode.ml-md-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42964,7 +42964,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-3::before, .mr-md-3 body.behat-site.mr-md-3::before, body.themedesignermode .mr-md-3::before, .mr-md-3 body.themedesignermode.mr-md-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -42982,7 +42982,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-3::before, .ml-md-3 body.behat-site.ml-md-3::before, body.themedesignermode .ml-md-3::before, .ml-md-3 body.themedesignermode.ml-md-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43000,7 +43000,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-4::before, .mr-md-4 body.behat-site.mr-md-4::before, body.themedesignermode .mr-md-4::before, .mr-md-4 body.themedesignermode.mr-md-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43018,7 +43018,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-4::before, .ml-md-4 body.behat-site.ml-md-4::before, body.themedesignermode .ml-md-4::before, .ml-md-4 body.themedesignermode.ml-md-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43036,7 +43036,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-5::before, .mr-md-5 body.behat-site.mr-md-5::before, body.themedesignermode .mr-md-5::before, .mr-md-5 body.themedesignermode.mr-md-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43054,7 +43054,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-5::before, .ml-md-5 body.behat-site.ml-md-5::before, body.themedesignermode .ml-md-5::before, .ml-md-5 body.themedesignermode.ml-md-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43072,7 +43072,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-6::before, .mr-md-6 body.behat-site.mr-md-6::before, body.themedesignermode .mr-md-6::before, .mr-md-6 body.themedesignermode.mr-md-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43090,7 +43090,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-6::before, .ml-md-6 body.behat-site.ml-md-6::before, body.themedesignermode .ml-md-6::before, .ml-md-6 body.themedesignermode.ml-md-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43108,7 +43108,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-0::before, .pr-md-0 body.behat-site.pr-md-0::before, body.themedesignermode .pr-md-0::before, .pr-md-0 body.themedesignermode.pr-md-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43126,7 +43126,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-0::before, .pl-md-0 body.behat-site.pl-md-0::before, body.themedesignermode .pl-md-0::before, .pl-md-0 body.themedesignermode.pl-md-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43144,7 +43144,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-1::before, .pr-md-1 body.behat-site.pr-md-1::before, body.themedesignermode .pr-md-1::before, .pr-md-1 body.themedesignermode.pr-md-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43162,7 +43162,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-1::before, .pl-md-1 body.behat-site.pl-md-1::before, body.themedesignermode .pl-md-1::before, .pl-md-1 body.themedesignermode.pl-md-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43180,7 +43180,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-2::before, .pr-md-2 body.behat-site.pr-md-2::before, body.themedesignermode .pr-md-2::before, .pr-md-2 body.themedesignermode.pr-md-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43198,7 +43198,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-2::before, .pl-md-2 body.behat-site.pl-md-2::before, body.themedesignermode .pl-md-2::before, .pl-md-2 body.themedesignermode.pl-md-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43216,7 +43216,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-3::before, .pr-md-3 body.behat-site.pr-md-3::before, body.themedesignermode .pr-md-3::before, .pr-md-3 body.themedesignermode.pr-md-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43234,7 +43234,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-3::before, .pl-md-3 body.behat-site.pl-md-3::before, body.themedesignermode .pl-md-3::before, .pl-md-3 body.themedesignermode.pl-md-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43252,7 +43252,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-4::before, .pr-md-4 body.behat-site.pr-md-4::before, body.themedesignermode .pr-md-4::before, .pr-md-4 body.themedesignermode.pr-md-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43270,7 +43270,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-4::before, .pl-md-4 body.behat-site.pl-md-4::before, body.themedesignermode .pl-md-4::before, .pl-md-4 body.themedesignermode.pl-md-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43288,7 +43288,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-5::before, .pr-md-5 body.behat-site.pr-md-5::before, body.themedesignermode .pr-md-5::before, .pr-md-5 body.themedesignermode.pr-md-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43306,7 +43306,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-5::before, .pl-md-5 body.behat-site.pl-md-5::before, body.themedesignermode .pl-md-5::before, .pl-md-5 body.themedesignermode.pl-md-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43324,7 +43324,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-md-6::before, .pr-md-6 body.behat-site.pr-md-6::before, body.themedesignermode .pr-md-6::before, .pr-md-6 body.themedesignermode.pr-md-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43342,7 +43342,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-md-6::before, .pl-md-6 body.behat-site.pl-md-6::before, body.themedesignermode .pl-md-6::before, .pl-md-6 body.themedesignermode.pl-md-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43360,7 +43360,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n1::before, .mr-md-n1 body.behat-site.mr-md-n1::before, body.themedesignermode .mr-md-n1::before, .mr-md-n1 body.themedesignermode.mr-md-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43378,7 +43378,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n1::before, .ml-md-n1 body.behat-site.ml-md-n1::before, body.themedesignermode .ml-md-n1::before, .ml-md-n1 body.themedesignermode.ml-md-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43396,7 +43396,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n2::before, .mr-md-n2 body.behat-site.mr-md-n2::before, body.themedesignermode .mr-md-n2::before, .mr-md-n2 body.themedesignermode.mr-md-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43414,7 +43414,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n2::before, .ml-md-n2 body.behat-site.ml-md-n2::before, body.themedesignermode .ml-md-n2::before, .ml-md-n2 body.themedesignermode.ml-md-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43432,7 +43432,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n3::before, .mr-md-n3 body.behat-site.mr-md-n3::before, body.themedesignermode .mr-md-n3::before, .mr-md-n3 body.themedesignermode.mr-md-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43450,7 +43450,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n3::before, .ml-md-n3 body.behat-site.ml-md-n3::before, body.themedesignermode .ml-md-n3::before, .ml-md-n3 body.themedesignermode.ml-md-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43468,7 +43468,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n4::before, .mr-md-n4 body.behat-site.mr-md-n4::before, body.themedesignermode .mr-md-n4::before, .mr-md-n4 body.themedesignermode.mr-md-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43486,7 +43486,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n4::before, .ml-md-n4 body.behat-site.ml-md-n4::before, body.themedesignermode .ml-md-n4::before, .ml-md-n4 body.themedesignermode.ml-md-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43504,7 +43504,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n5::before, .mr-md-n5 body.behat-site.mr-md-n5::before, body.themedesignermode .mr-md-n5::before, .mr-md-n5 body.themedesignermode.mr-md-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43522,7 +43522,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n5::before, .ml-md-n5 body.behat-site.ml-md-n5::before, body.themedesignermode .ml-md-n5::before, .ml-md-n5 body.themedesignermode.ml-md-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43540,7 +43540,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-n6::before, .mr-md-n6 body.behat-site.mr-md-n6::before, body.themedesignermode .mr-md-n6::before, .mr-md-n6 body.themedesignermode.mr-md-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43558,7 +43558,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-n6::before, .ml-md-n6 body.behat-site.ml-md-n6::before, body.themedesignermode .ml-md-n6::before, .ml-md-n6 body.themedesignermode.ml-md-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43576,7 +43576,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-md-auto::before, .mr-md-auto body.behat-site.mr-md-auto::before, body.themedesignermode .mr-md-auto::before, .mr-md-auto body.themedesignermode.mr-md-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43594,7 +43594,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-md-auto::before, .ml-md-auto body.behat-site.ml-md-auto::before, body.themedesignermode .ml-md-auto::before, .ml-md-auto body.themedesignermode.ml-md-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43614,7 +43614,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-0::before, .mr-lg-0 body.behat-site.mr-lg-0::before, body.themedesignermode .mr-lg-0::before, .mr-lg-0 body.themedesignermode.mr-lg-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43632,7 +43632,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-0::before, .ml-lg-0 body.behat-site.ml-lg-0::before, body.themedesignermode .ml-lg-0::before, .ml-lg-0 body.themedesignermode.ml-lg-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43650,7 +43650,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-1::before, .mr-lg-1 body.behat-site.mr-lg-1::before, body.themedesignermode .mr-lg-1::before, .mr-lg-1 body.themedesignermode.mr-lg-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43668,7 +43668,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-1::before, .ml-lg-1 body.behat-site.ml-lg-1::before, body.themedesignermode .ml-lg-1::before, .ml-lg-1 body.themedesignermode.ml-lg-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43686,7 +43686,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-2::before, .mr-lg-2 body.behat-site.mr-lg-2::before, body.themedesignermode .mr-lg-2::before, .mr-lg-2 body.themedesignermode.mr-lg-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43704,7 +43704,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-2::before, .ml-lg-2 body.behat-site.ml-lg-2::before, body.themedesignermode .ml-lg-2::before, .ml-lg-2 body.themedesignermode.ml-lg-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43722,7 +43722,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-3::before, .mr-lg-3 body.behat-site.mr-lg-3::before, body.themedesignermode .mr-lg-3::before, .mr-lg-3 body.themedesignermode.mr-lg-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43740,7 +43740,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-3::before, .ml-lg-3 body.behat-site.ml-lg-3::before, body.themedesignermode .ml-lg-3::before, .ml-lg-3 body.themedesignermode.ml-lg-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43758,7 +43758,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-4::before, .mr-lg-4 body.behat-site.mr-lg-4::before, body.themedesignermode .mr-lg-4::before, .mr-lg-4 body.themedesignermode.mr-lg-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43776,7 +43776,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-4::before, .ml-lg-4 body.behat-site.ml-lg-4::before, body.themedesignermode .ml-lg-4::before, .ml-lg-4 body.themedesignermode.ml-lg-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43794,7 +43794,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-5::before, .mr-lg-5 body.behat-site.mr-lg-5::before, body.themedesignermode .mr-lg-5::before, .mr-lg-5 body.themedesignermode.mr-lg-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43812,7 +43812,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-5::before, .ml-lg-5 body.behat-site.ml-lg-5::before, body.themedesignermode .ml-lg-5::before, .ml-lg-5 body.themedesignermode.ml-lg-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43830,7 +43830,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-6::before, .mr-lg-6 body.behat-site.mr-lg-6::before, body.themedesignermode .mr-lg-6::before, .mr-lg-6 body.themedesignermode.mr-lg-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43848,7 +43848,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-6::before, .ml-lg-6 body.behat-site.ml-lg-6::before, body.themedesignermode .ml-lg-6::before, .ml-lg-6 body.themedesignermode.ml-lg-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43866,7 +43866,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-0::before, .pr-lg-0 body.behat-site.pr-lg-0::before, body.themedesignermode .pr-lg-0::before, .pr-lg-0 body.themedesignermode.pr-lg-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43884,7 +43884,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-0::before, .pl-lg-0 body.behat-site.pl-lg-0::before, body.themedesignermode .pl-lg-0::before, .pl-lg-0 body.themedesignermode.pl-lg-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43902,7 +43902,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-1::before, .pr-lg-1 body.behat-site.pr-lg-1::before, body.themedesignermode .pr-lg-1::before, .pr-lg-1 body.themedesignermode.pr-lg-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43920,7 +43920,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-1::before, .pl-lg-1 body.behat-site.pl-lg-1::before, body.themedesignermode .pl-lg-1::before, .pl-lg-1 body.themedesignermode.pl-lg-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43938,7 +43938,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-2::before, .pr-lg-2 body.behat-site.pr-lg-2::before, body.themedesignermode .pr-lg-2::before, .pr-lg-2 body.themedesignermode.pr-lg-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43956,7 +43956,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-2::before, .pl-lg-2 body.behat-site.pl-lg-2::before, body.themedesignermode .pl-lg-2::before, .pl-lg-2 body.themedesignermode.pl-lg-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43974,7 +43974,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-3::before, .pr-lg-3 body.behat-site.pr-lg-3::before, body.themedesignermode .pr-lg-3::before, .pr-lg-3 body.themedesignermode.pr-lg-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -43992,7 +43992,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-3::before, .pl-lg-3 body.behat-site.pl-lg-3::before, body.themedesignermode .pl-lg-3::before, .pl-lg-3 body.themedesignermode.pl-lg-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44010,7 +44010,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-4::before, .pr-lg-4 body.behat-site.pr-lg-4::before, body.themedesignermode .pr-lg-4::before, .pr-lg-4 body.themedesignermode.pr-lg-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44028,7 +44028,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-4::before, .pl-lg-4 body.behat-site.pl-lg-4::before, body.themedesignermode .pl-lg-4::before, .pl-lg-4 body.themedesignermode.pl-lg-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44046,7 +44046,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-5::before, .pr-lg-5 body.behat-site.pr-lg-5::before, body.themedesignermode .pr-lg-5::before, .pr-lg-5 body.themedesignermode.pr-lg-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44064,7 +44064,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-5::before, .pl-lg-5 body.behat-site.pl-lg-5::before, body.themedesignermode .pl-lg-5::before, .pl-lg-5 body.themedesignermode.pl-lg-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44082,7 +44082,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-lg-6::before, .pr-lg-6 body.behat-site.pr-lg-6::before, body.themedesignermode .pr-lg-6::before, .pr-lg-6 body.themedesignermode.pr-lg-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44100,7 +44100,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-lg-6::before, .pl-lg-6 body.behat-site.pl-lg-6::before, body.themedesignermode .pl-lg-6::before, .pl-lg-6 body.themedesignermode.pl-lg-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44118,7 +44118,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n1::before, .mr-lg-n1 body.behat-site.mr-lg-n1::before, body.themedesignermode .mr-lg-n1::before, .mr-lg-n1 body.themedesignermode.mr-lg-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44136,7 +44136,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n1::before, .ml-lg-n1 body.behat-site.ml-lg-n1::before, body.themedesignermode .ml-lg-n1::before, .ml-lg-n1 body.themedesignermode.ml-lg-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44154,7 +44154,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n2::before, .mr-lg-n2 body.behat-site.mr-lg-n2::before, body.themedesignermode .mr-lg-n2::before, .mr-lg-n2 body.themedesignermode.mr-lg-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44172,7 +44172,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n2::before, .ml-lg-n2 body.behat-site.ml-lg-n2::before, body.themedesignermode .ml-lg-n2::before, .ml-lg-n2 body.themedesignermode.ml-lg-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44190,7 +44190,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n3::before, .mr-lg-n3 body.behat-site.mr-lg-n3::before, body.themedesignermode .mr-lg-n3::before, .mr-lg-n3 body.themedesignermode.mr-lg-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44208,7 +44208,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n3::before, .ml-lg-n3 body.behat-site.ml-lg-n3::before, body.themedesignermode .ml-lg-n3::before, .ml-lg-n3 body.themedesignermode.ml-lg-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44226,7 +44226,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n4::before, .mr-lg-n4 body.behat-site.mr-lg-n4::before, body.themedesignermode .mr-lg-n4::before, .mr-lg-n4 body.themedesignermode.mr-lg-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44244,7 +44244,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n4::before, .ml-lg-n4 body.behat-site.ml-lg-n4::before, body.themedesignermode .ml-lg-n4::before, .ml-lg-n4 body.themedesignermode.ml-lg-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44262,7 +44262,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n5::before, .mr-lg-n5 body.behat-site.mr-lg-n5::before, body.themedesignermode .mr-lg-n5::before, .mr-lg-n5 body.themedesignermode.mr-lg-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44280,7 +44280,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n5::before, .ml-lg-n5 body.behat-site.ml-lg-n5::before, body.themedesignermode .ml-lg-n5::before, .ml-lg-n5 body.themedesignermode.ml-lg-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44298,7 +44298,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-n6::before, .mr-lg-n6 body.behat-site.mr-lg-n6::before, body.themedesignermode .mr-lg-n6::before, .mr-lg-n6 body.themedesignermode.mr-lg-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44316,7 +44316,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-n6::before, .ml-lg-n6 body.behat-site.ml-lg-n6::before, body.themedesignermode .ml-lg-n6::before, .ml-lg-n6 body.themedesignermode.ml-lg-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44334,7 +44334,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-lg-auto::before, .mr-lg-auto body.behat-site.mr-lg-auto::before, body.themedesignermode .mr-lg-auto::before, .mr-lg-auto body.themedesignermode.mr-lg-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44352,7 +44352,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-lg-auto::before, .ml-lg-auto body.behat-site.ml-lg-auto::before, body.themedesignermode .ml-lg-auto::before, .ml-lg-auto body.themedesignermode.ml-lg-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44372,7 +44372,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-0::before, .mr-xl-0 body.behat-site.mr-xl-0::before, body.themedesignermode .mr-xl-0::before, .mr-xl-0 body.themedesignermode.mr-xl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44390,7 +44390,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-0::before, .ml-xl-0 body.behat-site.ml-xl-0::before, body.themedesignermode .ml-xl-0::before, .ml-xl-0 body.themedesignermode.ml-xl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44408,7 +44408,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-1::before, .mr-xl-1 body.behat-site.mr-xl-1::before, body.themedesignermode .mr-xl-1::before, .mr-xl-1 body.themedesignermode.mr-xl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44426,7 +44426,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-1::before, .ml-xl-1 body.behat-site.ml-xl-1::before, body.themedesignermode .ml-xl-1::before, .ml-xl-1 body.themedesignermode.ml-xl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44444,7 +44444,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-2::before, .mr-xl-2 body.behat-site.mr-xl-2::before, body.themedesignermode .mr-xl-2::before, .mr-xl-2 body.themedesignermode.mr-xl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44462,7 +44462,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-2::before, .ml-xl-2 body.behat-site.ml-xl-2::before, body.themedesignermode .ml-xl-2::before, .ml-xl-2 body.themedesignermode.ml-xl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44480,7 +44480,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-3::before, .mr-xl-3 body.behat-site.mr-xl-3::before, body.themedesignermode .mr-xl-3::before, .mr-xl-3 body.themedesignermode.mr-xl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44498,7 +44498,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-3::before, .ml-xl-3 body.behat-site.ml-xl-3::before, body.themedesignermode .ml-xl-3::before, .ml-xl-3 body.themedesignermode.ml-xl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44516,7 +44516,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-4::before, .mr-xl-4 body.behat-site.mr-xl-4::before, body.themedesignermode .mr-xl-4::before, .mr-xl-4 body.themedesignermode.mr-xl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44534,7 +44534,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-4::before, .ml-xl-4 body.behat-site.ml-xl-4::before, body.themedesignermode .ml-xl-4::before, .ml-xl-4 body.themedesignermode.ml-xl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44552,7 +44552,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-5::before, .mr-xl-5 body.behat-site.mr-xl-5::before, body.themedesignermode .mr-xl-5::before, .mr-xl-5 body.themedesignermode.mr-xl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44570,7 +44570,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-5::before, .ml-xl-5 body.behat-site.ml-xl-5::before, body.themedesignermode .ml-xl-5::before, .ml-xl-5 body.themedesignermode.ml-xl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44588,7 +44588,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-6::before, .mr-xl-6 body.behat-site.mr-xl-6::before, body.themedesignermode .mr-xl-6::before, .mr-xl-6 body.themedesignermode.mr-xl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44606,7 +44606,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-6::before, .ml-xl-6 body.behat-site.ml-xl-6::before, body.themedesignermode .ml-xl-6::before, .ml-xl-6 body.themedesignermode.ml-xl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44624,7 +44624,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-0::before, .pr-xl-0 body.behat-site.pr-xl-0::before, body.themedesignermode .pr-xl-0::before, .pr-xl-0 body.themedesignermode.pr-xl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44642,7 +44642,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-0::before, .pl-xl-0 body.behat-site.pl-xl-0::before, body.themedesignermode .pl-xl-0::before, .pl-xl-0 body.themedesignermode.pl-xl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44660,7 +44660,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-1::before, .pr-xl-1 body.behat-site.pr-xl-1::before, body.themedesignermode .pr-xl-1::before, .pr-xl-1 body.themedesignermode.pr-xl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44678,7 +44678,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-1::before, .pl-xl-1 body.behat-site.pl-xl-1::before, body.themedesignermode .pl-xl-1::before, .pl-xl-1 body.themedesignermode.pl-xl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44696,7 +44696,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-2::before, .pr-xl-2 body.behat-site.pr-xl-2::before, body.themedesignermode .pr-xl-2::before, .pr-xl-2 body.themedesignermode.pr-xl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44714,7 +44714,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-2::before, .pl-xl-2 body.behat-site.pl-xl-2::before, body.themedesignermode .pl-xl-2::before, .pl-xl-2 body.themedesignermode.pl-xl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44732,7 +44732,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-3::before, .pr-xl-3 body.behat-site.pr-xl-3::before, body.themedesignermode .pr-xl-3::before, .pr-xl-3 body.themedesignermode.pr-xl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44750,7 +44750,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-3::before, .pl-xl-3 body.behat-site.pl-xl-3::before, body.themedesignermode .pl-xl-3::before, .pl-xl-3 body.themedesignermode.pl-xl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44768,7 +44768,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-4::before, .pr-xl-4 body.behat-site.pr-xl-4::before, body.themedesignermode .pr-xl-4::before, .pr-xl-4 body.themedesignermode.pr-xl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44786,7 +44786,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-4::before, .pl-xl-4 body.behat-site.pl-xl-4::before, body.themedesignermode .pl-xl-4::before, .pl-xl-4 body.themedesignermode.pl-xl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44804,7 +44804,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-5::before, .pr-xl-5 body.behat-site.pr-xl-5::before, body.themedesignermode .pr-xl-5::before, .pr-xl-5 body.themedesignermode.pr-xl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44822,7 +44822,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-5::before, .pl-xl-5 body.behat-site.pl-xl-5::before, body.themedesignermode .pl-xl-5::before, .pl-xl-5 body.themedesignermode.pl-xl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44840,7 +44840,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xl-6::before, .pr-xl-6 body.behat-site.pr-xl-6::before, body.themedesignermode .pr-xl-6::before, .pr-xl-6 body.themedesignermode.pr-xl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44858,7 +44858,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xl-6::before, .pl-xl-6 body.behat-site.pl-xl-6::before, body.themedesignermode .pl-xl-6::before, .pl-xl-6 body.themedesignermode.pl-xl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44876,7 +44876,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n1::before, .mr-xl-n1 body.behat-site.mr-xl-n1::before, body.themedesignermode .mr-xl-n1::before, .mr-xl-n1 body.themedesignermode.mr-xl-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44894,7 +44894,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n1::before, .ml-xl-n1 body.behat-site.ml-xl-n1::before, body.themedesignermode .ml-xl-n1::before, .ml-xl-n1 body.themedesignermode.ml-xl-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44912,7 +44912,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n2::before, .mr-xl-n2 body.behat-site.mr-xl-n2::before, body.themedesignermode .mr-xl-n2::before, .mr-xl-n2 body.themedesignermode.mr-xl-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44930,7 +44930,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n2::before, .ml-xl-n2 body.behat-site.ml-xl-n2::before, body.themedesignermode .ml-xl-n2::before, .ml-xl-n2 body.themedesignermode.ml-xl-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44948,7 +44948,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n3::before, .mr-xl-n3 body.behat-site.mr-xl-n3::before, body.themedesignermode .mr-xl-n3::before, .mr-xl-n3 body.themedesignermode.mr-xl-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44966,7 +44966,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n3::before, .ml-xl-n3 body.behat-site.ml-xl-n3::before, body.themedesignermode .ml-xl-n3::before, .ml-xl-n3 body.themedesignermode.ml-xl-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -44984,7 +44984,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n4::before, .mr-xl-n4 body.behat-site.mr-xl-n4::before, body.themedesignermode .mr-xl-n4::before, .mr-xl-n4 body.themedesignermode.mr-xl-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45002,7 +45002,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n4::before, .ml-xl-n4 body.behat-site.ml-xl-n4::before, body.themedesignermode .ml-xl-n4::before, .ml-xl-n4 body.themedesignermode.ml-xl-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45020,7 +45020,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n5::before, .mr-xl-n5 body.behat-site.mr-xl-n5::before, body.themedesignermode .mr-xl-n5::before, .mr-xl-n5 body.themedesignermode.mr-xl-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45038,7 +45038,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n5::before, .ml-xl-n5 body.behat-site.ml-xl-n5::before, body.themedesignermode .ml-xl-n5::before, .ml-xl-n5 body.themedesignermode.ml-xl-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45056,7 +45056,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-n6::before, .mr-xl-n6 body.behat-site.mr-xl-n6::before, body.themedesignermode .mr-xl-n6::before, .mr-xl-n6 body.themedesignermode.mr-xl-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45074,7 +45074,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-n6::before, .ml-xl-n6 body.behat-site.ml-xl-n6::before, body.themedesignermode .ml-xl-n6::before, .ml-xl-n6 body.themedesignermode.ml-xl-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45092,7 +45092,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xl-auto::before, .mr-xl-auto body.behat-site.mr-xl-auto::before, body.themedesignermode .mr-xl-auto::before, .mr-xl-auto body.themedesignermode.mr-xl-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45110,7 +45110,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xl-auto::before, .ml-xl-auto body.behat-site.ml-xl-auto::before, body.themedesignermode .ml-xl-auto::before, .ml-xl-auto body.themedesignermode.ml-xl-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45130,7 +45130,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-0::before, .mr-xxl-0 body.behat-site.mr-xxl-0::before, body.themedesignermode .mr-xxl-0::before, .mr-xxl-0 body.themedesignermode.mr-xxl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45148,7 +45148,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-0::before, .ml-xxl-0 body.behat-site.ml-xxl-0::before, body.themedesignermode .ml-xxl-0::before, .ml-xxl-0 body.themedesignermode.ml-xxl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45166,7 +45166,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-1::before, .mr-xxl-1 body.behat-site.mr-xxl-1::before, body.themedesignermode .mr-xxl-1::before, .mr-xxl-1 body.themedesignermode.mr-xxl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45184,7 +45184,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-1::before, .ml-xxl-1 body.behat-site.ml-xxl-1::before, body.themedesignermode .ml-xxl-1::before, .ml-xxl-1 body.themedesignermode.ml-xxl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45202,7 +45202,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-2::before, .mr-xxl-2 body.behat-site.mr-xxl-2::before, body.themedesignermode .mr-xxl-2::before, .mr-xxl-2 body.themedesignermode.mr-xxl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45220,7 +45220,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-2::before, .ml-xxl-2 body.behat-site.ml-xxl-2::before, body.themedesignermode .ml-xxl-2::before, .ml-xxl-2 body.themedesignermode.ml-xxl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45238,7 +45238,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-3::before, .mr-xxl-3 body.behat-site.mr-xxl-3::before, body.themedesignermode .mr-xxl-3::before, .mr-xxl-3 body.themedesignermode.mr-xxl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45256,7 +45256,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-3::before, .ml-xxl-3 body.behat-site.ml-xxl-3::before, body.themedesignermode .ml-xxl-3::before, .ml-xxl-3 body.themedesignermode.ml-xxl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45274,7 +45274,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-4::before, .mr-xxl-4 body.behat-site.mr-xxl-4::before, body.themedesignermode .mr-xxl-4::before, .mr-xxl-4 body.themedesignermode.mr-xxl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45292,7 +45292,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-4::before, .ml-xxl-4 body.behat-site.ml-xxl-4::before, body.themedesignermode .ml-xxl-4::before, .ml-xxl-4 body.themedesignermode.ml-xxl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45310,7 +45310,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-5::before, .mr-xxl-5 body.behat-site.mr-xxl-5::before, body.themedesignermode .mr-xxl-5::before, .mr-xxl-5 body.themedesignermode.mr-xxl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45328,7 +45328,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-5::before, .ml-xxl-5 body.behat-site.ml-xxl-5::before, body.themedesignermode .ml-xxl-5::before, .ml-xxl-5 body.themedesignermode.ml-xxl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45346,7 +45346,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-6::before, .mr-xxl-6 body.behat-site.mr-xxl-6::before, body.themedesignermode .mr-xxl-6::before, .mr-xxl-6 body.themedesignermode.mr-xxl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45364,7 +45364,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-6::before, .ml-xxl-6 body.behat-site.ml-xxl-6::before, body.themedesignermode .ml-xxl-6::before, .ml-xxl-6 body.themedesignermode.ml-xxl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45382,7 +45382,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-0::before, .pr-xxl-0 body.behat-site.pr-xxl-0::before, body.themedesignermode .pr-xxl-0::before, .pr-xxl-0 body.themedesignermode.pr-xxl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45400,7 +45400,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-0::before, .pl-xxl-0 body.behat-site.pl-xxl-0::before, body.themedesignermode .pl-xxl-0::before, .pl-xxl-0 body.themedesignermode.pl-xxl-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45418,7 +45418,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-1::before, .pr-xxl-1 body.behat-site.pr-xxl-1::before, body.themedesignermode .pr-xxl-1::before, .pr-xxl-1 body.themedesignermode.pr-xxl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45436,7 +45436,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-1::before, .pl-xxl-1 body.behat-site.pl-xxl-1::before, body.themedesignermode .pl-xxl-1::before, .pl-xxl-1 body.themedesignermode.pl-xxl-1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45454,7 +45454,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-2::before, .pr-xxl-2 body.behat-site.pr-xxl-2::before, body.themedesignermode .pr-xxl-2::before, .pr-xxl-2 body.themedesignermode.pr-xxl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45472,7 +45472,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-2::before, .pl-xxl-2 body.behat-site.pl-xxl-2::before, body.themedesignermode .pl-xxl-2::before, .pl-xxl-2 body.themedesignermode.pl-xxl-2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45490,7 +45490,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-3::before, .pr-xxl-3 body.behat-site.pr-xxl-3::before, body.themedesignermode .pr-xxl-3::before, .pr-xxl-3 body.themedesignermode.pr-xxl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45508,7 +45508,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-3::before, .pl-xxl-3 body.behat-site.pl-xxl-3::before, body.themedesignermode .pl-xxl-3::before, .pl-xxl-3 body.themedesignermode.pl-xxl-3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45526,7 +45526,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-4::before, .pr-xxl-4 body.behat-site.pr-xxl-4::before, body.themedesignermode .pr-xxl-4::before, .pr-xxl-4 body.themedesignermode.pr-xxl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45544,7 +45544,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-4::before, .pl-xxl-4 body.behat-site.pl-xxl-4::before, body.themedesignermode .pl-xxl-4::before, .pl-xxl-4 body.themedesignermode.pl-xxl-4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45562,7 +45562,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-5::before, .pr-xxl-5 body.behat-site.pr-xxl-5::before, body.themedesignermode .pr-xxl-5::before, .pr-xxl-5 body.themedesignermode.pr-xxl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45580,7 +45580,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-5::before, .pl-xxl-5 body.behat-site.pl-xxl-5::before, body.themedesignermode .pl-xxl-5::before, .pl-xxl-5 body.themedesignermode.pl-xxl-5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45598,7 +45598,7 @@ body.behat-site .ml-auto::before, body.behat-site .pr-xxl-6::before, .pr-xxl-6 body.behat-site.pr-xxl-6::before, body.themedesignermode .pr-xxl-6::before, .pr-xxl-6 body.themedesignermode.pr-xxl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45616,7 +45616,7 @@ body.behat-site .ml-auto::before, body.behat-site .pl-xxl-6::before, .pl-xxl-6 body.behat-site.pl-xxl-6::before, body.themedesignermode .pl-xxl-6::before, .pl-xxl-6 body.themedesignermode.pl-xxl-6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.pl)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45634,7 +45634,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n1::before, .mr-xxl-n1 body.behat-site.mr-xxl-n1::before, body.themedesignermode .mr-xxl-n1::before, .mr-xxl-n1 body.themedesignermode.mr-xxl-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45652,7 +45652,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n1::before, .ml-xxl-n1 body.behat-site.ml-xxl-n1::before, body.themedesignermode .ml-xxl-n1::before, .ml-xxl-n1 body.themedesignermode.ml-xxl-n1::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45670,7 +45670,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n2::before, .mr-xxl-n2 body.behat-site.mr-xxl-n2::before, body.themedesignermode .mr-xxl-n2::before, .mr-xxl-n2 body.themedesignermode.mr-xxl-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45688,7 +45688,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n2::before, .ml-xxl-n2 body.behat-site.ml-xxl-n2::before, body.themedesignermode .ml-xxl-n2::before, .ml-xxl-n2 body.themedesignermode.ml-xxl-n2::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45706,7 +45706,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n3::before, .mr-xxl-n3 body.behat-site.mr-xxl-n3::before, body.themedesignermode .mr-xxl-n3::before, .mr-xxl-n3 body.themedesignermode.mr-xxl-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45724,7 +45724,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n3::before, .ml-xxl-n3 body.behat-site.ml-xxl-n3::before, body.themedesignermode .ml-xxl-n3::before, .ml-xxl-n3 body.themedesignermode.ml-xxl-n3::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45742,7 +45742,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n4::before, .mr-xxl-n4 body.behat-site.mr-xxl-n4::before, body.themedesignermode .mr-xxl-n4::before, .mr-xxl-n4 body.themedesignermode.mr-xxl-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45760,7 +45760,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n4::before, .ml-xxl-n4 body.behat-site.ml-xxl-n4::before, body.themedesignermode .ml-xxl-n4::before, .ml-xxl-n4 body.themedesignermode.ml-xxl-n4::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45778,7 +45778,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n5::before, .mr-xxl-n5 body.behat-site.mr-xxl-n5::before, body.themedesignermode .mr-xxl-n5::before, .mr-xxl-n5 body.themedesignermode.mr-xxl-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45796,7 +45796,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n5::before, .ml-xxl-n5 body.behat-site.ml-xxl-n5::before, body.themedesignermode .ml-xxl-n5::before, .ml-xxl-n5 body.themedesignermode.ml-xxl-n5::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45814,7 +45814,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-n6::before, .mr-xxl-n6 body.behat-site.mr-xxl-n6::before, body.themedesignermode .mr-xxl-n6::before, .mr-xxl-n6 body.themedesignermode.mr-xxl-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45832,7 +45832,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-n6::before, .ml-xxl-n6 body.behat-site.ml-xxl-n6::before, body.themedesignermode .ml-xxl-n6::before, .ml-xxl-n6 body.themedesignermode.ml-xxl-n6::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45850,7 +45850,7 @@ body.behat-site .ml-auto::before, body.behat-site .mr-xxl-auto::before, .mr-xxl-auto body.behat-site.mr-xxl-auto::before, body.themedesignermode .mr-xxl-auto::before, .mr-xxl-auto body.themedesignermode.mr-xxl-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.mr)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45868,7 +45868,7 @@ body.behat-site .ml-auto::before, body.behat-site .ml-xxl-auto::before, .ml-xxl-auto body.behat-site.ml-xxl-auto::before, body.themedesignermode .ml-xxl-auto::before, .ml-xxl-auto body.themedesignermode.ml-xxl-auto::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.ml)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45887,7 +45887,7 @@ body.behat-site .text-left, body.behat-site .text-left::before, .text-left body.behat-site.text-left::before, body.themedesignermode .text-left::before, .text-left body.themedesignermode.text-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45906,7 +45906,7 @@ body.behat-site .text-right, body.behat-site .text-right::before, .text-right body.behat-site.text-right::before, body.themedesignermode .text-right::before, .text-right body.themedesignermode.text-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45926,7 +45926,7 @@ body.behat-site .text-right::before, body.behat-site .text-sm-left::before, .text-sm-left body.behat-site.text-sm-left::before, body.themedesignermode .text-sm-left::before, .text-sm-left body.themedesignermode.text-sm-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45944,7 +45944,7 @@ body.behat-site .text-right::before, body.behat-site .text-sm-right::before, .text-sm-right body.behat-site.text-sm-right::before, body.themedesignermode .text-sm-right::before, .text-sm-right body.themedesignermode.text-sm-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45964,7 +45964,7 @@ body.behat-site .text-right::before, body.behat-site .text-md-left::before, .text-md-left body.behat-site.text-md-left::before, body.themedesignermode .text-md-left::before, .text-md-left body.themedesignermode.text-md-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -45982,7 +45982,7 @@ body.behat-site .text-right::before, body.behat-site .text-md-right::before, .text-md-right body.behat-site.text-md-right::before, body.themedesignermode .text-md-right::before, .text-md-right body.themedesignermode.text-md-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46002,7 +46002,7 @@ body.behat-site .text-right::before, body.behat-site .text-lg-left::before, .text-lg-left body.behat-site.text-lg-left::before, body.themedesignermode .text-lg-left::before, .text-lg-left body.themedesignermode.text-lg-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46020,7 +46020,7 @@ body.behat-site .text-right::before, body.behat-site .text-lg-right::before, .text-lg-right body.behat-site.text-lg-right::before, body.themedesignermode .text-lg-right::before, .text-lg-right body.themedesignermode.text-lg-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46040,7 +46040,7 @@ body.behat-site .text-right::before, body.behat-site .text-xl-left::before, .text-xl-left body.behat-site.text-xl-left::before, body.themedesignermode .text-xl-left::before, .text-xl-left body.themedesignermode.text-xl-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46058,7 +46058,7 @@ body.behat-site .text-right::before, body.behat-site .text-xl-right::before, .text-xl-right body.behat-site.text-xl-right::before, body.themedesignermode .text-xl-right::before, .text-xl-right body.themedesignermode.text-xl-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46078,7 +46078,7 @@ body.behat-site .text-right::before, body.behat-site .text-xxl-left::before, .text-xxl-left body.behat-site.text-xxl-left::before, body.themedesignermode .text-xxl-left::before, .text-xxl-left body.themedesignermode.text-xxl-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46096,7 +46096,7 @@ body.behat-site .text-right::before, body.behat-site .text-xxl-right::before, .text-xxl-right body.behat-site.text-xxl-right::before, body.themedesignermode .text-xxl-right::before, .text-xxl-right body.themedesignermode.text-xxl-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.text-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46115,7 +46115,7 @@ body.behat-site .border-right, body.behat-site .border-right::before, .border-right body.behat-site.border-right::before, body.themedesignermode .border-right::before, .border-right body.themedesignermode.border-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.border-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46134,7 +46134,7 @@ body.behat-site .border-left, body.behat-site .border-left::before, .border-left body.behat-site.border-left::before, body.themedesignermode .border-left::before, .border-left body.themedesignermode.border-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.border-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46153,7 +46153,7 @@ body.behat-site .border-right-0, body.behat-site .border-right-0::before, .border-right-0 body.behat-site.border-right-0::before, body.themedesignermode .border-right-0::before, .border-right-0 body.themedesignermode.border-right-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.border-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46172,7 +46172,7 @@ body.behat-site .border-left-0, body.behat-site .border-left-0::before, .border-left-0 body.behat-site.border-left-0::before, body.themedesignermode .border-left-0::before, .border-left-0 body.themedesignermode.border-left-0::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.border-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46192,7 +46192,7 @@ body.behat-site .rounded-right, body.behat-site .rounded-right::before, .rounded-right body.behat-site.rounded-right::before, body.themedesignermode .rounded-right::before, .rounded-right body.themedesignermode.rounded-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.rounded-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46212,7 +46212,7 @@ body.behat-site .rounded-left, body.behat-site .rounded-left::before, .rounded-left body.behat-site.rounded-left::before, body.themedesignermode .rounded-left::before, .rounded-left body.themedesignermode.rounded-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.rounded-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46231,7 +46231,7 @@ body.behat-site .float-left, body.behat-site .float-left::before, .float-left body.behat-site.float-left::before, body.themedesignermode .float-left::before, .float-left body.themedesignermode.float-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46250,7 +46250,7 @@ body.behat-site .float-right, body.behat-site .float-right::before, .float-right body.behat-site.float-right::before, body.themedesignermode .float-right::before, .float-right body.themedesignermode.float-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46270,7 +46270,7 @@ body.behat-site .float-right::before, body.behat-site .float-sm-left::before, .float-sm-left body.behat-site.float-sm-left::before, body.themedesignermode .float-sm-left::before, .float-sm-left body.themedesignermode.float-sm-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46288,7 +46288,7 @@ body.behat-site .float-right::before, body.behat-site .float-sm-right::before, .float-sm-right body.behat-site.float-sm-right::before, body.themedesignermode .float-sm-right::before, .float-sm-right body.themedesignermode.float-sm-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46308,7 +46308,7 @@ body.behat-site .float-right::before, body.behat-site .float-md-left::before, .float-md-left body.behat-site.float-md-left::before, body.themedesignermode .float-md-left::before, .float-md-left body.themedesignermode.float-md-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46326,7 +46326,7 @@ body.behat-site .float-right::before, body.behat-site .float-md-right::before, .float-md-right body.behat-site.float-md-right::before, body.themedesignermode .float-md-right::before, .float-md-right body.themedesignermode.float-md-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46346,7 +46346,7 @@ body.behat-site .float-right::before, body.behat-site .float-lg-left::before, .float-lg-left body.behat-site.float-lg-left::before, body.themedesignermode .float-lg-left::before, .float-lg-left body.themedesignermode.float-lg-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46364,7 +46364,7 @@ body.behat-site .float-right::before, body.behat-site .float-lg-right::before, .float-lg-right body.behat-site.float-lg-right::before, body.themedesignermode .float-lg-right::before, .float-lg-right body.themedesignermode.float-lg-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46384,7 +46384,7 @@ body.behat-site .float-right::before, body.behat-site .float-xl-left::before, .float-xl-left body.behat-site.float-xl-left::before, body.themedesignermode .float-xl-left::before, .float-xl-left body.themedesignermode.float-xl-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46402,7 +46402,7 @@ body.behat-site .float-right::before, body.behat-site .float-xl-right::before, .float-xl-right body.behat-site.float-xl-right::before, body.themedesignermode .float-xl-right::before, .float-xl-right body.themedesignermode.float-xl-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46422,7 +46422,7 @@ body.behat-site .float-right::before, body.behat-site .float-xxl-left::before, .float-xxl-left body.behat-site.float-xxl-left::before, body.themedesignermode .float-xxl-left::before, .float-xxl-left body.themedesignermode.float-xxl-left::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-left)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46440,7 +46440,7 @@ body.behat-site .float-right::before, body.behat-site .float-xxl-right::before, .float-xxl-right body.behat-site.float-xxl-right::before, body.themedesignermode .float-xxl-right::before, .float-xxl-right body.themedesignermode.float-xxl-right::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.float-right)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46491,7 +46491,7 @@ body.behat-site .font-weight-light, body.behat-site .font-weight-light::before, .font-weight-light body.behat-site.font-weight-light::before, body.themedesignermode .font-weight-light::before, .font-weight-light body.themedesignermode.font-weight-light::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46510,7 +46510,7 @@ body.behat-site .font-weight-lighter, body.behat-site .font-weight-lighter::before, .font-weight-lighter body.behat-site.font-weight-lighter::before, body.themedesignermode .font-weight-lighter::before, .font-weight-lighter body.themedesignermode.font-weight-lighter::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46529,7 +46529,7 @@ body.behat-site .font-weight-normal, body.behat-site .font-weight-normal::before, .font-weight-normal body.behat-site.font-weight-normal::before, body.themedesignermode .font-weight-normal::before, .font-weight-normal body.themedesignermode.font-weight-normal::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46548,7 +46548,7 @@ body.behat-site .font-weight-bold, body.behat-site .font-weight-bold::before, .font-weight-bold body.behat-site.font-weight-bold::before, body.themedesignermode .font-weight-bold::before, .font-weight-bold body.themedesignermode.font-weight-bold::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46567,7 +46567,7 @@ body.behat-site .font-weight-bolder, body.behat-site .font-weight-bolder::before, .font-weight-bolder body.behat-site.font-weight-bolder::before, body.themedesignermode .font-weight-bolder::before, .font-weight-bolder body.themedesignermode.font-weight-bolder::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46586,7 +46586,7 @@ body.behat-site .font-italic, body.behat-site .font-italic::before, .font-italic body.behat-site.font-italic::before, body.themedesignermode .font-italic::before, .font-italic body.themedesignermode.font-italic::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.font-weight)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46605,7 +46605,7 @@ body.behat-site .rounded-sm, body.behat-site .rounded-sm::before, .rounded-sm body.behat-site.rounded-sm::before, body.themedesignermode .rounded-sm::before, .rounded-sm body.themedesignermode.rounded-sm::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.rounded-sm)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46624,7 +46624,7 @@ body.behat-site .rounded-lg, body.behat-site .rounded-lg::before, .rounded-lg body.behat-site.rounded-lg::before, body.themedesignermode .rounded-lg::before, .rounded-lg body.themedesignermode.rounded-lg::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.rounded-lg)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46651,7 +46651,7 @@ body.behat-site .sr-only, body.behat-site .sr-only::before, .sr-only body.behat-site.sr-only::before, body.themedesignermode .sr-only::before, .sr-only body.themedesignermode.sr-only::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.sr-only)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46669,7 +46669,7 @@ body.behat-site .sr-only-focusable, body.behat-site .sr-only-focusable::before, .sr-only-focusable body.behat-site.sr-only-focusable::before, body.themedesignermode .sr-only-focusable::before, .sr-only-focusable body.themedesignermode.sr-only-focusable::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.sr-only-focusable)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46768,7 +46768,7 @@ body.behat-site .custom-checkbox, body.behat-site .custom-checkbox::before, .custom-checkbox body.behat-site.custom-checkbox::before, body.themedesignermode .custom-checkbox::before, .custom-checkbox body.themedesignermode.custom-checkbox::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-checkbox)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46805,7 +46805,7 @@ body.behat-site .custom-radio, body.behat-site .custom-radio::before, .custom-radio body.behat-site.custom-radio::before, body.themedesignermode .custom-radio::before, .custom-radio body.themedesignermode.custom-radio::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-radio)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46833,7 +46833,7 @@ body.behat-site .custom-switch, body.behat-site .custom-switch::before, .custom-switch body.behat-site.custom-switch::before, body.themedesignermode .custom-switch::before, .custom-switch body.themedesignermode.custom-switch::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-switch)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46891,7 +46891,7 @@ body.behat-site .custom-select, body.behat-site .custom-select::before, .custom-select body.behat-site.custom-select::before, body.themedesignermode .custom-select::before, .custom-select body.themedesignermode.custom-select::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-select)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -46955,7 +46955,7 @@ body.behat-site .custom-file, body.behat-site .custom-file::before, .custom-file body.behat-site.custom-file::before, body.themedesignermode .custom-file::before, .custom-file body.themedesignermode.custom-file::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-file)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -47034,7 +47034,7 @@ body.behat-site .custom-range, body.behat-site .custom-range::before, .custom-range body.behat-site.custom-range::before, body.themedesignermode .custom-range::before, .custom-range body.themedesignermode.custom-range::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.custom-range)" !important; color: #ca3120 !important; font-size: smaller !important; } @@ -47188,7 +47188,7 @@ body.behat-site .btn-block, body.behat-site .btn-block::before, .btn-block body.behat-site.btn-block::before, body.themedesignermode .btn-block::before, .btn-block body.themedesignermode.btn-block::before { - content: "Deprecated style in use" !important; + content: "Deprecated style in use (.btn-block)" !important; color: #ca3120 !important; font-size: smaller !important; }