Files
Backend-Api/ServiceHost/wwwroot/AssetsClient/pages/SubAccounts/css/ModalCreateRole.css

186 lines
3.9 KiB
CSS

.errored {
animation: shake 300ms;
color: #eb3434 !important;
background-color: #fef2f2 !important;
border: 1px solid #eb3434 !important;
}
.textLFontColor,
.form-control {
color: #797979;
font-size: 12px;
font-weight: 500;
}
/*.form-control-number {
border: 1px solid #C6C6C6;
border-radius: 6px;
width: 40px;
}
.form-control-currency {
border: 1px solid #C6C6C6;
border-radius: 6px;
width: 120px;
}
.form-control-select {
border: 1px solid #C6C6C6;
border-radius: 6px;
width: 80px;
}*/
/************************ checkbox Button Input () ************************/
.form-check-input[type="checkbox"] {
width: 15px;
height: 15px;
border-radius: 6px;
padding: 8px;
border: 1px solid #CFD3D4;
background-color: white;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
margin-right: 8px;
appearance: none;
}
.form-check-input[type="checkbox"]:checked {
background-color: #148989;
border: 1px solid #ffffff !important;
background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="white" stroke-width="3"%3E%3Cpath stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" /%3E%3C/svg%3E');
background-size: 75%;
}
.form-check-input[type=checkbox]:indeterminate {
background-color: #148989;
border-color: #ffffff;
background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="white" stroke-width="3"%3E%3Cpath stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" /%3E%3C/svg%3E');
/*--bs-form-check-bg-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e);*/
}
.form-check-input[type="checkbox"]:focus {
outline: none;
box-shadow: none;
}
.form-check-input[type="checkbox"] + label {
color: #83898C;
}
.form-check-input[type="checkbox"]:checked + label {
color: #2B2F32;
}
/************************ Radio Button Input (Like Checkbox appearance) ************************/
.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: auto !important;
}
.permissionBox {
margin: 10px 0 0 0;
border: 1px solid #D1D1D1;
background-color: #FAFAFA;
border-radius: 7px;
padding: 6px;
}
#tree {
height: 580px;
overflow-y: scroll;
}
#tree ul {
list-style-type: none;
/* padding-left: 20px; */
padding: 0px;
}
#tree ul li > ul {
margin: 0 30px 0 0;
}
#tree .li-tree-main {
background-color: #2EC0C0 !important;
color: #ffffff !important;
}
#tree .li-tree-main-second {
background-color: #A0E1E1 !important;
color: #646464 !important;
}
#tree .li-tree-main svg {
stroke: #ffffff;
}
#tree .li-tree {
position: relative;
margin: 5px 0;
border: 1px solid #DEDEDE;
background-color: #EAF4FD;
border-radius: 8px;
padding: 6px;
font-size: 14px;
font-weight: 500;
color: #646464;
display: flex;
align-items: center;
justify-content: space-between;
width: 265px;
}
#tree .node-label {
margin: 0 10px 0 0;
}
.togglePermission {
cursor: pointer;
margin-right: 5px;
font-size: 12px;
}
.togglePermission svg {
stroke: #33363F;
transition: transform 0.3s ease;
}
.togglePermission.open svg {
transform: rotate(-90deg);
}
#tree li ul {
display: none;
}
.highlight {
background-color: transparent;
}
@media (max-width:1366px) {
#tree {
height: 360px;
}
}