Files
Backend-Api/ServiceHost/wwwroot/AssetsClient/pages/RollCall/css/ConfirmEmployeeTimeChangeModal.css
2025-04-30 14:55:38 +03:30

264 lines
4.3 KiB
CSS

.sweet-alert {
font-family: 'IranSans' !important
}
#ConfirmModal {
width: 100%;
background: #00000085;
position: fixed;
height: 100vh;
top: 0;
left: 0;
z-index: 1000;
}
.ConfirmSection {
max-width: max-content;
margin: auto;
}
.employee-item {
width: 100%;
height: 160px;
margin: 16px 0 0 0;
border: 1px solid #ddd;
border-radius: 10px;
overflow-y: scroll;
padding: 10px;
background-color: #f9f9f9;
}
.employee-item ul {
padding: 0 10px;
}
.employee-item ul li {
list-style: decimal;
font-size: 14px;
}
.btn-add {
font-size: 10px;
font-weight: 500;
background-color: #84CC16;
color: #FFFFFF;
border-radius: 7px;
width: 30px;
height: 30px;
transition: ease-in-out .3s;
margin: 0 5px 0 0;
}
.btn-add:hover {
background-color: #5f9213;
}
.btnPosition {
outline: 1px solid #138989;
cursor: pointer;
}
.active {
outline: 1px solid transparent;
}
.btn-register {
font-size: 14px;
font-weight: 500;
background-color: #84CC16;
color: #FFFFFF;
border-radius: 8px;
padding: 10px 60px;
}
.btn-register:hover {
background-color: #5f9213;
}
.btn-cancel2 {
font-size: 14px;
font-weight: 500;
background-color: #1F2937;
color: #FFFFFF;
border-radius: 8px;
padding: 10px 70px;
}
.btn-cancel2:hover {
background-color: #121820;
}
.items {
border: 1px solid #D9D9D9;
padding: 5px;
border-radius: 8px;
margin: 4px 0;
cursor: pointer;
transition: all ease-in-out .3s;
}
.items:hover {
border: 1px solid #148989;
}
.items.checked-item {
border: 1px solid #148989;
}
.searchItem {
font-size: 14px;
font-weight: 500;
color: #535353;
}
.btn-edit-subject {
border: 1px solid transparent;
width: 30px;
height: 30px;
border-radius: 5px;
padding: 3px 1px;
color: #009EE2;
margin: auto 4px auto 1px;
background-color: rgba(52, 209, 209, 0.20);
box-shadow: 0;
transition: ease .2s;
}
.btn-edit-subject:hover {
background-color: rgba(52, 209, 209, 0.40);
}
.btn-remove-subject {
border: 1px solid transparent;
width: 30px;
height: 30px;
border-radius: 5px;
padding: 3px 1px;
color: #FF5151;
margin: auto 4px auto 1px;
background: rgba(209, 50, 50, 0.15);
transition: ease .2s;
}
.btn-remove-subject:hover {
background-color: rgba(209, 50, 50, 0.25);
}
.header-title {
font-size: 17px;
line-height: 32px;
font-weight: 700;
color: #000000;
text-align: center
}
.header-description {
font-size: 17px;
line-height: 24px;
font-weight: 400;
color: #000000;
text-align: center
}
.card {
background: #F5F5F5;
border-radius: 10px;
width: 100%;
overflow: hidden;
border: 1px solid #E7E7E7
}
.card-content {
padding: 10px;
text-align: center
}
.card-title {
font-size: 16px;
margin-bottom: 15px;
font-weight: 400;
line-height: 24px;
color: #000000
}
.card-text {
margin: 10px 0;
color: #555;
}
.btn {
width: 109px;
height: 36px;
color: #5C5C5C !important;
background-color: white;
border: 2px solid #C6C6C6;
border-radius: 6px;
text-decoration: none;
text-align: center;
font-size: 14px;
font-weight: 400;
margin: 0 auto
}
.btn:hover {
background-color: white;
border-color: #C6C6C6;
}
.btn-quit {
background-color: #292D32;
color: white;
border-radius: 6px;
transition: 0.15s linear;
font-size: 16px;
line-height: 100%;
font-weight: 500;
padding: 10px 0;
}
.btn-confirm {
background-color: #84CC16;
color: white;
border-radius: 6px;
transition: 0.15s linear;
font-size: 16px;
line-height: 100%;
font-weight: 500;
padding: 10px 0;
}
.btn-confirm:hover {
background-color: #5f9213;
}
.btn-quit:hover {
background-color: #121820;
}
input.form-control:focus {
border-color: #C6C6C6;
box-shadow: none;
outline: none;
}
input:focus {
outline: none;
}
#modalConfirm {
width: 450px;
}
@media (max-width: 526px) {
#modalConfirm {
width: 350px;
}
}