2014-03-10 14:18:48 +08:00
|
|
|
// CSS image replacement
|
2018-04-16 14:45:07 +08:00
|
|
|
@mixin text-hide($ignore-warning: false) {
|
2017-11-28 18:26:50 +08:00
|
|
|
// stylelint-disable-next-line font-family-no-missing-generic-family-keyword
|
2015-12-26 05:01:46 +08:00
|
|
|
font: 0/0 a;
|
2014-03-10 14:18:48 +08:00
|
|
|
color: transparent;
|
|
|
|
text-shadow: none;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
2018-04-01 13:10:32 +08:00
|
|
|
|
2019-01-23 03:55:23 +08:00
|
|
|
@include deprecate("`text-hide()`", "v4.1.0", "v5", $ignore-warning);
|
2014-03-10 14:18:48 +08:00
|
|
|
}
|