From ca918292dd90c0b6a016490c191cb260aaa4144b Mon Sep 17 00:00:00 2001 From: MaxR Date: Sun, 12 Jul 2026 03:18:28 +0300 Subject: [PATCH] fix: hide child elements inside .skeleton-block --- sass/base/skeleton.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sass/base/skeleton.scss b/sass/base/skeleton.scss index f5c1d043f7..9ee6bf32af 100644 --- a/sass/base/skeleton.scss +++ b/sass/base/skeleton.scss @@ -93,6 +93,13 @@ textarea.#{iv.$class-prefix}is-skeleton { @extend %skeleton-pulsation; color: transparent !important; min-height: cv.getVar("skeleton-block-min-height"); + + // Ensure child elements (links, buttons, etc.) also become invisible. + // `color: transparent` on the parent does not cascade to elements + // with their own color (e.g. defaults to -webkit-link). + * { + color: inherit !important; + } } .#{iv.$class-prefix}skeleton-lines {