Sha256: 690780a5f568226bb755f5e601add120af65474c8f2e07764d6f10bdb586eb11
Contents?: true
Size: 613 Bytes
Versions: 840
Compression:
Stored size: 613 Bytes
Contents
// Deprecate mixin // // This mixin can be used to deprecate mixins or functions. // `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to // some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap) @mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) { @if ($enable-deprecation-messages != false and $ignore-warning != true) { @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}."; } }
Version data entries
840 entries across 838 versions & 57 rubygems