Files
Backend-Api/ServiceHost/wwwroot/AssetsAdminNew/EmployeesDocument/css/ModalUploadDocument.css
2025-03-09 21:52:06 +03:30

369 lines
6.6 KiB
CSS

.errored {
animation: shake 300ms;
color: #eb3434 !important;
background-color: #fef2f2 !important;
border: 1px solid #eb3434 !important;
}
.uploaderSign {
position: absolute;
bottom: -1px;
right: 0;
width: 100%;
height: 100%;
border-radius: 6px;
}
.uploaderSign.admin {
background: linear-gradient(360deg, rgba(63, 63, 63, 0.76) 0%, rgba(29, 83, 133, 0) 100%);
}
.uploaderSign.client {
background: linear-gradient(360deg, rgba(52, 146, 235, 0.76) 0%, rgba(29, 83, 133, 0) 100%);
}
.uploaderSign span {
color: #fff;
position: absolute;
bottom: 0;
right: 50%;
transform: translate(50%, -1px);
font-weight: 900;
font-size: 12px;
}
.reasonReject {
color: #2d2d2d;
}
.w90 {
width: 90%;
}
.pdTitle {
width: 100%;
}
.pdHeaderTitle1 {
font-size: 15px;
font-weight: 600;
}
.pdHeaderTitle2 {
font-size: 12px;
font-weight: 500;
}
/*.pdBox.justUploaded {
border: 1px solid #84cc16;
}*/
.pdBoxGrid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
grid-template-rows: repeat(4, minmax(0, 1fr));
grid-auto-flow: column;
gap: 9px;
}
.btn-cancel2 {
font-size: 14px;
font-weight: 500;
background-color: #454D5C;
color: #FFFFFF;
border-radius: 8px;
padding: 10px 70px;
}
.btn-cancel2:hover {
opacity: .7;
}
.pdBox {
background-color: #F8F8F8;
border-radius: 15px;
border: 1px solid #E7E7E7;
width: 100%;
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px;
overflow: hidden;
}
.pdBox.complete {
/* background-color: #D0FFF7;
border: 1px solid #2BBABA;*/
background-color: #ECFCCB;
border: 1px solid #84CC16;
}
.pdBox.discomplete {
background-color: #FFD9D9;
border: 1px solid #FF5D5D;
}
.pdBox.pending {
/* background-color: #FCE7C9;
border: 1px solid #FDBA74;*/
background-color: #F8F8F8;
border: 1px solid #E7E7E7;
}
.pdImageBox {
background-color: #E6E6E6;
border-radius: 6px;
border: 1px solid #D3D3D3;
width: 100px;
height: 60px;
text-align: center;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.pdImageBox .completeSign {
position: absolute;
top: -10px;
right: -10px;
}
.pdImageBox .discompleteSign {
position: absolute;
top: -10px;
right: -10px;
}
.pdImageBox .pendingSign {
position: absolute;
top: -10px;
right: -10px;
}
.pdImageBox img {
object-fit: cover;
object-position: center;
border-radius: 6px;
width: 100px;
height: 60px;
}
.pdTitle span {
color: #FF5E5E;
font-weight: 500;
font-size: 16px;
}
.resultMessage {
text-align: center;
width: 70px;
font-size: 12px;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
}
.resultMessage div {
border-radius: 50px;
padding: 3px 0;
color: #fff;
width: 60px;
}
.resultMessage div.pendingMessage {
background-color: #FDBA74;
position: relative;
top: 20px;
}
.resultMessage div.confirmedMessage {
background-color: #84CC16;
position: relative;
top: 20px;
}
.resultMessage div.rejectMessage {
background-color: #FF7272;
position: relative;
top: 20px;
}
.pdTitle2 {
font-weight: 400;
font-size: 13px;
max-width: 80%;
word-wrap: break-word;
height: 40px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.btnUploadingPD {
background-color: #2BBABA;
color: #ffffff;
font-size: 12px;
padding: 3px 12px;
border-radius: 4px;
transition: all .3s ease-in;
white-space: nowrap;
width: 80px;
}
.btnUploadingPD:hover {
background-color: #248E8E;
}
.btnDeletingPD {
background-color: #c76161;
color: #ffffff;
font-size: 12px;
padding: 3px 12px;
border-radius: 4px;
transition: all .3s ease-in;
white-space: nowrap;
width: 80px;
}
.btnDeletingPD:hover {
background-color: #a54e4e;
}
.btnEditEmployee {
background-color: #169BCC;
color: #ffffff;
font-size: 12px;
padding: 3px 0px;
border-radius: 4px;
transition: all .3s ease-in;
white-space: nowrap;
width: 80px;
}
.btnDeletingPD:hover {
background-color: #148BB6;
}
.btnSendToChecker {
background-color: #59CB02;
color: #ffffff;
font-size: 12px;
padding: 3px 0px;
border-radius: 4px;
transition: all .3s ease-in;
white-space: nowrap;
width: 80px;
}
.btnSendToChecker:hover {
background-color: #4EB500;
}
.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: auto !important;
}
@media (max-width: 992px) {
.pdBoxGrid {
grid-template-columns: repeat(1, minmax(0, 1fr));
grid-template-rows: none;
grid-auto-flow: unset;
}
}
@media (max-width: 768px) {
.modal-body {
height: 75vh;
}
/* .uploaderSign {
position: absolute;
top: 42px;
right: 82px;
border: 1px solid red;
width: 15px;
height: 15px;
line-height: 14px;
border-radius: 50%;
color: black !important;
background-color: white;
}*/
.pdBox {
padding: 9px;
}
.pdImageBox {
width: 70px;
height: 40px;
}
.pdImageBox img {
width: 70px;
height: 40px;
}
.btnUploadingPD,
.btnDeletingPD {
font-size: 10px;
padding: 4px 9px;
width: 60px;
}
.btnCreateNew,
.btn-cancel2 {
font-size: 12px !important;
padding: 10px 0 !important;
width: 100% !important;
}
}
@media (max-width: 576px) {
.pdTitle {
font-size: 12px;
}
.pdTitle2 {
font-weight: 300;
word-wrap: break-word;
font-size: 10px;
height: 32px;
}
.resultMessage div.rejectMessage {
top: 15px;
}
.resultMessage {
width: 50px;
font-size: 9px;
font-weight: 900;
}
}