freekake_webapp/assets/css/form-elements.css
2025-06-29 22:23:57 +07:00

60 lines
1.0 KiB
CSS

/* progress bar */
.animated-progress {
animation: progress-bar-stripes 1s linear infinite;
}
@keyframes progress-bar-stripes {
0% {
background-position: 1rem 0;
}
to {
background-position: 0 0;
}
}
/* range picker */
input[type='range'] {
-webkit-appearance: none;
}
input[type='range']::-webkit-slider-runnable-track {
width: 100%;
height: 8px;
background: #dee2e6;
border: none;
border-radius: 3px;
}
input[type='range']::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 16px;
width: 16px;
border-radius: 50%;
background: #4361ee;
margin-top: -4px;
}
.dark input[type='range']::-webkit-slider-runnable-track {
background: #1b2e4b;
}
.dark input[type='range'] {
background-color: transparent;
}
input[type='range']:focus {
outline: none;
}
input[type='range']:active::-webkit-slider-thumb {
background: #4361eec2;
cursor: pointer;
}
/* input group */
.input-group-dropodwn > div {
@apply h-full;
}