Back to home page

EIC code displayed by LXR

 
 

    


Warning, /iDDS/monitor/data/scss/bootstrap/mixins/_deprecate.scss is written in an unsupported language. File is not indexed.

0001 // Deprecate mixin
0002 //
0003 // This mixin can be used to deprecate mixins or functions.
0004 // `$enable-deprecation-messages` is a global variable, `$ignore-warning` is a variable that can be passed to
0005 // some deprecated mixins to suppress the warning (for example if the mixin is still be used in the current version of Bootstrap)
0006 @mixin deprecate($name, $deprecate-version, $remove-version, $ignore-warning: false) {
0007   @if ($enable-deprecation-messages != false and $ignore-warning != true) {
0008     @warn "#{$name} has been deprecated as of #{$deprecate-version}. It will be removed entirely in #{$remove-version}.";
0009   }
0010 }