forked from HANYANG/HANYANG_MES
1345 lines
31 KiB
CSS
1345 lines
31 KiB
CSS
@charset "UTF-8";
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
* {
|
|
font-family: "Pretendard";
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
li,
|
|
label,
|
|
input,
|
|
button,
|
|
a {
|
|
cursor: pointer;
|
|
}
|
|
|
|
ul,
|
|
li,
|
|
ol,
|
|
a {
|
|
list-style: none;
|
|
text-decoration: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
button {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 2px;
|
|
}
|
|
|
|
.point-btn {
|
|
border: solid 1px #828282;
|
|
background-color: #828282;
|
|
color: rgba(255, 255, 255, 0.973);
|
|
border-radius: 3px;
|
|
padding: 8px 30px !important;
|
|
text-wrap: nowrap;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.point-btn:hover {
|
|
color: #828282;
|
|
background-color: rgba(255, 255, 255, 0.973);
|
|
}
|
|
|
|
.basic-btn {
|
|
border: solid 2px transparent;
|
|
border-radius: 5px;
|
|
background-color: #162788;
|
|
color: white;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.basic-btn:hover {
|
|
background-color: white;
|
|
border: solid 2px #162788;
|
|
color: #162788;
|
|
}
|
|
|
|
.reverse-btn:hover {
|
|
background-color: #162788;
|
|
border: solid 2px transparent;
|
|
color: white;
|
|
}
|
|
|
|
.reverse-btn {
|
|
background-color: white;
|
|
border: solid 2px #162788;
|
|
color: #162788;
|
|
border-radius: 5px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.btn-danger {
|
|
height: 100%;
|
|
border: solid 2px red;
|
|
border-radius: 3px;
|
|
color: red;
|
|
background-color: white;
|
|
}
|
|
.btn-danger:hover {
|
|
background-color: red;
|
|
color: white;
|
|
}
|
|
|
|
.close-btn {
|
|
border: solid 2px #cf5b5b;
|
|
color: white;
|
|
background-color: #cf5b5b;
|
|
border-radius: 3px;
|
|
}
|
|
.close-btn:hover {
|
|
background-color: white;
|
|
color: #cf5b5b;
|
|
}
|
|
|
|
.disabled-btn {
|
|
background-color: rgba(255, 255, 255, 0.973);
|
|
color: #dddddd;
|
|
border-color: #e9e9e9;
|
|
cursor: default;
|
|
}
|
|
.disabled-btn:hover {
|
|
background-color: rgba(255, 255, 255, 0.973);
|
|
color: #dddddd;
|
|
border-color: #e9e9e9;
|
|
}
|
|
|
|
.tab-btn {
|
|
background-color: white;
|
|
color: black;
|
|
border: solid 1px #c7c7c7;
|
|
height: 30px;
|
|
width: 25%;
|
|
border-right: none;
|
|
cursor: pointer;
|
|
}
|
|
.tab-btn:hover {
|
|
background-color: #c7c7c7;
|
|
color: white;
|
|
}
|
|
|
|
.left-round {
|
|
border-radius: 50px 0px 0px 50px;
|
|
}
|
|
|
|
.right-round {
|
|
border-radius: 0px 50px 50px 0px;
|
|
border-right: solid 1px #c7c7c7;
|
|
}
|
|
|
|
.have-image {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.container {
|
|
height: calc(100vh - 48px);
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.container .main-part {
|
|
width: calc(100% - 280px);
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.breadcrumb .inner-container {
|
|
padding: 20px 15px;
|
|
}
|
|
.breadcrumb .inner-container a, .breadcrumb .inner-container i {
|
|
font-size: 15px;
|
|
}
|
|
.breadcrumb .inner-container a:nth-of-type(3) {
|
|
font-size: 20px;
|
|
color: #1F2859;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.sub-container {
|
|
width: 49%;
|
|
height: calc(100% - 25px);
|
|
}
|
|
.sub-container .button-box.main-table {
|
|
display: flex;
|
|
}
|
|
.sub-container .button-box.sub-table {
|
|
display: none;
|
|
}
|
|
|
|
.tab-menu {
|
|
gap: 5px;
|
|
border-bottom: solid 2px #162788;
|
|
}
|
|
.tab-menu li {
|
|
border-left: solid 2px #162788;
|
|
border-right: solid 2px #162788;
|
|
border-top: solid 2px #162788;
|
|
border-radius: 5px 5px 0 0;
|
|
padding: 7px 12px;
|
|
background-color: white;
|
|
color: #162788;
|
|
min-width: 80px;
|
|
text-align: center;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
.tab-menu li:hover {
|
|
background-color: #162788;
|
|
color: white;
|
|
}
|
|
.tab-menu li.on {
|
|
background-color: #162788;
|
|
color: white;
|
|
}
|
|
|
|
.tab-container {
|
|
height: 98%;
|
|
}
|
|
.tab-container > div {
|
|
display: none;
|
|
height: calc(100vh - 320px);
|
|
}
|
|
.tab-container > div .table-box:first-of-type, .tab-container > div .tab-box:first-of-type {
|
|
width: 100%;
|
|
position: relative;
|
|
}
|
|
.tab-container > div .table-box:first-of-type .table-title, .tab-container > div .tab-box:first-of-type .table-title {
|
|
position: absolute;
|
|
top: -35px;
|
|
right: 0;
|
|
margin-bottom: 15px;
|
|
}
|
|
.tab-container > div.on {
|
|
display: flex;
|
|
}
|
|
|
|
.table-title {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: end;
|
|
height: 32px;
|
|
}
|
|
.table-title p {
|
|
font-size: 16px;
|
|
margin: 0;
|
|
text-wrap: nowrap;
|
|
}
|
|
|
|
.contents-container {
|
|
height: calc(100vh - 235px);
|
|
width: 100%;
|
|
}
|
|
.contents-container.full-height {
|
|
height: 100%;
|
|
}
|
|
.contents-container .table-container {
|
|
width: 100%;
|
|
height: 98%;
|
|
margin: 10px 0 30px 0;
|
|
}
|
|
.contents-container .table-container .inner-container {
|
|
width: calc(100% - 80px);
|
|
height: calc(100% - 24px);
|
|
border-radius: 5px;
|
|
border: 1px solid #e9e9e9;
|
|
padding: 24px 15px 0px 15px;
|
|
}
|
|
.contents-container .table-container .inner-container .sub-table .table-box {
|
|
width: 49%;
|
|
}
|
|
|
|
.table-container {
|
|
height: 90%;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.inner-container {
|
|
margin: 0 25px;
|
|
padding: 0 15px;
|
|
}
|
|
.inner-container > .flexrow,
|
|
.inner-container > .flexcol {
|
|
height: calc(100% - 15px);
|
|
}
|
|
|
|
.table-box {
|
|
width: 100%;
|
|
height: 98%;
|
|
}
|
|
|
|
.sub-table.flexrow, .inner-container.flexrow {
|
|
width: 100%;
|
|
}
|
|
.sub-table.flexrow > .table-box, .inner-container.flexrow > .table-box {
|
|
width: 49%;
|
|
}
|
|
.sub-table.flexrow > .flexcol, .inner-container.flexrow > .flexcol {
|
|
width: 49%;
|
|
}
|
|
|
|
.flexcol {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.flexcol > .table-box {
|
|
width: 100%;
|
|
height: 49%;
|
|
}
|
|
.flexcol > .flexrow {
|
|
height: 49%;
|
|
}
|
|
|
|
.tb-height-full {
|
|
height: calc(100vh - 320px);
|
|
}
|
|
|
|
.tb-height-half {
|
|
height: calc(50vh - 205px);
|
|
}
|
|
|
|
.tb-height-30 {
|
|
height: calc(100vh - 600px);
|
|
}
|
|
|
|
.label-tag {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 25px;
|
|
width: 60px;
|
|
border-radius: 5px;
|
|
}
|
|
.label-tag span {
|
|
width: 6px;
|
|
height: 100%;
|
|
margin-right: 9px;
|
|
}
|
|
|
|
.blue-back {
|
|
background-color: #d2e7ff;
|
|
}
|
|
|
|
.green-back {
|
|
background-color: #d2ffd5;
|
|
}
|
|
|
|
.orange-back {
|
|
background-color: #ffe0d2;
|
|
}
|
|
|
|
.gray-back {
|
|
background-color: #d9d9d9;
|
|
}
|
|
|
|
header {
|
|
background: #1F2859;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 48px;
|
|
padding: 0px 25px;
|
|
}
|
|
|
|
header .logo-container {
|
|
margin-left: 50px;
|
|
}
|
|
|
|
header .logo-container .logo-box {
|
|
background: url(../img/logo.png);
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
height: 36px;
|
|
width: 166px;
|
|
}
|
|
|
|
header .status-menu ul {
|
|
list-style: none;
|
|
display: flex;
|
|
gap: 10px;
|
|
}
|
|
|
|
header .status-menu ul li:not(:last-child) {
|
|
padding: 0 10px;
|
|
border-right: solid 2px #CFD5FC;
|
|
}
|
|
|
|
header .status-menu ul li a {
|
|
text-decoration: none;
|
|
color: #CFD5FC;
|
|
}
|
|
|
|
.side-nav {
|
|
max-width: 280px;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
height: 100%;
|
|
border-right: solid 1px #e9e9e9;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
background: white;
|
|
}
|
|
|
|
.container.on .side-nav {
|
|
width: 88px;
|
|
overflow-y: visible;
|
|
align-items: center;
|
|
}
|
|
|
|
.container.on .side-nav .side-menu ul.fancytree-plain.fancytree-container {
|
|
position: static;
|
|
}
|
|
|
|
.container.on .side-nav .side-menu ul.fancytree-plain.fancytree-container > li {
|
|
position: relative;
|
|
}
|
|
|
|
.container.on .side-nav .side-menu ul.fancytree-plain.fancytree-container > li span.fancytree-expander, .container.on .side-nav .side-menu ul.fancytree-plain.fancytree-container > li span.fancytree-title {
|
|
display: none;
|
|
}
|
|
|
|
.container.on .side-nav .side-menu ul.fancytree-plain.fancytree-container > li span.fancytree-custom-icon {
|
|
margin: 0;
|
|
}
|
|
|
|
.container.on .side-nav .side-menu ul.fancytree-plain.fancytree-container > li ul {
|
|
position: absolute;
|
|
display: block;
|
|
left: 56px;
|
|
top: 0;
|
|
width: 250px;
|
|
background: #e9e9e9;
|
|
z-index: 2;
|
|
min-height: 52px;
|
|
max-height: 294px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.container.on .side-nav .side-menu ul.fancytree-plain.fancytree-container > li ul li span.fancytree-title {
|
|
color: black;
|
|
display: block;
|
|
}
|
|
|
|
.container.on .side-nav .fold-btn-container {
|
|
margin: 0 0 30px 0;
|
|
padding-left: 0;
|
|
width: auto;
|
|
}
|
|
|
|
.container.on .side-nav .fold-btn-container .fold-btn {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.container.on .main-part {
|
|
width: calc(100% - 88px);
|
|
}
|
|
|
|
.side-nav .fold-btn-container {
|
|
margin-bottom: 30px;
|
|
margin-top: 50px;
|
|
padding-left: 10%;
|
|
width: 80%;
|
|
}
|
|
|
|
.side-nav .fold-btn-container .fold-btn {
|
|
width: 40px;
|
|
height: 40px;
|
|
background-image: url(../img/foldIcon.svg);
|
|
background-size: 17px 19.5px;
|
|
border-radius: 5px;
|
|
border: 1px solid #e0e0e0;
|
|
background-color: #fafafa;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container {
|
|
border: none;
|
|
padding: 0px;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container > li > span {
|
|
border-bottom: solid 1px #e9e9e9;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li {
|
|
min-height: 72px;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li > span {
|
|
height: 72px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li > span:hover span.fancytree-title, .side-nav .side-menu ul.fancytree-plain.fancytree-container li > span:active span.fancytree-title {
|
|
color: #3c3c3c;
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li > span > span {
|
|
color: #3c3c3c;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li > span > span.fancytree-custom-icon {
|
|
color: #98A7FA;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li > span.fancytree-node.fancytree-active span.fancytree-title {
|
|
color: #3c3c3c;
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li > span.fancytree-node.fancytree-active:hover span.fancytree-title, .side-nav .side-menu ul.fancytree-plain.fancytree-container li > span.fancytree-node.fancytree-active:active span.fancytree-title {
|
|
color: #3c3c3c;
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li ul {
|
|
padding: 0px;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li ul li {
|
|
min-height: 48px;
|
|
border-bottom: 1px solid #E1E4F9;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li ul li > span {
|
|
height: 48px;
|
|
width: -moz-fit-content;
|
|
width: fit-content;
|
|
padding-left: 1.5em;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li ul li > span span.fancytree-title {
|
|
font-size: 14px;
|
|
color: #4A5ED2;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li ul li:hover {
|
|
background-color: #E1E4F9;
|
|
}
|
|
|
|
.side-nav .side-menu ul.fancytree-plain.fancytree-container li ul li:hover span.fancytree-title {
|
|
color: #4A5ED2;
|
|
}
|
|
|
|
.side-nav .side-menu > ul > li > ul > li {
|
|
height: 47px;
|
|
}
|
|
|
|
.side-nav .side-menu > ul > li > ul > li > span {
|
|
color: #4A5ED2;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.menu-icon {
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
|
|
.menu-icon.base-icon {
|
|
background-image: url("../img/icon-shield.png");
|
|
}
|
|
|
|
.menu-icon.filed-icon {
|
|
background-image: url("../img/icon-industry.png");
|
|
}
|
|
|
|
.menu-icon.production-icon {
|
|
background-image: url("../img/icon-engineering.png");
|
|
}
|
|
|
|
.menu-icon.system-icon {
|
|
background-image: url("../img/icon-gear.png");
|
|
}
|
|
|
|
.menu-icon.insp-icon {
|
|
background-image: url("../img/icon-clipboard.svg");
|
|
width: 22px;
|
|
height: 22px;
|
|
margin-left: 0.6em;
|
|
}
|
|
|
|
.menu-icon.facility-icon {
|
|
background-image: url("../img/icon-cone.svg");
|
|
}
|
|
|
|
.table-header {
|
|
width: 100%;
|
|
margin-top: 25px;
|
|
}
|
|
.table-header > div {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: 100px;
|
|
height: 84px;
|
|
overflow-x: auto;
|
|
border-radius: 5px;
|
|
border: 1px solid #e9e9e9;
|
|
background: #FAFAFA;
|
|
}
|
|
.table-header .search-container {
|
|
display: flex;
|
|
justify-content: start;
|
|
gap: 20px;
|
|
font-size: 13px;
|
|
}
|
|
.table-header .search-container .input-container.checkbox-container {
|
|
text-align: center;
|
|
align-items: center;
|
|
}
|
|
.table-header .search-container .input-container.checkbox-container label {
|
|
display: inline-block;
|
|
width: 50px;
|
|
}
|
|
.table-header .search-container .input-container.checkbox-container .input-box {
|
|
justify-content: center;
|
|
height: 32px;
|
|
align-items: center;
|
|
}
|
|
.table-header .search-container .input-container.checkbox-container .input-box input {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
.table-header .search-container .input-container > div {
|
|
display: flex;
|
|
gap: 2px;
|
|
}
|
|
.table-header .search-container .input-box {
|
|
position: relative;
|
|
}
|
|
.table-header .search-container .input-box svg {
|
|
position: absolute;
|
|
width: 1em;
|
|
height: 1em;
|
|
right: 10px;
|
|
top: 10px;
|
|
color: #162788;
|
|
cursor: pointer;
|
|
}
|
|
.table-header .search-container .input-box input, .table-header .search-container .input-box select {
|
|
border-radius: 3px;
|
|
border: 1px solid #D9D9D9;
|
|
background: #FFF;
|
|
height: 32px;
|
|
width: 140px;
|
|
padding: 0 10px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.table-header .button-container {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.button-box {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
.button-box button {
|
|
padding: 7px 12px;
|
|
}
|
|
|
|
.table-container .button-box {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
height: 5px;
|
|
width: 5px;
|
|
}
|
|
|
|
/* 스크롤바 트랙 (바탕) 스타일 */
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1; /* 트랙의 배경 색상 */
|
|
}
|
|
|
|
/* 스크롤바 핸들 (움직이는 부분) 스타일 */
|
|
::-webkit-scrollbar-thumb {
|
|
background: #B0B0B0; /* 핸들의 배경 색상 */
|
|
}
|
|
|
|
/* 스크롤바 핸들:hover 스타일 */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #7e7e7e; /* 핸들의 배경 색상(마우스 오버 시) */
|
|
}
|
|
|
|
.tabulator.hy-table {
|
|
background-color: white;
|
|
border: none;
|
|
margin-top: 10px;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
.tabulator.hy-table.no-margin {
|
|
margin: 0;
|
|
}
|
|
.tabulator.hy-table .tabulator-header {
|
|
border-top: solid 1px #c7c7c7;
|
|
border-bottom: solid 1px #c7c7c7;
|
|
background-color: #F6F6FC;
|
|
}
|
|
.tabulator.hy-table .tabulator-header .tabulator-col {
|
|
background-color: #F6F6FC;
|
|
border-right: solid 1px #c7c7c7;
|
|
height: 32px;
|
|
justify-content: center;
|
|
}
|
|
.tabulator.hy-table .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
|
|
font-weight: 500;
|
|
padding: 0;
|
|
}
|
|
.tabulator.hy-table .tabulator-row {
|
|
background-color: transparent;
|
|
border: solid 0.5px #e9e9e9;
|
|
border-left: solid 0.5px transparent;
|
|
border-right: solid 0.5px transparent;
|
|
}
|
|
.tabulator.hy-table .tabulator-row:hover {
|
|
background-color: #D9D9D9;
|
|
}
|
|
.tabulator.hy-table .tabulator-row.tabulator-selected {
|
|
background-color: #e9e9e9;
|
|
}
|
|
.tabulator.hy-table .tabulator-row.remove-row {
|
|
background-color: #FFD2D2;
|
|
}
|
|
.tabulator.hy-table .tabulator-row.edit-row {
|
|
background-color: #d2ddff;
|
|
}
|
|
.tabulator.hy-table .tabulator-row.blank-row {
|
|
border: solid 0.5px red;
|
|
}
|
|
.tabulator.hy-table .tabulator-row .tabulator-cell {
|
|
border-right: solid 1px #e9e9e9;
|
|
}
|
|
.tabulator.hy-table .tabulator-row .tabulator-cell.editable-cell, .tabulator.hy-table .tabulator-row .tabulator-cell.tabulator-editable {
|
|
background-color: rgba(255, 253, 221, 0.548);
|
|
}
|
|
.tabulator.hy-table .tabulator-row .tabulator-cell.editable-cell::after, .tabulator.hy-table .tabulator-row .tabulator-cell.tabulator-editable::after {
|
|
content: "◥";
|
|
color: #1F2859;
|
|
position: absolute;
|
|
top: -1px;
|
|
right: -1px;
|
|
line-height: 7px;
|
|
font-size: 7px;
|
|
}
|
|
.tabulator.hy-table .tabulator-footer {
|
|
border: none;
|
|
}
|
|
.tabulator.hy-table .tabulator-footer .tabulator-calcs-holder {
|
|
border: none;
|
|
}
|
|
|
|
.tabulator.group-table .tabulator-header .tabulator-col {
|
|
height: 50px;
|
|
align-items: center;
|
|
}
|
|
.tabulator.group-table .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
|
|
border-top: solid 1px #c7c7c7;
|
|
}
|
|
|
|
.tabulator.groupby .tabulator-row.tabulator-group {
|
|
border-bottom: solid 2px #e9e9e9;
|
|
border-top: none;
|
|
border-right: solid 1px #e9e9e9;
|
|
}
|
|
.tabulator.groupby .tabulator-row.tabulator-group.select {
|
|
background-color: #c7c7c7;
|
|
}
|
|
.tabulator.groupby .tabulator-row.tabulator-group span {
|
|
display: none;
|
|
}
|
|
|
|
.tabulator.group-table-style .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-content {
|
|
width: 200px;
|
|
}
|
|
.tabulator.group-table-style .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
|
|
display: none;
|
|
}
|
|
.tabulator.group-table-style .tabulator-row {
|
|
border-bottom: none;
|
|
}
|
|
.tabulator.group-table-style .tabulator-row .tabulator-cell {
|
|
border-bottom: solid 1px #e9e9e9;
|
|
}
|
|
.tabulator.group-table-style .tabulator-row .tabulator-cell:nth-of-type(-n+6) {
|
|
border-bottom: none;
|
|
}
|
|
.tabulator.group-table-style .tabulator-row:nth-of-type(5n+1) .tabulator-cell:nth-of-type(2n+7), .tabulator.group-table-style .tabulator-row:nth-of-type(5n+4) .tabulator-cell:nth-of-type(2n+7) {
|
|
width: 200px !important;
|
|
}
|
|
.tabulator.group-table-style .tabulator-row:nth-of-type(5n+1) .tabulator-cell:nth-of-type(2n+8), .tabulator.group-table-style .tabulator-row:nth-of-type(5n+4) .tabulator-cell:nth-of-type(2n+8) {
|
|
display: none !important;
|
|
}
|
|
.tabulator.group-table-style .tabulator-row:nth-of-type(5n+5) {
|
|
border-bottom: solid 1px #e9e9e9;
|
|
}
|
|
|
|
/* 기본테이블 */
|
|
.bg-light {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.font-weight-bold td {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.tb-height-full .cont_hfix {
|
|
height: calc(100% - 44px);
|
|
margin-top: 10px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.basetable, .vue-table {
|
|
min-width: 100%;
|
|
border-collapse: separate;
|
|
border-bottom: 1px solid #e9e9e9;
|
|
border-top: 1px solid #e9e9e9;
|
|
}
|
|
.basetable th, .vue-table th {
|
|
text-align: center;
|
|
background-color: #f6f6fc;
|
|
font-weight: 500;
|
|
color: #555;
|
|
height: 30px;
|
|
min-width: 100px;
|
|
padding: 0;
|
|
margin: 0;
|
|
border-top: solid 1px #c7c7c7;
|
|
border-bottom: solid 1px #c7c7c7;
|
|
}
|
|
.basetable th:not(:first-child), .vue-table th:not(:first-child) {
|
|
border-left: 1px solid #c7c7c7;
|
|
}
|
|
.basetable td, .vue-table td {
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
border-bottom: 1px solid #e9e9e9;
|
|
height: 31px;
|
|
}
|
|
.basetable td:not(:last-child:first-child), .vue-table td:not(:last-child:first-child) {
|
|
border-left: 1px solid #e9e9e9;
|
|
}
|
|
.basetable td:last-child:first-child, .vue-table td:last-child:first-child {
|
|
border-right: 1px solid #e9e9e9;
|
|
}
|
|
.basetable thead.top_sticky, .basetable .basetable thead.top_sticky th, .vue-table thead.top_sticky, .vue-table .basetable thead.top_sticky th {
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.vue-table {
|
|
width: 3000px;
|
|
}
|
|
.vue-table th {
|
|
min-width: auto;
|
|
}
|
|
|
|
.tabulator.hy-table.hide-sub-column .tabulator-header .tabulator-col.tabulator-col-group.width-150 {
|
|
width: 150px;
|
|
}
|
|
.tabulator.hy-table.hide-sub-column .tabulator-header .tabulator-col.tabulator-col-group.width-160 {
|
|
width: 160px;
|
|
}
|
|
.tabulator.hy-table.hide-sub-column .tabulator-header .tabulator-col.tabulator-col-group.width-180 {
|
|
width: 180px;
|
|
}
|
|
.tabulator.hy-table.hide-sub-column .tabulator-header .tabulator-col.tabulator-col-group.width-200 {
|
|
width: 200px;
|
|
}
|
|
.tabulator.hy-table.hide-sub-column .tabulator-header .tabulator-col.tabulator-col-group.width-230 {
|
|
width: 230px;
|
|
}
|
|
.tabulator.hy-table.hide-sub-column .tabulator-header .tabulator-col.tabulator-col-group.width-800 {
|
|
width: 800px;
|
|
}
|
|
.tabulator.hy-table.hide-sub-column .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {
|
|
display: none;
|
|
}
|
|
|
|
.tabulator.hy-table .tabulator-calcs {
|
|
position: relative;
|
|
}
|
|
.tabulator.hy-table .tabulator-calcs .tabulator-cell:nth-of-type(1) {
|
|
position: sticky;
|
|
top: 0;
|
|
left: 0;
|
|
border-right: solid 2px #c7c7c7;
|
|
}
|
|
.tabulator.hy-table .tabulator-calcs .tabulator-cell:nth-of-type(1)::after {
|
|
content: "소계";
|
|
font-weight: 700;
|
|
}
|
|
.tabulator.hy-table .tabulator-footer .tabulator-calcs .tabulator-cell:nth-of-type(1)::after {
|
|
content: "합계";
|
|
}
|
|
|
|
.status-table.vue-table tbody tr td.on {
|
|
background-color: #e9e9e9;
|
|
cursor: pointer;
|
|
}
|
|
|
|
form {
|
|
height: 100%;
|
|
}
|
|
form[name=frmWorkData] {
|
|
width: 80vw;
|
|
}
|
|
form[name=frmWorkData] > div {
|
|
width: 100%;
|
|
}
|
|
form[name=frmWorkData] > div.form-button-container {
|
|
height: 40px;
|
|
border-radius: 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
form[name=frmWorkData] > div.form-button-container .form-button-box {
|
|
border-bottom: solid 2px #162788;
|
|
width: 50%;
|
|
}
|
|
form[name=frmWorkData] > div.form-button-container .form-button-box button {
|
|
width: -moz-fit-content;
|
|
width: fit-content;
|
|
padding: 0px 10px;
|
|
height: 32px;
|
|
border: solid 2px #162788;
|
|
border-bottom: none;
|
|
border-radius: 5px 5px 0 0;
|
|
background: white;
|
|
color: #162788;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
}
|
|
form[name=frmWorkData] > div.form-button-container .form-button-box button:hover, form[name=frmWorkData] > div.form-button-container .form-button-box button.on {
|
|
background: #162788;
|
|
color: white;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .info-container {
|
|
height: -moz-fit-content;
|
|
height: fit-content;
|
|
width: 50%;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container {
|
|
height: 510px;
|
|
width: 50%;
|
|
overflow: hidden;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents {
|
|
width: 100%;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .form-header {
|
|
width: 100%;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .form-header textarea {
|
|
height: 100px;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .form-header .add-btn {
|
|
margin-right: 10px;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .table-box {
|
|
width: 100%;
|
|
height: calc(100% - 70px);
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .table-box > div {
|
|
width: 100%;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .table-box .tab-menu {
|
|
width: 100%;
|
|
border: none;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .table-box .tab-menu li {
|
|
border-radius: 50px;
|
|
border: solid 2px #4A5ED2;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .table-box .tab-menu li:hover {
|
|
background-color: #4A5ED2;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .table-box .tab-menu li.on {
|
|
background-color: #4A5ED2;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .table-box .table-title {
|
|
width: 99%;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .table-box .table-title .button-box {
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .detail-contents .table-box .hy-table {
|
|
margin: 0;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .height-full {
|
|
height: 100% !important;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .height-89 {
|
|
height: 89% !important;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .height-half {
|
|
height: calc(100% - 220px) !important;
|
|
}
|
|
form[name=frmWorkData] > div.form-contents .detail-container .round-tab-box {
|
|
width: calc(100% - 120px);
|
|
}
|
|
form[name=frmFacility] {
|
|
width: 800px;
|
|
height: 525px;
|
|
}
|
|
form[name=frmPartner] {
|
|
width: 800px;
|
|
min-height: 525px;
|
|
height: 70vh;
|
|
}
|
|
form .add-btn, form .remove-btn {
|
|
padding: 7px 12px;
|
|
cursor: pointer;
|
|
}
|
|
form .form-contents {
|
|
height: 70% !important;
|
|
overflow: hidden;
|
|
}
|
|
form .form-contents .form-box {
|
|
overflow: auto;
|
|
background: #F6F6FC;
|
|
height: 100%;
|
|
padding: 20px 0px;
|
|
}
|
|
form .form-contents .form-box .input-container {
|
|
width: calc(100% - 10px);
|
|
height: -moz-fit-content;
|
|
height: fit-content;
|
|
flex-wrap: wrap;
|
|
}
|
|
form .form-contents .form-box .input-container .input-box {
|
|
width: 100%;
|
|
height: -moz-fit-content;
|
|
height: fit-content;
|
|
align-items: center;
|
|
}
|
|
form .form-contents .form-box .input-container .input-box label, form .form-contents .form-box .input-container .input-box .input-title {
|
|
display: inline-block;
|
|
width: 100px;
|
|
padding-right: 10px;
|
|
margin: 0;
|
|
text-align: end;
|
|
}
|
|
form .form-contents .form-box .input-container .input-box input[type=button] {
|
|
width: 80px;
|
|
margin: 0 15px;
|
|
text-align: center;
|
|
}
|
|
form .form-contents .form-box .input-container .input-box label.form_toggle, form .form-contents .form-box .input-container .input-box .input-title.form_toggle {
|
|
text-align: start;
|
|
}
|
|
form .form-contents .form-box .input-container .input-box .check-label {
|
|
display: inline-flex;
|
|
width: 100px;
|
|
align-items: center;
|
|
}
|
|
form .form-contents .form-box .input-container .input-box .check-label label {
|
|
width: auto;
|
|
}
|
|
form .form-contents .form-box .input-container .input-box input[type=text], form .form-contents .form-box .input-container .input-box input[type=tel], form .form-contents .form-box .input-container .input-box input[type=datetime-local], form .form-contents .form-box .input-container .input-box select, form .form-contents .form-box .input-container .input-box textarea {
|
|
border: solid 1px #c7c7c7;
|
|
box-sizing: border-box;
|
|
height: 30px;
|
|
width: calc(100% - 120px);
|
|
min-width: 100px;
|
|
padding: 0px 10px;
|
|
}
|
|
form .form-contents .form-box .input-container .input-box input[type=text].sub-input, form .form-contents .form-box .input-container .input-box input[type=tel].sub-input, form .form-contents .form-box .input-container .input-box input[type=datetime-local].sub-input, form .form-contents .form-box .input-container .input-box select.sub-input, form .form-contents .form-box .input-container .input-box textarea.sub-input {
|
|
width: calc(100% - 6px);
|
|
}
|
|
form .form-contents .form-box .input-container .input-box .input-text {
|
|
width: calc(50% - 65px) !important;
|
|
text-align: center;
|
|
display: inline-block;
|
|
}
|
|
form .form-contents .img-container {
|
|
padding-right: 10px;
|
|
height: 100%;
|
|
gap: 5%;
|
|
}
|
|
form .form-contents .img-container .img-box {
|
|
height: 85%;
|
|
width: calc(100% - 2px);
|
|
border: solid 1px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
background-color: white;
|
|
}
|
|
form .form-contents .img-container .img-box .img-cover {
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(8, 8, 8, 0.322);
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
form .form-contents .img-container .img-box .img-cover input {
|
|
width: 30%;
|
|
height: 10%;
|
|
text-align: center;
|
|
font-size: 1.2em;
|
|
}
|
|
form .form-contents .img-container .img-box:hover .img-cover {
|
|
display: flex;
|
|
}
|
|
form .form-contents .img-container label {
|
|
height: 10%;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 1.2em;
|
|
}
|
|
form .form-contents .img-container label input {
|
|
display: none;
|
|
}
|
|
form .table-box {
|
|
width: 98%;
|
|
}
|
|
form .btnFindAddr {
|
|
height: 98%;
|
|
border-radius: 5px;
|
|
border: solid 2px #f38814;
|
|
background-color: #f38814;
|
|
color: white;
|
|
}
|
|
form .btnFindAddr:hover {
|
|
background: white;
|
|
border: solid 2px #f38814 !important;
|
|
color: #f38814;
|
|
}
|
|
|
|
#awn-popup-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: fixed;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
z-index: 10;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body {
|
|
background: #fff;
|
|
box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.2);
|
|
border-radius: 5px;
|
|
font-size: 14px;
|
|
max-width: -moz-max-content;
|
|
max-width: max-content;
|
|
padding: 24px;
|
|
position: relative;
|
|
word-break: break-word;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body > div {
|
|
height: 100%;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body > div .awn-form .awn-popup-search {
|
|
height: 100%;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body > div .awn-form .table-box {
|
|
padding: 0 10px;
|
|
width: calc(100% - 20px);
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup {
|
|
height: 500px;
|
|
min-width: 500px;
|
|
overflow: hidden;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup.free-height {
|
|
height: auto;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .awn-popup-title {
|
|
font-size: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .awn-popup-title i {
|
|
font-size: 20px;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .awn-popup-search .s_exp {
|
|
margin: 0 0 10px 0;
|
|
color: #1F2859;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .awn-popup-search .s_fld {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 6px;
|
|
align-items: center;
|
|
height: 32px;
|
|
margin-bottom: 10px;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .awn-popup-search .s_fld select, #awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .awn-popup-search .s_fld input {
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
padding: 0 10px;
|
|
border-radius: 3px;
|
|
border: 1px solid #D9D9D9;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .title-container {
|
|
justify-content: space-between;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .awn-popup-content {
|
|
max-height: 430px;
|
|
height: 100%;
|
|
padding: 0 10px;
|
|
overflow: auto;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .awn-popup-content .tabulator.hy-table {
|
|
height: 85%;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .form-contents {
|
|
height: 90% !important;
|
|
overflow: auto;
|
|
}
|
|
#awn-popup-wrapper .awn-popup-body .awn-popup-confirm.custom-popup .form-contents .form-box {
|
|
height: -moz-fit-content;
|
|
height: fit-content;
|
|
overflow: visible;
|
|
}
|
|
|
|
#awn-popup-wrapper .awn-popup-body.awn-popup-confirm {
|
|
height: auto;
|
|
}
|
|
|
|
.login-section {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.login-section .login-container {
|
|
display: flex;
|
|
gap: 80px;
|
|
}
|
|
|
|
.login-section .login-container .image-container .image-box {
|
|
background: url("../img/login.png"), lightgray 50%/cover no-repeat;
|
|
min-height: 465px;
|
|
min-width: 400px;
|
|
height: 60vh;
|
|
width: 24vw;
|
|
border-radius: 15px;
|
|
margin-right: 10px;
|
|
background-position: center;
|
|
background-size: cover;
|
|
}
|
|
|
|
.login-section .login-container .form-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
gap: 40px;
|
|
}
|
|
|
|
.login-section .login-container .form-container .form-title p {
|
|
color: #162788;
|
|
font-family: "GmarketSans";
|
|
font-size: 27px;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
}
|
|
|
|
.login-section .login-container .form-container .login-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24px;
|
|
min-width: 324px;
|
|
width: 20vw;
|
|
height: -moz-fit-content;
|
|
height: fit-content;
|
|
}
|
|
.login-section .login-container .form-container .login-form .login-check-field label {
|
|
font-family: "Pretendard";
|
|
}
|
|
|
|
.login-section .login-container .form-container .login-form label {
|
|
font-weight: 300;
|
|
font-size: 14px;
|
|
color: black;
|
|
font-family: "GmarketSans";
|
|
}
|
|
|
|
.login-section .login-container .form-container .login-form .login-put-field label {
|
|
display: block;
|
|
}
|
|
|
|
.login-section .login-container .form-container .login-form .login-put-field input {
|
|
width: calc(100% - 20px);
|
|
height: 40px;
|
|
border: solid 1px rgb(227, 227, 227);
|
|
border-radius: 5px;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.login-section .login-container .form-container .login-form .login-check-field {
|
|
display: flex;
|
|
gap: 5px;
|
|
}
|
|
|
|
.login-section .login-container .form-container .login-form .login-check-field input {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.login-section .login-container .form-container .login-form .submit-btn {
|
|
width: 100%;
|
|
}
|
|
|
|
.login-section .login-container .form-container .login-form .submit-btn button {
|
|
width: 100%;
|
|
height: 40px;
|
|
font-family: "GmarketSans";
|
|
font-weight: 400;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.main-section .main-part {
|
|
background-image: url("../img/background.png");
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
}/*# sourceMappingURL=style.css.map */ |