Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions gateway/sds_gateway/static/css/file-list.css
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,77 @@ body {
color: var(--text-muted);
}

/* ================================
noUiSlider Custom Styling
================================ */
#frequency-range-slider {
margin: 1rem 0;
}

/* Override global noUiSlider styles for frequency slider */
#frequency-range-slider.noUi-target {
background: var(--medium-gray);
border: none;
border-radius: var(--border-radius);
box-shadow: none;
height: 6px;
}

#frequency-range-slider.noUi-horizontal {
height: 6px;
}

/* Active/selected range */
#frequency-range-slider .noUi-connect {
background: var(--primary-color);
border-radius: var(--border-radius);
transition: background var(--transition);
}

/* Slider handles - override existing styles */
#frequency-range-slider .noUi-handle {
width: 18px;
height: 18px;
border: 2px solid #fff;
border-radius: 50%;
background: var(--primary-color);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
cursor: pointer;
top: -6px;
right: -9px;
transition: all var(--transition);
}

#frequency-range-slider .noUi-handle::before,
#frequency-range-slider .noUi-handle::after {
display: none;
content: none;
}

#frequency-range-slider .noUi-handle:hover {
background: var(--primary-hover);
box-shadow: 0 2px 6px rgba(0, 90, 156, 0.25);
transform: scale(1.1);
}

#frequency-range-slider .noUi-handle:focus {
outline: none;
background: var(--primary-hover);
box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.2);
}

#frequency-range-slider .noUi-handle:focus-visible {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}

/* Handle when active/dragging */
#frequency-range-slider .noUi-handle.noUi-active {
background: var(--primary-hover);
box-shadow: 0 2px 8px rgba(0, 90, 156, 0.3);
transform: scale(1.15);
}

/* ================================
Modal Styling
================================ */
Expand Down
Loading