From 0ada08117fb20c96445b61ae96a591657551e539 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 31 Mar 2018 20:30:45 -0700 Subject: [PATCH 1/2] warn about deprecation of .text-hide --- scss/mixins/_text-hide.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scss/mixins/_text-hide.scss b/scss/mixins/_text-hide.scss index aa551fde50f4..4cf1e61c0824 100644 --- a/scss/mixins/_text-hide.scss +++ b/scss/mixins/_text-hide.scss @@ -6,4 +6,6 @@ text-shadow: none; background-color: transparent; border: 0; + + @warn "The `text-hide()` mixin has been deprecated as of v4.1.0. It will be removed entirely in v5." } From 1a5cf07ed8c7845e5f4f47716c6d6a8b7b61da81 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 31 Mar 2018 21:07:29 -0700 Subject: [PATCH 2/2] trailing semicolon --- scss/mixins/_text-hide.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/mixins/_text-hide.scss b/scss/mixins/_text-hide.scss index 4cf1e61c0824..4b8f218b5080 100644 --- a/scss/mixins/_text-hide.scss +++ b/scss/mixins/_text-hide.scss @@ -7,5 +7,5 @@ background-color: transparent; border: 0; - @warn "The `text-hide()` mixin has been deprecated as of v4.1.0. It will be removed entirely in v5." + @warn "The `text-hide()` mixin has been deprecated as of v4.1.0. It will be removed entirely in v5."; }