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

365 lines
5.7 KiB
CSS
Raw Normal View History

2013-12-20 15:09:49 -05:00

.tvProgramSectionHeader {
margin: 0;
}
.tvProgram {
display: block;
text-decoration: none;
2015-04-11 21:38:38 -04:00
font-weight: normal !important;
2013-12-20 15:09:49 -05:00
white-space: nowrap;
position: relative;
}
.detailSectionHeader + .tvProgram {
2013-12-22 12:16:24 -05:00
border-top: 1px solid #444;
2013-12-20 15:09:49 -05:00
margin-top: 1px;
}
.tvProgramTimeSlot {
width: 80px;
vertical-align: middle;
font-weight: bold;
color: #fff;
position: absolute;
top: 0;
left: 0;
bottom: 0;
2013-12-23 12:30:26 -05:00
border-bottom: 1px solid #444;
2013-12-20 15:09:49 -05:00
}
.tvProgramTimeSlotInner {
padding: .5em;
}
.tvProgramInfo {
vertical-align: middle;
padding: .5em .5em;
2013-12-22 12:16:24 -05:00
border-bottom: 1px solid #444;
2013-12-20 15:09:49 -05:00
}
2013-12-23 12:30:26 -05:00
.tvProgramTimeSlot + .tvProgramInfo {
margin-left: 80px;
border-left: 1px solid #444;
}
2014-01-18 00:55:21 -05:00
.tvProgramCurrentTimeSlot {
background-color: green;
}
2013-12-23 12:30:26 -05:00
2013-12-20 15:09:49 -05:00
.tvProgramName {
color: #fff;
font-weight: bold;
margin-bottom: .5em;
}
.tvProgramTime {
color: #fff;
}
.newTvProgram {
color: #E88606;
}
.liveTvProgram {
color: #64A239;
}
2014-01-06 08:33:14 -05:00
.premiereTvProgram {
color: yellow;
}
2013-12-20 15:09:49 -05:00
.sportsProgramInfo {
background-color: #0F2624;
border-bottom: 2px solid #0A7C33;
}
.newsProgramInfo {
background-color: #211A32;
border-bottom: 2px solid #523378;
}
.movieProgramInfo {
background-color: #271A21;
border-bottom: 2px solid #A43913;
}
.childProgramInfo {
background-color: #092345;
border-bottom: 2px solid #0B487D;
}
.tvProgram:hover, .tvProgram:hover .tvProgramInfo {
background-color: #4d90fe;
}
2013-12-21 13:37:34 -05:00
.timerCircle {
display: inline-block;
2014-01-06 11:48:43 -05:00
width: 12px;
height: 12px;
2013-12-21 13:37:34 -05:00
border-radius: 50%;
background: #cc0000;
vertical-align: top;
border: 1px solid #cc3333;
margin-left: 1em;
}
.seriesTimerCircle {
position: relative;
margin-left: 0;
2014-01-06 11:48:43 -05:00
left: 21px;
2013-12-21 13:37:34 -05:00
opacity: .3;
2013-12-22 12:16:24 -05:00
}
.itemMiscInfo .seriesTimerCircle:first-child {
2013-12-21 13:37:34 -05:00
margin-left: 1em;
}
2013-12-22 12:16:24 -05:00
.seriesTimerCircle + .seriesTimerCircle {
opacity: .65;
left: 0;
}
2013-12-21 13:37:34 -05:00
2013-12-22 12:16:24 -05:00
.seriesTimerCircle + .seriesTimerCircle + .seriesTimerCircle {
opacity: 1;
2014-01-06 11:48:43 -05:00
left: -21px;
2013-12-22 12:16:24 -05:00
}
2013-12-21 13:37:34 -05:00
.channelImageContainer .itemDetailImage {
2013-12-23 10:26:36 -05:00
max-width: 200px;
max-height: 110px;
2013-12-21 13:37:34 -05:00
margin-top: 1em;
margin-bottom: 1em;
}
2014-01-05 20:59:21 -05:00
2014-01-06 08:33:14 -05:00
.channelTimeslotHeader {
2014-01-18 00:55:21 -05:00
float: left;
2014-01-06 08:33:14 -05:00
}
2014-01-05 20:59:21 -05:00
.timeslotHeaders {
2014-01-06 08:33:14 -05:00
overflow-y: hidden;
overflow-x: hidden;
2014-01-05 20:59:21 -05:00
white-space: nowrap;
}
2014-01-06 08:33:14 -05:00
.channelPrograms {
white-space: nowrap;
2014-01-11 00:49:18 -05:00
height: 53px;
2014-01-06 08:33:14 -05:00
}
2014-01-05 20:59:21 -05:00
.timeslotHeader {
display: inline-block;
2014-01-06 08:33:14 -05:00
}
.timeslotHeaderInner {
padding: .5em .35em;
2014-01-05 20:59:21 -05:00
}
.timeslotCell {
display: inline-block;
2014-01-06 08:33:14 -05:00
border-bottom: 1px solid #444;
border-left: 1px solid #444;
2014-01-05 20:59:21 -05:00
border-collapse: collapse;
2014-01-06 08:33:14 -05:00
position: relative;
2014-01-05 20:59:21 -05:00
}
2014-01-06 08:33:14 -05:00
.channelHeaderCell, .channelTimeslotHeader {
2014-01-05 20:59:21 -05:00
overflow: hidden;
text-overflow: ellipsis;
2014-01-06 08:33:14 -05:00
border-bottom: 1px solid #444;
border-left: 1px solid #444;
border-right: 1px solid #444;
2014-01-06 13:25:33 -05:00
width: 189px;
2014-01-05 20:59:21 -05:00
}
.channelTimeslotHeader {
2015-04-11 21:38:38 -04:00
border-right: 1px solid #38c;
}
2014-01-06 08:33:14 -05:00
.channelTimeslotHeader, .timeslotHeader {
2015-04-11 21:38:38 -04:00
background: #38c;
border-bottom: 1px solid #38c;
border-left: 1px solid #38c;
2014-01-06 08:33:14 -05:00
}
.timeslotHeader, .channelTimeslotHeader {
height: 28px;
}
.channelHeaderCellInner {
padding: .5em .5em;
2014-01-06 11:48:43 -05:00
display: block;
text-decoration: none;
2015-04-11 21:38:38 -04:00
font-weight: normal !important;
color: #fff !important;
2014-01-06 13:25:33 -05:00
position: relative;
2014-01-06 08:33:14 -05:00
}
2014-01-18 00:55:21 -05:00
.channelHeaderCell:hover {
background-color: #38c;
}
2014-01-06 11:48:43 -05:00
2014-01-06 08:33:14 -05:00
.channelList {
overflow-y: hidden;
2014-01-18 00:55:21 -05:00
overflow-x: scroll;
float: left;
border-bottom: 4px solid #3B3B3B;
2014-01-06 08:33:14 -05:00
}
.programGrid {
overflow-y: scroll;
overflow-x: scroll;
2014-01-18 00:55:21 -05:00
padding-bottom: 4px;
}
.programGrid, .timeslotHeaders {
margin-left: 190px;
2014-01-06 08:33:14 -05:00
}
.timeslotCell, .timeslotHeader {
2015-03-19 01:56:55 -04:00
width: 60px;
2014-01-06 08:33:14 -05:00
}
.timeslotCellInner {
position: absolute;
bottom: 0;
overflow: hidden;
width: 100%;
top: 0;
2014-01-06 11:48:43 -05:00
display: block;
text-decoration: none;
2015-04-11 21:38:38 -04:00
font-weight: normal !important;
color: #fff !important;
2014-01-06 11:48:43 -05:00
}
.timeslotCellInnerWithProgram {
z-index: 99;
2014-01-06 11:48:43 -05:00
}
2014-01-18 00:55:21 -05:00
.timeslotCellInnerWithProgram:hover {
background-color: #38c;
}
2014-01-06 08:33:14 -05:00
.channelHeaderCell, .timeslotCell {
2014-01-11 00:49:18 -05:00
height: 52px;
2014-01-06 08:33:14 -05:00
}
.guideProgramName {
padding: .35em .5em;
}
.guideProgramTime {
padding: 0 .5em .35em;
}
2014-01-18 00:55:21 -05:00
2014-01-06 11:48:43 -05:00
.plainProgramInfo {
background-color: #252525;
}
2014-01-06 08:33:14 -05:00
2014-01-06 13:25:33 -05:00
.guideChannelInfo {
display: inline-block;
max-width: 110px;
overflow: hidden;
white-space: nowrap;
}
.guideChannelImage {
max-width: 60px;
max-height: 35px;
position: absolute;
right: 7px;
top: 7px;
2014-01-06 13:25:33 -05:00
}
2014-01-18 00:55:21 -05:00
.channelList, .programGrid {
2014-01-29 16:54:40 -05:00
height: 220px;
2014-01-18 00:55:21 -05:00
}
@media (min-height: 500px) {
2014-01-06 08:33:14 -05:00
2014-01-18 00:55:21 -05:00
.channelList, .programGrid {
2015-04-11 21:38:38 -04:00
height: 360px;
2014-01-06 08:33:14 -05:00
}
2014-01-18 00:55:21 -05:00
}
2014-01-06 08:33:14 -05:00
2014-01-18 00:55:21 -05:00
@media (min-height: 600px) {
.channelList, .programGrid {
2015-04-11 21:38:38 -04:00
height: 400px;
2014-01-18 00:55:21 -05:00
}
}
@media (min-height: 700px) {
.channelList, .programGrid {
2015-04-11 21:38:38 -04:00
height: 500px;
2014-01-06 08:33:14 -05:00
}
2014-01-18 00:55:21 -05:00
}
@media (min-height: 800px) {
.channelList, .programGrid {
2015-04-11 21:38:38 -04:00
height: 600px;
2014-01-18 00:55:21 -05:00
}
}
@media (min-height: 900px) {
.channelList, .programGrid {
2015-04-11 21:38:38 -04:00
height: 700px;
2014-01-18 00:55:21 -05:00
}
}
@media (min-height: 1000px) {
.channelList, .programGrid {
2015-04-11 21:38:38 -04:00
height: 800px;
2014-01-18 00:55:21 -05:00
}
}
@media (min-height: 1100px) {
.channelList, .programGrid {
2015-04-11 21:38:38 -04:00
height: 900px;
2014-01-18 00:55:21 -05:00
}
}
@media (min-height: 1200px) {
.channelList, .programGrid {
2015-04-11 21:38:38 -04:00
height: 1000px;
2014-01-18 00:55:21 -05:00
}
}
2015-04-11 21:38:38 -04:00
@media (min-height: 1300px) {
.channelList, .programGrid {
height: 1100px;
}
}
@media (min-height: 1400px) {
.channelList, .programGrid {
height: 1200px;
}
}
@media (max-width: 800px) {
2014-01-06 13:25:33 -05:00
.guideChannelImage {
display: none;
}
2014-01-08 00:25:21 -05:00
.timerPageImageContainer {
display: none !important;
}
2015-04-11 21:38:38 -04:00
.channelHeaderCell, .channelTimeslotHeader {
width: 89px;
}
.programGrid, .timeslotHeaders {
margin-left: 90px;
}
}