Files
Backend-Api/ServiceHost/wwwroot/AssetsClient/pages/Employees/css/ModalUploadDocument.css
2025-03-09 21:52:06 +03:30

247 lines
4.0 KiB
CSS

.errored {
animation: shake 300ms;
color: #eb3434 !important;
background-color: #fef2f2 !important;
border: 1px solid #eb3434 !important;
}
.reasonReject {
color: #ff5d5d;
}
.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;
margin-bottom: 5px;
}
.pdBox.complete {
background-color: #D0FFF7;
border: 1px solid #2BBABA;
}
.pdBox.discomplete {
background-color: #FFD9D9;
border: 1px solid #FF5D5D;
}
.pdBox.pending {
background-color: #FCE7C9;
border: 1px solid #FDBA74;
}
.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;
}
.pdTitle2 {
font-weight: 400;
font-size: 13px;
max-width: 100%;
word-wrap: break-word;
}
.btnUploadingPD {
background-color: #2BBABA;
color: #ffffff;
font-size: 12px;
padding: 5px 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: 5px 12px;
border-radius: 4px;
transition: all .3s ease-in;
white-space: nowrap;
width: 80px;
}
.btnDeletingPD:hover {
background-color: #a54e4e;
}
.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;
}
.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;
}
}