fix : css 수정
parent
6d0430069c
commit
5b879eb215
@ -0,0 +1,89 @@
|
|||||||
|
|
||||||
|
caption {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 필수 항목 캡션 */
|
||||||
|
label.required:after {
|
||||||
|
content: '*';
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=file] {
|
||||||
|
height: 24px;
|
||||||
|
padding: 0 5px; }
|
||||||
|
|
||||||
|
input[type=text]:disabled, input[type=text]:read-only {
|
||||||
|
background-color: #eceef1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*2023.01.26 dataset css 추가*/
|
||||||
|
input[data-fmt-type=number] {
|
||||||
|
text-align: right;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
input[data-fmt-type=time], input[data-fmt-type=day] {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/*팝업*/
|
||||||
|
.popup {
|
||||||
|
clear: both;
|
||||||
|
overflow: hidden;
|
||||||
|
position: relative;
|
||||||
|
text-align: center;
|
||||||
|
min-width: 1440px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*---- 모달 ----*/
|
||||||
|
.modal-wrap {
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: none;
|
||||||
|
background: rgba(0, 0, 0, 0.7);
|
||||||
|
z-index: 1000; }
|
||||||
|
.modal-wrap .modal-cell {
|
||||||
|
display: table-cell;
|
||||||
|
vertical-align: middle;
|
||||||
|
text-align: center;
|
||||||
|
overflow-y: scroll; }
|
||||||
|
.modal-wrap .modal-cell .cont-box {
|
||||||
|
display: none;
|
||||||
|
position: relative;
|
||||||
|
margin: 0 auto;
|
||||||
|
background: #fff;
|
||||||
|
width: 500px;
|
||||||
|
padding: 40px 30px;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
box-sizing: border-box; }
|
||||||
|
.modal-wrap .modal-cell .cont-box .btn-box {
|
||||||
|
padding-top: 10px;
|
||||||
|
margin-bottom: -10px; }
|
||||||
|
.modal-wrap .modal-cell .cont-box .btn-close {
|
||||||
|
position: absolute;
|
||||||
|
top: 10px;
|
||||||
|
right: 10px;
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
font-size: 30px; }
|
||||||
|
.modal-wrap .modal-cell .cont-box .btn-close::after {
|
||||||
|
content: "\f00d"; }
|
||||||
|
|
||||||
|
|
||||||
|
@media screen and (max-width: 760px) {
|
||||||
|
.modal-wrap .modal-cell .cont-box {
|
||||||
|
width: 90%; }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
img.ui-datepicker-trigger {
|
||||||
|
position: absolute;
|
||||||
|
margin-left: -25px;
|
||||||
|
margin-top: 6px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue