Sha256: d3e037ccc0f112f0c2aa098e86ca9544b4e04bb4a4e0e41632d06b143ed6c2f4
Contents?: true
Size: 910 Bytes
Versions: 18
Compression:
Stored size: 910 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
18 entries across 18 versions & 1 rubygems