update guide

This commit is contained in:
Luke Pulverenti
2016-06-06 13:33:27 -04:00
parent 7f98cdfec2
commit 9f4127adca
12 changed files with 296 additions and 84 deletions
@@ -4,6 +4,25 @@
align-items: initial;
}
.tvguide ::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.tvguide ::-webkit-scrollbar-button:start:decrement,
.tvguide ::-webkit-scrollbar-button:end:increment {
display: none;
}
.tvguide ::-webkit-scrollbar-track-piece {
background-color: #3b3b3b;
}
.tvguide ::-webkit-scrollbar-thumb:vertical, .tvguide ::-webkit-scrollbar-thumb:horizontal {
-webkit-border-radius: 2px;
background: #888 no-repeat center;
}
.tvGuideHeader {
white-space: nowrap;
width: 100%;
@@ -105,6 +124,44 @@
position: relative;
}
.timeslotHeadersInner {
position: relative;
}
.currentTimeIndicator {
position: absolute;
bottom: .05em;
left: 0;
width: 100%;
height: 2px;
display: flex;
align-items: flex-end;
transition: all 500ms ease-out;
}
.layout-tv .currentTimeIndicator {
/* Need to account for the scrollbar not being there */
margin-left: 4px;
}
.currentTimeIndicatorBar {
background-color: #52B54B;
height: 2px;
flex-grow: 1;
width: 100%;
margin-left: .65vh;
}
.currentTimeIndicator iron-icon {
width: 4vh;
height: 4vh;
color: #52B54B;
flex-shrink: 0;
position: relative;
margin-left: -2vh;
top: 1.45vh;
}
.channelPrograms, .timeslotHeadersInner {
width: 1800vw;
}