File size: 1,690 Bytes
27867f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
@media (hover: hover) and (pointer: fine) {
::-webkit-scrollbar {
width: 1em;
height: 1em;
}
.scrollX-mini::-webkit-scrollbar {
height: 0.6em;
}
.scrollY-mini::-webkit-scrollbar {
width: 0.6em;
}
.scrollX-mini {
scrollbar-width: thin;
}
.scrollY-mini {
scrollbar-width: thin;
}
}
::-webkit-scrollbar-thumb {
-webkit-border-radius: 0.42em;
border-radius: 0.42em;
}
.scrollX {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
overflow-y: hidden;
white-space: nowrap;
}
.smoothScrollX {
scroll-behavior: smooth;
}
.hiddenScrollX,
.layout-tv .scrollX {
-ms-overflow-style: none;
scrollbar-width: none;
}
.hiddenScrollX::-webkit-scrollbar,
.layout-tv .scrollX::-webkit-scrollbar {
height: 0 !important;
display: none;
}
.scrollY {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
}
.smoothScrollY {
scroll-behavior: smooth;
}
.overflowYScroll {
overflow-y: scroll;
}
.hiddenScrollY,
.layout-tv .scrollY {
-ms-overflow-style: none;
scrollbar-width: none;
}
.hiddenScrollY::-webkit-scrollbar,
.layout-tv .scrollY::-webkit-scrollbar {
width: 0 !important;
display: none;
}
@media (hover: hover) {
.hiddenScrollY-hover:not(:hover) {
-ms-overflow-style: none;
scrollbar-width: none;
}
.hiddenScrollY-hover:not(:hover)::-webkit-scrollbar {
width: 0 !important;
display: none;
}
}
.scrollSliderY {
width: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
|