2018-10-23 01:13:23 +03:00
|
|
|
.emby-scrollbuttons-scroller {
|
2019-01-10 15:39:37 +03:00
|
|
|
position: relative;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.scrollbuttoncontainer {
|
|
|
|
position: absolute;
|
2019-02-19 00:37:38 +03:00
|
|
|
top: 10%;
|
|
|
|
bottom: 35%;
|
2018-10-23 01:13:23 +03:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
z-index: 1;
|
|
|
|
font-size: 3em;
|
|
|
|
color: #fff;
|
|
|
|
display: none;
|
2019-01-10 15:39:37 +03:00
|
|
|
overflow: hidden;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.scrollbuttoncontainer-left {
|
|
|
|
background: rgba(20, 20, 20, .5);
|
2019-01-10 15:39:37 +03:00
|
|
|
background: -moz-linear-gradient(left,#000 0,rgba(0,0,0,0) 100%);
|
|
|
|
background: -webkit-linear-gradient(left,#000 0,rgba(0,0,0,0) 100%);
|
|
|
|
background: linear-gradient(to right,#000,rgba(0,0,0,0));
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.scrollbuttoncontainer-right {
|
|
|
|
background: rgba(20, 20, 20, .5);
|
2019-01-10 15:39:37 +03:00
|
|
|
background: -moz-linear-gradient(right,#000 0,rgba(0,0,0,0) 100%);
|
|
|
|
background: -webkit-linear-gradient(right,#000 0,rgba(0,0,0,0) 100%);
|
|
|
|
background: linear-gradient(to left,#000,rgba(0,0,0,0));
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-scrollbuttons-scroller:hover .scrollbuttoncontainer {
|
2019-01-10 15:39:37 +03:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scrollbuttoncontainer-left {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scrollbuttoncontainer-right {
|
|
|
|
right: 0;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-scrollbuttons-scrollbutton {
|
|
|
|
margin: 0 -.2em;
|
2019-01-10 15:39:37 +03:00
|
|
|
transition: transform 160ms ease-out;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
2019-01-10 15:39:37 +03:00
|
|
|
.scrollbuttoncontainer:hover > .emby-scrollbuttons-scrollbutton {
|
|
|
|
transform: scale(1.3, 1.3);
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-scrollbuttons-scrollbutton:after {
|
|
|
|
content: '';
|
2019-01-10 15:39:37 +03:00
|
|
|
display: none !important;
|
2018-10-23 01:13:23 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.emby-scrollbuttons-scrollbutton:focus {
|
2019-01-10 15:39:37 +03:00
|
|
|
color: inherit !important;
|
|
|
|
}
|