se agrego modulo de partidas y sus filtros en el expediente

This commit is contained in:
2025-10-02 21:59:22 -06:00
parent 97672b03d7
commit fce8c9f9dd
3 changed files with 938 additions and 175 deletions

View File

@@ -7,6 +7,59 @@ button:hover {
border-color: #646cff;
}
/* Estilos para el slicer de rango */
.slider-thumb {
-webkit-appearance: none;
appearance: none;
background: transparent;
pointer-events: none;
}
.slider-thumb::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
height: 20px;
width: 20px;
border-radius: 50%;
background: #3b82f6;
border: 2px solid white;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
cursor: pointer;
pointer-events: all;
position: relative;
z-index: 3;
}
.slider-thumb::-moz-range-thumb {
height: 20px;
width: 20px;
border-radius: 50%;
background: #3b82f6;
border: 2px solid white;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
cursor: pointer;
pointer-events: all;
border: none;
}
.slider-thumb::-webkit-slider-thumb:hover {
background: #2563eb;
}
.slider-thumb::-moz-range-thumb:hover {
background: #2563eb;
}
/* Utility class to hide scrollbars */
.scrollbar-hide {
-ms-overflow-style: none; /* Internet Explorer 10+ */
scrollbar-width: none; /* Firefox */
}
.scrollbar-hide::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}
@media (prefers-color-scheme: light) {
:root {
color: #213547;