Scrum4Me/app/globals.css
Scrum4Me Agent 6a2374dd84 fix(debug-mode): use attr(data-debug-id) for tooltip content in globals.css
Vervang attr(data-debug-label) door attr(data-debug-id) in het ::after-blok
zodat de debug-tooltip de BEM-id toont in plaats van het verwijderde label-attribuut.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-09 17:52:17 +02:00

27 lines
676 B
CSS

@import "tailwindcss";
@import "tw-animate-css";
@plugin "@tailwindcss/typography";
@import "./styles/theme.css";
/* Debug-mode overlay (alleen actief wanneer body.debug-mode is gezet door dev-only toggle) */
body.debug-mode [data-debug-id] {
outline: 2px dashed var(--info);
outline-offset: 1px;
position: relative;
}
body.debug-mode [data-debug-id]:hover::after {
content: attr(data-debug-id);
position: absolute;
top: 0;
left: 0;
background: var(--info-container);
color: var(--info-container-foreground);
font-size: 10px;
line-height: 1.2;
padding: 2px 4px;
white-space: nowrap;
border-radius: 2px;
z-index: 9999;
pointer-events: none;
}