jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/guide/guide.css

382 lines
6.3 KiB
CSS
Raw Normal View History

2016-04-26 11:28:04 -07:00
.tvguide {
display: flex;
flex-direction: column;
align-items: initial;
}
.tvGuideHeader {
white-space: nowrap;
width: 100%;
flex-shrink: 0;
}
.tvProgramSectionHeader {
margin: 0;
}
.tvProgram {
display: block;
text-decoration: none;
white-space: nowrap;
position: relative;
}
.tvProgramTimeSlotInner {
padding: .5em;
}
.tvProgramInfo {
vertical-align: middle;
padding: .5em .5em;
border-bottom: .65vh solid #121212;
}
.tvProgramCurrentTimeSlot {
background-color: green;
}
.tvProgramName {
color: #fff;
margin-bottom: .5em;
}
.tvProgramTime {
color: #fff;
}
.newTvProgram {
color: yellow;
text-transform: uppercase;
}
.liveTvProgram {
color: #64A239;
text-transform: uppercase;
}
.premiereTvProgram {
color: orange;
text-transform: uppercase;
}
.programAccent {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px;
}
2016-08-02 18:32:16 -07:00
.sportsAccent {
2016-04-26 11:28:04 -07:00
background-color: #0A7C33;
}
2016-08-02 18:32:16 -07:00
.newsAccent {
2016-04-26 11:28:04 -07:00
background-color: #523378;
}
2016-08-02 18:32:16 -07:00
.movieAccent {
2016-04-26 11:28:04 -07:00
background-color: #A43913;
}
2016-08-02 18:32:16 -07:00
.childAccent {
2016-04-26 11:28:04 -07:00
background-color: #0B487D;
}
.channelTimeslotHeader {
float: left;
}
.timeslotHeaders {
white-space: nowrap;
}
.programContainer {
white-space: nowrap;
position: relative;
}
.programGridContainer {
margin-left: 12.2vw;
}
.channelPrograms {
white-space: nowrap;
position: relative;
}
2016-06-06 10:33:27 -07:00
.timeslotHeadersInner {
position: relative;
}
2016-06-06 11:05:22 -07:00
.currentTimeIndicatorBar {
2016-06-06 10:33:27 -07:00
position: absolute;
bottom: .05em;
left: 0;
width: 100%;
height: 2px;
display: flex;
2016-06-06 11:05:22 -07:00
margin-left: .65vh;
2016-06-06 10:33:27 -07:00
background-color: #52B54B;
height: 2px;
2016-06-06 11:05:22 -07:00
transform-origin: left;
transition: transform 500ms ease-out;
}
.currentTimeIndicatorArrowContainer {
position: absolute;
2016-06-06 22:42:26 -07:00
bottom: -1.3vh;
2016-06-06 10:33:27 -07:00
width: 100%;
2016-06-06 11:05:22 -07:00
color: #52B54B;
2016-06-06 10:33:27 -07:00
margin-left: .65vh;
2016-06-06 11:05:22 -07: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 10:33:27 -07:00
}
2016-06-06 11:05:22 -07:00
.currentTimeIndicatorArrow {
2016-06-06 10:33:27 -07:00
width: 4vh;
height: 4vh;
2016-06-09 23:54:03 -07:00
font-size: 4vh;
2016-06-06 10:33:27 -07:00
color: #52B54B;
margin-left: -2vh;
}
2016-04-26 11:28:04 -07: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;
background: rgba(40, 40, 40, .9);
display: flex;
align-items: center;
color: #fff !important;
text-decoration: none;
2016-04-27 18:43:09 -07:00
/* Needed in firefox */
text-align: left;
2016-05-29 19:15:32 -07:00
contain: strict;
2016-04-26 11:28:04 -07: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;
}
}
.btnSelectDate {
color: #fff;
padding-left: .5em;
}
.channelHeaderCell {
border-bottom: .65vh solid #121212 !important;
2016-06-03 12:32:10 -07:00
background-size: auto 70%;
2016-04-26 11:28:04 -07:00
background-position: 90% center;
background-repeat: no-repeat;
}
@media all and (max-width: 800px) {
.guideCurrentDay {
display: none;
}
2016-05-17 12:18:50 -07:00
.newTvProgram, .liveTvProgram, .premiereTvProgram, .guideHdIcon {
display: none;
}
2016-04-26 11:28:04 -07:00
}
2016-05-28 23:43:00 -07:00
@media all and (max-width: 1200px) {
2016-04-26 11:28:04 -07:00
2016-08-02 18:32:16 -07:00
.guideChannelNumberWithImage {
2016-04-26 11:28:04 -07:00
display: none;
}
}
.channelPrograms, .channelHeaderCell {
2016-08-24 19:54:21 -07:00
height: 3.8em;
2016-04-26 11:28:04 -07:00
}
.channelTimeslotHeader {
border-right-color: transparent;
}
.channelTimeslotHeader, .timeslotHeader {
background: transparent;
}
.timeslotHeader, .channelTimeslotHeader {
2016-08-05 21:38:01 -07:00
height: 3.5em;
2016-04-26 11:28:04 -07:00
}
.pointerInput .channelHeaderCell:hover {
background-color: #444;
}
.channelList {
float: left;
}
.programGrid {
padding-bottom: 4px;
}
.timeslotHeader {
width: 2.0833333333333333333333333333333%;
}
.programCell {
position: absolute;
top: 0;
/* Unfortunately the borders using vh get rounded while the bottom property doesn't. So this is a little hack to try and make them even*/
bottom: .59vh;
border-left: .65vh solid #121212 !important;
background-color: rgba(32, 32, 32, .95);
display: flex;
color: #fff !important;
text-decoration: none;
overflow: hidden;
align-items: center;
2016-04-27 12:49:12 -07:00
/* Needed for Firefox */
text-align: left;
2016-05-29 19:15:32 -07:00
contain: strict;
2016-04-26 11:28:04 -07:00
}
.timeslotCellInner {
position: absolute;
bottom: 0;
overflow: hidden;
width: 100%;
top: 0;
display: block;
text-decoration: none;
color: #fff !important;
}
.guideProgramName {
padding: 0 .5em 0;
overflow: hidden;
text-overflow: ellipsis;
}
.guideProgramTime {
padding: 0 .5em .35em;
color: #bbb;
}
2016-08-02 18:32:16 -07:00
.programIcon {
2016-04-26 11:28:04 -07:00
margin-left: auto;
margin-right: .5em;
height: 3.5vh;
width: 3.5vh;
2016-06-09 23:54:03 -07:00
font-size: 3.5vh;
2016-04-26 11:28:04 -07:00
color: #ddd;
flex-shrink: 0;
}
2016-08-02 18:32:16 -07:00
.programIcon + .programIcon {
2016-04-26 11:28:04 -07:00
margin-left: .25em;
}
2016-04-27 18:43:09 -07:00
.guideChannelNumber {
padding-left: 1em;
max-width: 30%;
text-overflow: ellipsis;
2016-04-26 11:28:04 -07:00
overflow: hidden;
}
.guideChannelName {
margin-left: auto;
2016-04-27 18:43:09 -07:00
margin-right: 1em;
2016-04-26 11:28:04 -07:00
text-overflow: ellipsis;
overflow: hidden;
2016-06-09 23:54:03 -07:00
max-width: 70%;
2016-04-26 11:28:04 -07:00
}
2016-06-09 23:54:03 -07:00
@media all and (min-width: 1000px) {
2016-04-27 18:43:09 -07:00
.guideChannelName {
2016-06-09 23:54:03 -07:00
max-width: 40%;
}
}
@media all and (max-width: 1000px) {
.guideChannelNumber {
2016-04-27 18:43:09 -07:00
display: none;
}
}
2016-04-26 11:28:04 -07:00
.channelList, .programGrid {
height: auto !important;
}
2016-06-03 12:32:10 -07:00
.programCell, .channelHeaderCell, .btnSelectDate {
2016-04-26 11:28:04 -07:00
outline: none !important;
}
2016-06-03 12:32:10 -07:00
.programCell:focus, .channelHeaderCell:focus, .btnSelectDate:focus {
background-color: #555;
2016-04-26 11:28:04 -07:00
}
.timerIcon, .seriesTimerIcon {
color: #cc3333 !important;
}