Sha256: 74f2678f2c629090c13f3bb8f9e2caaf293e50a6f203f41d3c591fb3e175c50d

Contents?: true

Size: 612 Bytes

Versions: 7

Compression:

Stored size: 612 Bytes

Contents

@charset "UTF-8";

/// Throws Sass warnings to announce backend deprecations. You can disable them
/// by setting the `$output-alchemy-deprecation-warnings` variable to `false`.
///
/// @access private

$output-alchemy-deprecation-warnings: true !default;

@mixin alchemy-deprecated-variable($variable, $replacement) {
  @if $output-alchemy-deprecation-warnings == true {
    @if global-variable-exists($variable) {
      @warn "[Alchemy] [Deprecation] Sass variable `#{$variable}` is deprecated and will be " +
        "removed in Alchemy 8.0. Please use custom property `#{$replacement}` instead";
    }
  }
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
alchemy_cms-7.4.0 app/assets/stylesheets/alchemy/_deprecation.scss
alchemy_cms-7.3.5 app/assets/stylesheets/alchemy/_deprecation.scss
alchemy_cms-7.3.4 app/assets/stylesheets/alchemy/_deprecation.scss
alchemy_cms-7.3.3 app/assets/stylesheets/alchemy/_deprecation.scss
alchemy_cms-7.3.2 app/assets/stylesheets/alchemy/_deprecation.scss
alchemy_cms-7.3.1 app/assets/stylesheets/alchemy/_deprecation.scss
alchemy_cms-7.3.0 app/assets/stylesheets/alchemy/_deprecation.scss