2014-03-10 07:18:48 +01:00
|
|
|
// CSS image replacement
|
2018-04-16 08:45:07 +02:00
|
|
|
@mixin text-hide($ignore-warning: false) {
|
2017-11-28 11:26:50 +01:00
|
|
|
// stylelint-disable-next-line font-family-no-missing-generic-family-keyword
|
2015-12-25 22:01:46 +01:00
|
|
|
font: 0/0 a;
|
2014-03-10 07:18:48 +01:00
|
|
|
color: transparent;
|
|
|
|
text-shadow: none;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
2018-04-01 07:10:32 +02:00
|
|
|
|
2018-04-16 08:45:07 +02:00
|
|
|
@if ($ignore-warning != true) {
|
|
|
|
@warn "The `text-hide()` mixin has been deprecated as of v4.1.0. It will be removed entirely in v5.";
|
|
|
|
}
|
2014-03-10 07:18:48 +01:00
|
|
|
}
|