2016-04-26 14:28:04 -04:00
|
|
|
.tvguide {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tvGuideHeader {
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
2016-12-12 00:41:24 -05:00
|
|
|
flex-direction: column;
|
2016-04-26 14:28:04 -04:00
|
|
|
flex-shrink: 0;
|
2016-09-27 13:51:01 -04:00
|
|
|
display: flex;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
2016-12-12 00:41:24 -05:00
|
|
|
.guideHeaderDateSelection {
|
2016-12-12 03:53:25 -05:00
|
|
|
font-size: 86%;
|
2017-01-08 18:56:34 -05:00
|
|
|
padding: .4em 0;
|
2016-12-12 00:41:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.guideHeaderTimeslots {
|
2016-11-26 19:40:15 -05:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2016-04-26 14:28:04 -04:00
|
|
|
.tvProgramSectionHeader {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tvProgram {
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
white-space: nowrap;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-09-07 03:08:20 -04:00
|
|
|
.guideProgramIndicator {
|
2016-04-26 14:28:04 -04:00
|
|
|
text-transform: uppercase;
|
2016-09-07 22:55:54 -04:00
|
|
|
border-radius: 2px;
|
2016-09-07 03:08:20 -04:00
|
|
|
margin-right: .5em;
|
2016-09-09 12:58:08 -04:00
|
|
|
font-size: 74%;
|
2016-09-07 13:17:26 -04:00
|
|
|
padding: .2em .25em;
|
2016-09-07 03:08:20 -04:00
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2016-04-26 14:28:04 -04:00
|
|
|
.channelTimeslotHeader {
|
2016-09-27 13:51:01 -04:00
|
|
|
flex-shrink: 0;
|
2016-12-12 00:41:24 -05:00
|
|
|
justify-content: center;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeslotHeaders {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.programContainer {
|
|
|
|
white-space: nowrap;
|
|
|
|
position: relative;
|
2016-09-27 13:51:01 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
2016-11-26 19:40:15 -05:00
|
|
|
flex-grow: 1;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.channelPrograms {
|
|
|
|
white-space: nowrap;
|
|
|
|
position: relative;
|
2016-09-27 13:51:01 -04:00
|
|
|
contain: strict;
|
2017-01-08 00:52:51 -05:00
|
|
|
box-sizing: border-box;
|
|
|
|
border-bottom: .2em solid #121212;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
2016-06-06 13:33:27 -04:00
|
|
|
.timeslotHeadersInner {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-06-06 14:05:22 -04:00
|
|
|
.currentTimeIndicatorBar {
|
2016-06-06 13:33:27 -04:00
|
|
|
position: absolute;
|
|
|
|
bottom: .05em;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 2px;
|
|
|
|
display: flex;
|
2016-12-29 14:56:19 -05:00
|
|
|
margin-left: .25em;
|
2016-06-06 13:33:27 -04:00
|
|
|
background-color: #52B54B;
|
|
|
|
height: 2px;
|
2016-06-06 14:05:22 -04:00
|
|
|
transform-origin: left;
|
|
|
|
transition: transform 500ms ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.currentTimeIndicatorArrowContainer {
|
|
|
|
position: absolute;
|
2016-12-29 14:56:19 -05:00
|
|
|
bottom: -.4em;
|
2016-06-06 13:33:27 -04:00
|
|
|
width: 100%;
|
2016-06-06 14:05:22 -04:00
|
|
|
color: #52B54B;
|
2016-12-29 14:56:19 -05:00
|
|
|
margin-left: .25em;
|
2016-06-06 14:05:22 -04:00
|
|
|
transform-origin: left;
|
|
|
|
transition: transform 500ms ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-tv .currentTimeIndicatorBar, .layout-tv .currentTimeIndicatorArrowContainer {
|
|
|
|
/* Need to account for the scrollbar not being there */
|
|
|
|
left: 4px;
|
2016-06-06 13:33:27 -04:00
|
|
|
}
|
|
|
|
|
2016-06-06 14:05:22 -04:00
|
|
|
.currentTimeIndicatorArrow {
|
2016-12-29 14:56:19 -05:00
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
font-size: 1.2em;
|
2016-06-06 13:33:27 -04:00
|
|
|
color: #52B54B;
|
2016-12-29 14:56:19 -05:00
|
|
|
margin-left: -.52em;
|
2016-06-06 13:33:27 -04:00
|
|
|
}
|
|
|
|
|
2016-04-26 14:28:04 -04:00
|
|
|
.channelPrograms, .timeslotHeadersInner {
|
|
|
|
width: 1800vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 600px) {
|
|
|
|
|
|
|
|
.channelPrograms, .timeslotHeadersInner {
|
|
|
|
width: 1400vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 800px) {
|
|
|
|
|
|
|
|
.channelPrograms, .timeslotHeadersInner {
|
|
|
|
width: 1200vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 1280px) {
|
|
|
|
|
|
|
|
.channelPrograms, .timeslotHeadersInner {
|
|
|
|
width: 660vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeslotHeader {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
text-indent: .35em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.channelHeaderCell, .channelTimeslotHeader {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
border-right: 1px solid #121212;
|
|
|
|
width: 24vw;
|
2017-01-08 00:52:51 -05:00
|
|
|
background: rgb(38, 38, 38);
|
2016-04-26 14:28:04 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
2016-04-27 21:43:09 -04:00
|
|
|
/* Needed in firefox */
|
|
|
|
text-align: left;
|
2016-05-29 22:15:32 -04:00
|
|
|
contain: strict;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 500px) {
|
|
|
|
|
|
|
|
.channelHeaderCell, .channelTimeslotHeader {
|
|
|
|
width: 16vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 600px) {
|
|
|
|
|
|
|
|
.channelHeaderCell, .channelTimeslotHeader {
|
|
|
|
width: 16vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 800px) {
|
|
|
|
|
|
|
|
.channelHeaderCell, .channelTimeslotHeader {
|
|
|
|
width: 14vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 1280px) {
|
|
|
|
|
|
|
|
.channelHeaderCell, .channelTimeslotHeader {
|
|
|
|
width: 12vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-07 03:08:20 -04:00
|
|
|
.btnGuideViewSettings {
|
|
|
|
margin: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btnGuideViewSettingsIcon {
|
|
|
|
font-size: 1.5em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectDateIcon {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
2016-04-26 14:28:04 -04:00
|
|
|
.channelHeaderCell {
|
2017-01-08 00:52:51 -05:00
|
|
|
border-bottom: .2em solid #121212 !important;
|
2016-06-03 15:32:10 -04:00
|
|
|
background-size: auto 70%;
|
2016-09-12 23:35:57 -04:00
|
|
|
background-position: 92% center;
|
2016-04-26 14:28:04 -04:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (max-width: 800px) {
|
|
|
|
|
2016-05-17 15:18:50 -04:00
|
|
|
.newTvProgram, .liveTvProgram, .premiereTvProgram, .guideHdIcon {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.channelPrograms, .channelHeaderCell {
|
2017-01-08 00:52:51 -05:00
|
|
|
height: 4.4em;
|
2016-09-27 13:51:01 -04:00
|
|
|
contain: strict;
|
|
|
|
}
|
|
|
|
|
|
|
|
.channelPrograms {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2016-08-24 23:07:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.channelPrograms-tv, .channelHeaderCell-tv {
|
2017-01-08 00:52:51 -05:00
|
|
|
height: 3.8em;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.channelTimeslotHeader {
|
|
|
|
border-right-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.channelTimeslotHeader, .timeslotHeader {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.timeslotHeader, .channelTimeslotHeader {
|
2016-12-12 03:53:25 -05:00
|
|
|
height: 2.2em;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.programGrid {
|
|
|
|
padding-bottom: 4px;
|
2016-11-27 14:36:56 -05:00
|
|
|
flex-grow: 1;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.timeslotHeader {
|
|
|
|
width: 2.0833333333333333333333333333333%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.programCell {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2017-01-08 00:52:51 -05:00
|
|
|
bottom: 0;
|
|
|
|
border-left: .2em solid #121212 !important;
|
|
|
|
background-color: rgb(30, 30, 30);
|
2016-04-26 14:28:04 -04:00
|
|
|
display: flex;
|
|
|
|
text-decoration: none;
|
|
|
|
overflow: hidden;
|
|
|
|
align-items: center;
|
2016-04-27 15:49:12 -04:00
|
|
|
/* Needed for Firefox */
|
|
|
|
text-align: left;
|
2016-05-29 22:15:32 -04:00
|
|
|
contain: strict;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
2016-09-28 01:11:41 -04:00
|
|
|
.programAccent {
|
2016-04-26 14:28:04 -04:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
2016-09-28 01:11:41 -04:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sportsAccent {
|
2016-09-29 08:55:49 -04:00
|
|
|
background-color: #3949AB;
|
2016-09-28 01:11:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.movieAccent {
|
2016-09-29 08:55:49 -04:00
|
|
|
background-color: #5E35B1;
|
2016-09-28 01:11:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.childAccent {
|
2016-09-29 08:55:49 -04:00
|
|
|
background-color: #039BE5;
|
2016-09-28 01:11:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.newsAccent {
|
2016-09-29 08:55:49 -04:00
|
|
|
background-color: #43A047;
|
2016-09-28 01:11:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.specialsAccent {
|
2016-09-29 08:55:49 -04:00
|
|
|
background-color: #FB8C00;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.guideProgramName {
|
|
|
|
padding: 0 .5em 0;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2016-09-07 22:55:54 -04:00
|
|
|
align-items: center;
|
2016-10-17 12:41:18 -04:00
|
|
|
/* Need block here or the ellipsis overflow is lost */
|
|
|
|
display: block;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
2017-01-08 00:52:51 -05:00
|
|
|
.guideProgramNameText {
|
|
|
|
margin: 0;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.guideProgramSecondaryInfo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.programSecondaryTitle {
|
|
|
|
opacity: .6;
|
|
|
|
}
|
|
|
|
|
2016-08-02 21:32:16 -04:00
|
|
|
.programIcon {
|
2016-04-26 14:28:04 -04:00
|
|
|
margin-left: auto;
|
2016-09-07 16:11:16 -04:00
|
|
|
margin-right: .25em;
|
2016-12-20 00:22:31 -05:00
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
2016-09-07 13:17:26 -04:00
|
|
|
font-size: 1.6em;
|
2016-04-26 14:28:04 -04:00
|
|
|
color: #ddd;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
2016-08-02 21:32:16 -04:00
|
|
|
.programIcon + .programIcon {
|
2016-04-26 14:28:04 -04:00
|
|
|
margin-left: .25em;
|
|
|
|
}
|
|
|
|
|
2016-10-17 12:41:18 -04:00
|
|
|
.programTextIcon {
|
|
|
|
font-weight: bold;
|
|
|
|
color: rgb(30,30,30);
|
2016-10-18 01:06:48 -04:00
|
|
|
font-size: .9em;
|
2016-10-17 12:41:18 -04:00
|
|
|
background: #555;
|
|
|
|
padding: .18em .32em;
|
|
|
|
border-radius: .25em;
|
|
|
|
margin-right: .35em;
|
2017-01-08 00:52:51 -05:00
|
|
|
width: auto;
|
|
|
|
height: auto;
|
2016-10-17 12:41:18 -04:00
|
|
|
}
|
|
|
|
|
2016-10-18 01:06:48 -04:00
|
|
|
.programTextIcon-tv {
|
2016-11-03 13:40:27 -04:00
|
|
|
font-size: .6em;
|
2016-10-18 01:06:48 -04:00
|
|
|
}
|
|
|
|
|
2016-04-27 21:43:09 -04:00
|
|
|
.guideChannelNumber {
|
|
|
|
padding-left: 1em;
|
|
|
|
max-width: 30%;
|
|
|
|
text-overflow: ellipsis;
|
2016-04-26 14:28:04 -04:00
|
|
|
overflow: hidden;
|
2017-01-08 00:52:51 -05:00
|
|
|
font-weight: normal;
|
|
|
|
margin: 0;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.guideChannelName {
|
|
|
|
margin-left: auto;
|
2016-04-27 21:43:09 -04:00
|
|
|
margin-right: 1em;
|
2016-04-26 14:28:04 -04:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2016-06-10 02:54:03 -04:00
|
|
|
max-width: 70%;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
2016-06-10 02:54:03 -04:00
|
|
|
@media all and (min-width: 1000px) {
|
2016-04-27 21:43:09 -04:00
|
|
|
|
|
|
|
.guideChannelName {
|
2016-06-10 02:54:03 -04:00
|
|
|
max-width: 40%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (max-width: 1000px) {
|
|
|
|
|
|
|
|
.guideChannelNumber {
|
2016-04-27 21:43:09 -04:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-28 01:11:41 -04:00
|
|
|
.channelsContainer {
|
|
|
|
display: flex;
|
2016-09-28 03:51:58 -04:00
|
|
|
flex-shrink: 0;
|
2016-09-27 13:51:01 -04:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2016-12-29 14:56:19 -05:00
|
|
|
.channelsContainer, .programGrid {
|
2016-09-27 13:51:01 -04:00
|
|
|
contain: layout style;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
2016-12-12 00:41:24 -05:00
|
|
|
.programCell, .channelHeaderCell {
|
2016-04-26 14:28:04 -04:00
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
2016-12-12 00:41:24 -05:00
|
|
|
.programCell:focus, .channelHeaderCell:focus {
|
2016-06-03 15:32:10 -04:00
|
|
|
background-color: #555;
|
2016-04-26 14:28:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.timerIcon, .seriesTimerIcon {
|
|
|
|
color: #cc3333 !important;
|
|
|
|
}
|
2016-09-05 16:07:36 -04:00
|
|
|
|
2016-09-22 02:57:31 -04:00
|
|
|
.seriesTimerIcon-inactive {
|
|
|
|
color: inherit !important;
|
|
|
|
opacity: .7;
|
|
|
|
}
|
|
|
|
|
2016-09-06 01:02:05 -04:00
|
|
|
.guideOptions {
|
|
|
|
color: #eee;
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2016-09-28 01:11:41 -04:00
|
|
|
|
|
|
|
@media all and (max-width: 800px), all and (max-height: 600px) {
|
|
|
|
|
|
|
|
.tvGuideHeader {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2016-11-26 19:40:15 -05:00
|
|
|
|
|
|
|
.guideRequiresUnlock {
|
|
|
|
margin: 1em auto;
|
|
|
|
text-align: center;
|
|
|
|
padding: 1em;
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
2016-12-07 16:11:13 -05:00
|
|
|
|
|
|
|
.noRubberBanding {
|
|
|
|
/* This is needed to combat the rubber banding in iOS */
|
|
|
|
padding-bottom: 100px;
|
|
|
|
}
|
2016-12-12 00:41:24 -05:00
|
|
|
|
|
|
|
.guideDateTabsSlider {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.guide-date-tab-button {
|
2016-12-20 00:22:31 -05:00
|
|
|
font-weight: normal !important;
|
2016-12-12 00:41:24 -05:00
|
|
|
color: inherit !important;
|
2016-12-20 00:22:31 -05:00
|
|
|
padding: .3em .7em !important;
|
|
|
|
margin: 0 .3em !important;
|
2016-12-12 17:43:07 -05:00
|
|
|
opacity: .25;
|
2016-12-12 00:41:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.guide-date-tab-button.emby-tab-button-active {
|
|
|
|
color: #52B54B !important;
|
|
|
|
border-color: transparent !important;
|
|
|
|
opacity: 1;
|
2016-12-20 00:22:31 -05:00
|
|
|
font-weight: normal !important;
|
2016-12-12 00:41:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.guide-date-tab-button:focus {
|
|
|
|
color: #52B54B !important;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layout-tv .guide-date-tab-button:focus {
|
|
|
|
background-color: #52B54B !important;
|
2016-12-20 00:22:31 -05:00
|
|
|
border-radius: .15em !important;
|
2016-12-12 00:41:24 -05:00
|
|
|
color: #fff !important;
|
|
|
|
}
|