Marktbewertung
@@ -326,6 +326,13 @@
otherButton.setAttribute('aria-expanded', 'false');
}
});
+ document.querySelectorAll('.sg-help-icon-wrap').forEach((helpWrap) => {
+ const helpButton = helpWrap.querySelector('.sg-help-icon');
+ helpWrap.dataset.open = 'false';
+ if (helpButton) {
+ helpButton.setAttribute('aria-expanded', 'false');
+ }
+ });
wrap.dataset.open = String(nextState);
button.setAttribute('aria-expanded', String(nextState));
});
@@ -347,6 +354,13 @@
otherButton.setAttribute('aria-expanded', 'false');
}
});
+ document.querySelectorAll('.sg-sandwich-menu-wrap').forEach((menuWrap) => {
+ const menuButton = menuWrap.querySelector('.sg-sandwich-button');
+ menuWrap.dataset.open = 'false';
+ if (menuButton) {
+ menuButton.setAttribute('aria-expanded', 'false');
+ }
+ });
wrap.dataset.open = String(nextState);
button.setAttribute('aria-expanded', String(nextState));
});
diff --git a/styleguide.css b/styleguide.css
index 976da82..652f3ed 100644
--- a/styleguide.css
+++ b/styleguide.css
@@ -2158,6 +2158,10 @@ section + section {
color: var(--text-vsf-drawer-object-card-body);
}
+.sg-vsf-marktbewertung-card {
+ overflow: visible;
+}
+
/* ========================================================= */
/* Patterns: Text Layouts */
/* ========================================================= */