Add, edit, & delete user group

This commit is contained in:
Sas Andy
2024-05-21 15:21:15 +07:00
parent 1e336517f5
commit 4f1a9adb53
12 changed files with 1943 additions and 924 deletions

View File

@@ -616,7 +616,7 @@ a.text-white:focus {
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
color: var(--secondary) !important;
color: var(--text-black) !important;
background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active,
@@ -5195,7 +5195,7 @@ a.text-hover-tosca:hover .svg-icon svg:hover g [fill],
position: fixed;
top: 0vh;
right: 0vh;
z-index: 9998;
z-index: 99999999999 !important;
width: 350px;
height: auto;
}
@@ -5239,6 +5239,41 @@ a.text-hover-tosca:hover .svg-icon svg:hover g [fill],
cursor: wait !important;
}
/* ### PROGRESS BAR HOVER TEXT */
/* ## PRIMARY */
.progress-bar {
height: 4px !important;
background-color: var(--primary) !important;
width: 100% !important;
overflow: hidden !important;
}
.progress-bar-value {
width: 100% !important;
height: 100% !important;
background-color: var(--primarybg) !important;
animation: indeterminateAnimation 1s infinite linear !important;
transform-origin: 0% 50% !important;
}
@keyframes indeterminateAnimation {
0% {
transform: translateX(0) scaleX(0);
}
40% {
transform: translateX(0) scaleX(0.4);
}
100% {
transform: translateX(100%) scaleX(0.5);
}
}
/* ## SECONDARY */
/* ## SUCCESS */
/* ## INFO */
/* ## WARNING */
/* ## DANGER */
/* ### BUTTON HOVER TEXT */
/* ### */
/* ## PRIMARY */