실적관리 추가
This commit is contained in:
@@ -1,3 +1,48 @@
|
||||
<style>
|
||||
.no-wrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.header-divider {
|
||||
width: 1px;
|
||||
height: 22px;
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
margin: 0 10px;
|
||||
}
|
||||
|
||||
.gap-2 {
|
||||
gap: 1.5rem !important;
|
||||
}
|
||||
|
||||
.top-stat-text,
|
||||
.top-fax-text {
|
||||
color: #000;
|
||||
max-width: 520px;
|
||||
/* white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 400px; */
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
/* 애니메이션 클래스 */
|
||||
.slide-in-left {
|
||||
animation: slideInLeft 0.5s ease-out;
|
||||
}
|
||||
|
||||
@keyframes slideInLeft {
|
||||
from {
|
||||
transform: translateX(-40px);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
transform: translateX(0);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="app-header header-shadow">
|
||||
<div class="app-header__logo">
|
||||
<div class="logo-src"></div>
|
||||
@@ -31,6 +76,25 @@
|
||||
</span>
|
||||
</div>
|
||||
<div class="app-header__content">
|
||||
<div class="app-header-left d-flex flex-column flex-lg-row align-items-start align-items-lg-center gap-2">
|
||||
<!-- 통계 -->
|
||||
<div class="d-flex align-items-center gap-2 flex-nowrap">
|
||||
<input type="date" class="form-control form-control-sm iText hasDatepicker" name="statDate"
|
||||
id="statDate" style="width: 120px;">
|
||||
<span onclick="goStats()" class="text-muted" style="cursor:pointer;">조회</span>
|
||||
<span id="statView" class="top-stat-text">
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<div class="header-divider d-none d-lg-block"></div>
|
||||
|
||||
<!-- 팩스 -->
|
||||
<div class="d-flex align-items-center gap-2">
|
||||
<span onclick="clickFax()" class="text-muted" style="cursor:pointer;">팩 스</span>
|
||||
<span id="fax1" class="top-fax-text">
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="app-header-left">
|
||||
<div class="search-wrapper">
|
||||
<div class="input-holder">
|
||||
|
||||
Reference in New Issue
Block a user