dizquetv/web/public/style.css
vexorian 9bd3e9063b - Channel redirects will now render in the TV Guide.
- Programs shorter than 5 minutes will not appear in the TV Guide and will be treated the same way Flex time is treated normally.
- The Web UI now has its own TV Guide viewer so that you don't have to rely on clients to preview your channels' line ups.
- API: New endpoint to get what shows are being scheduled for a given time frame.
- Fix bug where some bad luck could cause two different XMLTVs to get written at once, generating a corrupt xmltv file.
2020-09-04 21:48:30 -04:00

240 lines
4.0 KiB
CSS

.commercials-panel {
background-color: rgb(70, 70, 70);
border-top: 1px solid #daa104;
border-left-color: #daa104;
border-right-color: #daa104;
color: white
}
.plex-panel {
margin: 0;
padding: 0;
overflow-y: scroll;
}
.flex-container {
display: flex;
align-items: center;
}
.flex-pull-right {
margin-left: auto;
padding-right: 0.2em
}
.list-group-item-video {
background-color: rgb(70, 70, 70);
border-top: 1px solid #daa104;
border-left-color: #daa104;
border-right-color: #daa104;
color: white
}
.list-group-item-video .fa-plus-circle {
color: #daa104;
}
.list-group-item-video:hover .fa-plus-circle {
color: #000;
}
.list-group-item-video:hover {
background-color: #daa104;
color: #000 !important;
}
.list-group.list-group-root .list-group-item {
border-radius: 0;
border-width: 1px 0 0 0;
padding: 0;
margin: 0;
cursor: pointer;
}
.list-group.list-group-root .list-group-item img {
height: 45px;
}
.list-group.list-group-root .list-group-item {
border-radius: 0;
border-width: 1px 0 0 0;
padding: 0;
margin: 0;
}
.list-group.list-group-root .list-group-item div .tab {
width: 25px;
display: inline-block;
text-align: center;
cursor: pointer;
}
.program-start {
margin-right: 2.5em;
display: inline-block;
vertical-align: top;
/*color: rgb(96,96,96);*/
color: #0c5c68;
font-size: 80%;
font-weight: 400;
font-family: monospace;
white-space: nowrap;
}
.program-row {
align-items: start;
}
.programming-counter {
white-space: nowrap;
margin-right: 1em;
font-size: 80%;
}
.programming-counter > span {
font-weight: 300;
}
.programming-counter > b {
font-weight: 400;
}
.btn-programming-tools {
padding: .25rem .5rem;
font-size: .875rem;
line-height: 1.0;
margin-right: 0.5rem;
}
.loader {
width: 1em;
height: 1em;
border: 0.3em solid #f3f3f3;
border-radius: 50%;
display: inline-block;
border-top: 0.25em solid #3498db;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
table.tvguide {
table-layout: fixed;
}
.tvguide th.hour {
padding-left: 0;
overflow: hidden;
white-space: nowrap;
}
.tvguide .program {
padding-left: 0.2em;
/*border-top: 1px solid black;
border-bottom: 1px solid black ;*/
overflow: hidden;
}
.tvguide .program-with-start {
}
.tvguide .program-with-end {
/*border-right: 1px solid black;*/
}
.tvguide .program .show-title {
white-space: nowrap;
font-weight: 400;
}
.tvguide .program .sub-title {
white-space: nowrap;
font-weight: 300;
}
.tvguide th button {
max-width: 20%;
}
.tvguide th {
position: sticky;
top: 0;
bottom: 0;
background: white;
border-bottom: 1px solid black;
}
.tvguide th.guidenav {
padding-left: 5px;
padding-right: 0;
}
.tvguide td, .tvguide th {
color: #F0F0f0;
border-top: 0;
height: 3.5em;
padding-top: 0;
padding-bottom: 0;
vertical-align: middle;
overflow: hidden;
}
.tvguide th {
height: 1.8em;
}
.tvguide td.channel-number, .tvguide td.channelLoading {
vertical-align: middle;
padding:0;
}
.tvguide td.channel-number div {
text-align:center;
width:100%;
padding:0;
}
.tvguide td.channel-icon {
align-items: center;
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0.2em;
text-align:center;
vertical-align: middle;
}
.tvguide td.channel-icon img {
max-height: 95%;
max-width:99%
}
.tvguide th.even {
background: #423cd4ff;
}
.tvguide th.odd {
background: #262198ff;
}
.tvguide tr.odd td.even {
background: #212121;
}
.tvguide tr.odd td.odd {
background: #515151;;
}
.tvguide tr.even td.odd {
background: #313131
}
.tvguide tr.even td.even {
background: #414141;
}
.tv-guide-now {
width:0.2em;
height: 100%;
position: absolute;
background: #FFFF0040;
top:0;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}