Sha256: 5bd16d3946bd1e0b102097690af14c3fcf92339b4a32a10c83bbb2b65cce7456
Contents?: true
Size: 909 Bytes
Versions: 81
Compression:
Stored size: 909 Bytes
Contents
@charset "UTF-8"; /// Throws Sass warnings to announce backend deprecations. You can disable them /// by setting the `$output-solidus-deprecation-warnings` variable to `false`. /// /// @access private $output-solidus-deprecation-warnings: true !default; @mixin bs-deprecated-variable($variable, $replacement) { @if $output-solidus-deprecation-warnings == true { @if global-variable-exists($variable) { @warn "[Solidus] [Deprecation] `$#{$variable}` is deprecated and will be " + "removed in 3.0.0. Please use Bootstraps #{$replacement} instead"; } } } @mixin solidus-deprecated-variable($variable, $replacement) { @if $output-solidus-deprecation-warnings == true { @if global-variable-exists($variable) { @warn "[Solidus] [Deprecation] `$#{$variable}` is deprecated and will be " + "removed in Solidus 3.0. Please use `$#{$replacement}` instead"; } } }
Version data entries
81 entries across 81 versions & 1 rubygems