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

update recording fields

This commit is contained in:
Luke Pulverenti 2016-12-05 13:46:38 -05:00
parent 6435d047f6
commit b162cf30c5
12 changed files with 211 additions and 82 deletions

View file

@ -441,25 +441,6 @@
opacity: .7;
}
.visibleGuideScroller::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.visibleGuideScroller::-webkit-scrollbar-button:start:decrement,
.visibleGuideScroller::-webkit-scrollbar-button:end:increment {
display: none;
}
.visibleGuideScroller::-webkit-scrollbar-track-piece {
background-color: #3b3b3b;
}
.visibleGuideScroller::-webkit-scrollbar-thumb:vertical, .visibleGuideScroller::-webkit-scrollbar-thumb:horizontal {
-webkit-border-radius: 2px;
background: #888 no-repeat center;
}
.guideOptions {
color: #eee;
flex-shrink: 0;

View file

@ -903,9 +903,9 @@
context.innerHTML = globalize.translateDocument(template, 'sharedcomponents');
if (layoutManager.desktop) {
var visibleGuideScrollers = context.querySelectorAll('.guideScroller');
for (var i = 0, length = visibleGuideScrollers.length; i < length; i++) {
visibleGuideScrollers[i].classList.add('visibleGuideScroller');
var guideScrollers = context.querySelectorAll('.guideScroller');
for (var i = 0, length = guideScrollers.length; i < length; i++) {
guideScrollers[i].classList.add('darkScroller');
}
}