CSS: - Remove duplicate li::before block in app-search.css - Fix typo: search-reuslt → search-result in app-search.css - Remove commented-out CSS rules in app-flash.css - Add descriptive header comment to all 27 CSS component files JS: - Complete WAI-ARIA Tabs pattern: generate IDs, add aria-controls on tab buttons and aria-labelledby on tab panels (app-tabs.js) - Add JSDoc header comments to ~33 JS files (core + components) - Add explanatory block comment to app-boot.js (why classic IIFE) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
495 B
CSS
35 lines
495 B
CSS
@layer components {
|
|
/* Branding — tenant logo display in sidebar and login. */
|
|
.brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
img.brand-logo {
|
|
width: 30px;
|
|
height: 30px;
|
|
object-fit: contain;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.brand-name {
|
|
line-height: 1;
|
|
font-weight: bold;
|
|
color: var(--app-contrast);
|
|
}
|
|
|
|
.brand-info {
|
|
line-height: 1;
|
|
}
|
|
|
|
.brand-slogan {
|
|
font-size: 0.85em;
|
|
color: var(--app-muted-color);
|
|
}
|
|
|
|
.badge:empty {
|
|
padding: 0;
|
|
}
|
|
}
|