diff options
Diffstat (limited to '')
-rw-r--r-- | assets/css/bootstrap-3.3.2/mixins/hide-text.less (renamed from assets/css/lib/bootstrap/mixins/_hide-text.scss) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/assets/css/lib/bootstrap/mixins/_hide-text.scss b/assets/css/bootstrap-3.3.2/mixins/hide-text.less index 5e06972..c2315e5 100644 --- a/assets/css/lib/bootstrap/mixins/_hide-text.scss +++ b/assets/css/bootstrap-3.3.2/mixins/hide-text.less @@ -7,8 +7,8 @@ // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 // Deprecated as of v3.0.1 (will be removed in v4) -@mixin hide-text() { - font: #{0/0} a; +.hide-text() { + font: ~"0/0" a; color: transparent; text-shadow: none; background-color: transparent; @@ -16,6 +16,6 @@ } // New mixin to use as of v3.0.1 -@mixin text-hide() { - @include hide-text(); +.text-hide() { + .hide-text(); } |