diff --git a/index.html b/index.html index 092cf8c..1d23ddd 100644 --- a/index.html +++ b/index.html @@ -403,6 +403,28 @@ tr:hover td { background: var(--cyan-50); } } .norm-hint-item .btn-xs:hover { opacity: .8; } +/* Norm issue modal — employee pick list */ +.norm-issue-list { + display: flex; + flex-direction: column; + gap: 6px; + max-height: 40vh; + overflow-y: auto; +} +.norm-issue-emp { + display: flex; + align-items: center; + justify-content: space-between; + gap: 10px; + padding: 10px 14px; + background: var(--gray-100); + border-radius: var(--radius); + font-size: 13px; +} +.norm-issue-emp-info { min-width: 0; } +.norm-issue-emp-name { font-weight: 600; } +.norm-issue-emp-meta { font-size: 12px; color: var(--gray-500); } + /* Responsive */ @media (max-width: 768px) { .header { padding: 12px 16px; } @@ -833,6 +855,18 @@ tr:hover td { background: var(--cyan-50); } + + +