Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions sass/base/skeleton.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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. <a> defaults to -webkit-link).
* {
color: inherit !important;
}
}

.#{iv.$class-prefix}skeleton-lines {
Expand Down