Implement strict hover effect removal for legal text: Added CSS rules to ensure no hover, focus, or active effects on legal hero and content sections, enhancing readability and user experience.

This commit is contained in:
smueller
2026-05-27 14:45:10 +02:00
parent 5d2be60dfa
commit b113bdeaa2

View File

@@ -90,3 +90,19 @@
color: #0b57d0; color: #0b57d0;
text-decoration: none; text-decoration: none;
} }
/* Ensure absolutely no hover effects on legal text/content */
.legal-hero *,
.legal-content *,
.legal-hero *:hover,
.legal-content *:hover,
.legal-hero *:focus,
.legal-content *:focus,
.legal-hero *:active,
.legal-content *:active {
transform: none !important;
box-shadow: none !important;
text-shadow: none !important;
transition: none !important;
animation: none !important;
}