OSDN Git Service

Merge pull request #41 from Bytom/dev
[bytom/vapor.git] / tools / side_chain_tool / web / node_modules / bootstrap / scss / mixins / _text-hide.scss
1 // CSS image replacement
2 @mixin text-hide($ignore-warning: false) {
3   // stylelint-disable-next-line font-family-no-missing-generic-family-keyword
4   font: 0/0 a;
5   color: transparent;
6   text-shadow: none;
7   background-color: transparent;
8   border: 0;
9
10   @if ($ignore-warning != true) {
11     @warn "The `text-hide()` mixin has been deprecated as of v4.1.0. It will be removed entirely in v5.";
12   }
13 }