1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-12-09 09:48:05 +00:00

Added option to remove Y-Scrollbar and reset page scroll

This commit is contained in:
GarcaMan
2021-04-25 19:59:53 +00:00
parent 97e4707f72
commit 7da40d1c2e
3 changed files with 42 additions and 1 deletions

View File

@@ -227,3 +227,14 @@ th {
.dark-theme .overlay {
background-color: rgba(0, 0, 0, 0.8);
}
/* Hide scrollbar for Chrome, Safari and Opera */
.disabled-scrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.disabled-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}