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:
parent
81ab24a44c
commit
f13258a120
24 changed files with 261 additions and 143 deletions
|
@ -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",
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
|
||||
.inputLabel {
|
||||
display: inline-block;
|
||||
transition: all .25s ease-out;
|
||||
transition: all .2s ease-out;
|
||||
}
|
||||
|
||||
.inputLabel.blank {
|
||||
|
|
|
@ -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++;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue