fix: icons toggle also hides all badges (LIVE, GitHub, stars, category)

This commit is contained in:
juanatsap
2026-05-04 15:18:54 +01:00
parent ef958dffe5
commit 88ecfed5c5
+12 -1
View File
@@ -194,7 +194,7 @@
height: auto;
}
/* Hide icons when toggle is OFF - with animation */
/* Hide icons and badges when toggle is OFF - with animation */
.cv-paper:not(.show-icons) .company-logo,
.cv-paper:not(.show-icons) .award-logo,
.cv-paper:not(.show-icons) .section-icon,
@@ -213,6 +213,17 @@
overflow: hidden;
}
/* Hide all badges when icons toggle is OFF */
.cv-paper:not(.show-icons) .live-badge,
.cv-paper:not(.show-icons) .github-stars-badge,
.cv-paper:not(.show-icons) .github-badge,
.cv-paper:not(.show-icons) .category-badge,
.cv-paper:not(.show-icons) .maintained-badge,
.cv-paper:not(.show-icons) .current-badge,
.cv-paper:not(.show-icons) .expired-badge {
display: none;
}
/* Show icons when toggle is ON (default) - with animation */
.show-icons .company-logo,
.show-icons .award-logo,