알림목록 단일 선택모드

This commit is contained in:
Macbook
2026-06-07 12:52:58 +09:00
parent 864e5e8eb1
commit a3024ccdf9
3 changed files with 185 additions and 31 deletions
@@ -774,6 +774,35 @@
flex-shrink: 0;
}
.tnl-row-report {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
margin-left: 2px;
padding: 0;
border: 1px solid var(--border);
border-radius: 6px;
background: transparent;
color: var(--text3);
cursor: pointer;
transition: background 0.15s, color 0.15s, border-color 0.15s;
flex-shrink: 0;
}
.tnl-row-report:hover:not(:disabled) {
background: color-mix(in srgb, var(--se-gold, #e6c200) 14%, transparent);
color: var(--se-gold, #e6c200);
border-color: color-mix(in srgb, var(--se-gold, #e6c200) 40%, transparent);
}
.tnl-row-report:disabled {
opacity: 0.45;
cursor: wait;
}
.tnl-row-report--loading svg {
animation: spin 0.8s linear infinite;
}
.tnl-charts-expanded-inner {
display: flex;
flex-direction: column;