diff --git a/index.html b/index.html index be433f4..6143944 100644 --- a/index.html +++ b/index.html @@ -425,6 +425,19 @@ tr:hover td { background: var(--cyan-50); } .norm-issue-emp-name { font-weight: 600; } .norm-issue-emp-meta { font-size: 12px; color: var(--gray-500); } +/* Employee name link */ +.emp-name-link { + color: var(--ink); + font-weight: 600; + text-decoration: none; + cursor: pointer; + border-bottom: 1px dashed var(--gray-300); +} +.emp-name-link:hover { + color: var(--cyan); + border-bottom-color: var(--cyan); +} + /* Responsive */ @media (max-width: 768px) { .header { padding: 12px 16px; } @@ -947,6 +960,34 @@ tr:hover td { background: var(--cyan-50); } + +
+