104 lines
1.6 KiB
CSS
104 lines
1.6 KiB
CSS
.modalCustom {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1000;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: rgb(0, 0, 0);
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.modal-content-custom {
|
|
width: 30%;
|
|
position: fixed;
|
|
transform: translate(50%, -50%);
|
|
top: 50%;
|
|
right: 50%;
|
|
}
|
|
|
|
.modal-content-custom .modal-body {
|
|
height: auto;
|
|
}
|
|
|
|
.errored {
|
|
animation: shake 300ms;
|
|
color: #eb3434 !important;
|
|
background-color: #fef2f2 !important;
|
|
border: 1px solid #eb3434 !important;
|
|
}
|
|
|
|
.select-alert {
|
|
border: 1px solid #FFFFFF;
|
|
}
|
|
|
|
.textLFontColor,
|
|
.form-control {
|
|
color: #797979;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.textLFontColor span {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btnCreateNew {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
background-color: #84CC16;
|
|
color: #FFFFFF;
|
|
border-radius: 8px;
|
|
padding: 10px 70px;
|
|
}
|
|
|
|
.btnCreateNew:hover {
|
|
background-color: #5f9213;
|
|
}
|
|
|
|
.btnCreateNew,
|
|
.btn-cancel2 {
|
|
width: 100% !important;
|
|
}
|
|
|
|
.spanTitleText {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: #454545;
|
|
}
|
|
|
|
.data-load {
|
|
background-color: #F0F0F0;
|
|
border-radius: 6px;
|
|
padding: 5px;
|
|
height: 180px;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
@media (max-width:1366px) {
|
|
.modal-dialog-scrollable .modal-content {
|
|
max-height: auto;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
|
|
@media (max-width:992px) {
|
|
.modal-content-custom {
|
|
width: 50%;
|
|
}
|
|
}
|
|
|
|
@media (max-width:768px) {
|
|
.modal-content-custom {
|
|
width: 60%;
|
|
}
|
|
}
|
|
|
|
@media (max-width:576px) {
|
|
.modal-content-custom {
|
|
width: 90%;
|
|
}
|
|
} |