feat: add all-team filter to mh analysis
This commit is contained in:
@@ -817,6 +817,20 @@ body {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.list-toolbar-group {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.list-toolbar-divider {
|
||||
width: 1px;
|
||||
align-self: stretch;
|
||||
min-height: 36px;
|
||||
background: #dbe2ea;
|
||||
}
|
||||
|
||||
.list-mode-btn {
|
||||
border: 1px solid #c7d2fe;
|
||||
background: #eef2ff;
|
||||
|
||||
@@ -1393,12 +1393,16 @@ function openListViewModal(event) {
|
||||
fieldsArea.innerHTML = `
|
||||
<div class="list-toolbar">
|
||||
<div class="list-toolbar-row">
|
||||
<button type="button" onclick="showCurrentListView()" class="list-mode-btn">현재 명단</button>
|
||||
<div class="list-date-group">
|
||||
<div class="list-toolbar-group">
|
||||
<button type="button" onclick="showCurrentListView()" class="list-mode-btn">현재 명단</button>
|
||||
</div>
|
||||
<div class="list-toolbar-divider" aria-hidden="true"></div>
|
||||
<div class="list-toolbar-group list-date-group">
|
||||
<input type="date" id="list-snapshot-date" value="${escapeHtml(defaultDate)}" class="list-date-input">
|
||||
<button type="button" onclick="loadSnapshotListView()" class="list-mode-btn">기준일 조회</button>
|
||||
</div>
|
||||
<div class="list-date-group">
|
||||
<div class="list-toolbar-divider" aria-hidden="true"></div>
|
||||
<div class="list-toolbar-group list-date-group">
|
||||
<input type="date" id="list-compare-from" value="${escapeHtml(defaultDate)}" class="list-date-input">
|
||||
<span class="list-date-separator">~</span>
|
||||
<input type="date" id="list-compare-to" value="${escapeHtml(defaultDate)}" class="list-date-input">
|
||||
|
||||
Reference in New Issue
Block a user