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

add tv genre configuration options

This commit is contained in:
Luke Pulverenti 2016-06-03 15:32:10 -04:00
parent 81ab24a44c
commit f13258a120
24 changed files with 261 additions and 143 deletions

View file

@ -15,12 +15,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.4.16",
"_release": "1.4.16",
"version": "1.4.17",
"_release": "1.4.17",
"_resolution": {
"type": "version",
"tag": "1.4.16",
"commit": "b564ac84f300199b48a8a2338111d6b7609b671b"
"tag": "1.4.17",
"commit": "26ee95baf54887c88d2aadf768ded7aa75a65fb7"
},
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.0",

View file

@ -30,7 +30,7 @@
.inputLabel {
display: inline-block;
transition: all .25s ease-out;
transition: all .2s ease-out;
}
.inputLabel.blank {

View file

@ -2,10 +2,13 @@
var EmbyInputPrototype = Object.create(HTMLInputElement.prototype);
var inputId = 0;
EmbyInputPrototype.createdCallback = function () {
if (!this.id) {
this.id = 'input' + new Date().getTime();
this.id = 'embyinput' + inputId;
inputId++;
}
};

View file

@ -103,6 +103,8 @@
}
}
var inputId = 0;
EmbySelectPrototype.createdCallback = function () {
var parent = this.parentNode;
@ -112,8 +114,10 @@
parent.replaceChild(div, this);
div.appendChild(this);
}
if (!this.id) {
this.id = 'select' + new Date().getTime();
this.id = 'embyselect' + inputId;
inputId++;
}
this.removeEventListener('mousedown', onMouseDown);

View file

@ -186,7 +186,7 @@
.channelHeaderCell {
border-bottom: .65vh solid #121212 !important;
background-size: auto 65.7%;
background-size: auto 70%;
background-position: 90% center;
background-repeat: no-repeat;
}
@ -234,7 +234,7 @@
}
.layout-tv .channelPrograms, .layout-tv .channelHeaderCell {
height: 7.6vh;
height: 9vh;
}
}
@ -365,13 +365,12 @@
height: auto !important;
}
.programCell:focus, .channelHeaderCell:focus, .btnSelectDate:focus {
background-color: #52B54B;
.programCell, .channelHeaderCell, .btnSelectDate {
outline: none !important;
}
.programCell:focus .programAccent {
background-color: transparent !important;
.programCell:focus, .channelHeaderCell:focus, .btnSelectDate:focus {
background-color: #555;
}
.timerIcon, .seriesTimerIcon {

View file

@ -307,6 +307,7 @@
// but since mobile browsers are often underpowered,
// it can help performance to get them out of the markup
var showIndicators = window.innerWidth >= 800;
showIndicators = false;
var options = {
showHdIcon: showIndicators,