mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
update search
This commit is contained in:
parent
b90d8515b1
commit
6d832b2699
@ -45,14 +45,14 @@ body:not(.dashboardDocument) .mainDrawerButton {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.viewMenuBar.semiTransparent {
|
||||
background-color: #000;
|
||||
}
|
||||
.viewMenuBar.semiTransparent {
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
.libraryViewNav .pageTabButton {
|
||||
font-weight: 400;
|
||||
text-transform: none;
|
||||
}
|
||||
.libraryViewNav .pageTabButton {
|
||||
font-weight: 400;
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
.pageTabButton.is-active .pageTabButtonSelectionBar {
|
||||
display: none !important;
|
||||
@ -163,3 +163,7 @@ h1, h1 a {
|
||||
.searchBackButton {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.searchPageSearchButton {
|
||||
display: inline-flex!important;
|
||||
}
|
||||
|
@ -184,6 +184,7 @@
|
||||
var haspw = cardContent.getAttribute('data-haspw');
|
||||
|
||||
if (id == 'manual') {
|
||||
context.querySelector('#txtManualName').value = '';
|
||||
showManualForm(context, true);
|
||||
}
|
||||
else if (haspw == 'false') {
|
||||
@ -216,6 +217,7 @@
|
||||
});
|
||||
|
||||
view.querySelector('.btnManual').addEventListener('click', function () {
|
||||
view.querySelector('#txtManualName').value = '';
|
||||
showManualForm(view, true);
|
||||
});
|
||||
|
||||
@ -227,6 +229,7 @@
|
||||
|
||||
if (!users.length) {
|
||||
|
||||
view.querySelector('#txtManualName').value = '';
|
||||
showManualForm(view, false, false);
|
||||
|
||||
} else {
|
||||
|
@ -1523,10 +1523,6 @@ var AppInfo = {};
|
||||
}
|
||||
else {
|
||||
AppInfo.enableSupporterMembership = true;
|
||||
|
||||
if (!isAndroid && !isIOS) {
|
||||
AppInfo.enableAppLayouts = true;
|
||||
}
|
||||
}
|
||||
|
||||
// This doesn't perform well on iOS
|
||||
|
@ -22,11 +22,18 @@
|
||||
text-indent: 12.5%;
|
||||
}
|
||||
}
|
||||
|
||||
.searchPageSearchButton {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
<button is="paper-icon-button-light" style="position: absolute; top: .6em; left: 0; z-index: 1;" tabindex="-1" class="btnBack autoSize searchBackButton">
|
||||
<i class="md-icon"></i>
|
||||
</button>
|
||||
<button is="paper-icon-button-light" style="position: absolute; top: .6em; left: 0; z-index: 1;" tabindex="-1" class="btnBack autoSize searchPageSearchButton">
|
||||
<i class="md-icon">search</i>
|
||||
</button>
|
||||
|
||||
<div data-role="content" style="padding-top:0!important;padding-left:0!important;padding-right:0!important;">
|
||||
<div class="readOnlyContent" style="text-align: center;margin: 0 auto;">
|
||||
|
Loading…
Reference in New Issue
Block a user