Files
port-ui/app/static/css/custom_scrollbar.css

32 lines
659 B
CSS
Raw Normal View History

2025-03-18 14:27:07 +01:00
/* Set the scroll container to only scroll vertically */
2025-03-18 12:50:14 +01:00
.scroll-container {
overflow-y: auto;
overflow-x: hidden;
2025-03-18 14:27:07 +01:00
/* Hide native scrollbar */
2025-03-18 12:50:14 +01:00
scrollbar-width: none; /* Firefox */
2025-03-18 14:27:07 +01:00
}
2025-03-18 13:49:35 +01:00
.scroll-container::-webkit-scrollbar {
2025-03-18 12:50:14 +01:00
display: none; /* WebKit */
2025-03-18 13:49:35 +01:00
}
#custom-scrollbar {
2025-03-18 12:50:14 +01:00
position: fixed;
top: 0;
right: 0;
width: 8px;
2025-03-18 14:27:07 +01:00
/* height: 100vh; <-- remove or adjust this line */
2025-03-18 12:50:14 +01:00
background: transparent;
transition: opacity 0.3s ease;
2025-03-18 13:49:35 +01:00
opacity: 1;
}
2025-03-18 14:27:07 +01:00
/* The scrollbar thumb */
2025-03-18 13:49:35 +01:00
#scroll-thumb {
2025-03-18 12:50:14 +01:00
position: absolute;
top: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 4px;
2025-03-18 13:49:35 +01:00
}