1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update live tv scrolling

This commit is contained in:
Luke Pulverenti 2015-06-07 21:23:56 -04:00
parent 4a0f78149a
commit 3920d73045
39 changed files with 404 additions and 415 deletions

View file

@ -596,7 +596,6 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
.itemOverview {
text-overflow: ellipsis;
max-height: 100px;
overflow-y: auto;
padding-right: .5em;
}

View file

@ -160,7 +160,6 @@
.timeslotHeaders {
white-space: nowrap;
overflow-x: scroll;
}
.mobileGuide .timeslotHeaders {
@ -248,7 +247,6 @@
.programGrid {
padding-bottom: 4px;
overflow-x: scroll;
}
.programGrid, .timeslotHeaders {

View file

@ -290,8 +290,6 @@
bottom: 0;
left: 0;
width: 30%;
overflow-y: scroll;
overflow-x: auto !important;
display: block;
border-right: 1px solid #555;
}

View file

@ -31,8 +31,6 @@
left: 0;
right: 0;
background-color: rgba(0,0,0,.9);
overflow-x: auto;
overflow-y: hidden;
z-index: 1000;
}

View file

@ -201,8 +201,6 @@
bottom: 0;
z-index: 1000;
border: 0 !important;
overflow-x: hidden;
overflow-y: auto;
}
.searchResultsContainer {

View file

@ -162,6 +162,12 @@ h1 a:hover {
margin: -10px 0 0 -10px;
}
.smoothScrollX {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
overflow-y: hidden;
}
.hiddenScrollX {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
@ -180,14 +186,23 @@ h1 a:hover {
}
.hiddenScrollY, .ui-panel-inner {
.smoothScrollY {
overflow-y: auto;
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
}
.hiddenScrollY, .ui-panel-inner {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
overflow-x: hidden;
}
.touch .hiddenScrollY {
-ms-overflow-style: none;
overflow: -moz-scrollbars-none;
}
.touch .hiddenScrollY::-webkit-scrollbar, .touch .ui-panel-inner::-webkit-scrollbar {
width: 0 !important;
display: none;