mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
fix web project
This commit is contained in:
parent
e103daf46c
commit
740e8a62a8
@ -1,9 +1,17 @@
|
|||||||
.btnNotifications {
|
.btnNotifications {
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
|
position: absolute;
|
||||||
|
top: 25px !important;
|
||||||
|
right: 10px !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
outline: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btnNotifications:hover {
|
||||||
|
background: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
.btnNotificationsInner {
|
.btnNotificationsInner {
|
||||||
text-decoration: none !important;
|
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
border-radius: 1000px;
|
border-radius: 1000px;
|
||||||
padding: 6px 10px 5px;
|
padding: 6px 10px 5px;
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<label for="txtOpenSubtitlePassword">${LabelOpenSubtitlesPassword}</label>
|
<label for="txtOpenSubtitlePassword">${LabelOpenSubtitlesPassword}</label>
|
||||||
<input type="password" id="txtOpenSubtitlePassword" />
|
<input type="password" id="txtOpenSubtitlePassword" autocomplete="off" />
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul data-role="listview" class="ulForm">
|
<ul data-role="listview" class="ulForm">
|
||||||
|
@ -311,6 +311,8 @@
|
|||||||
html += user.name;
|
html += user.name;
|
||||||
html += '</a>';
|
html += '</a>';
|
||||||
|
|
||||||
|
//html += '<a href="#" class="btnNotifications"><div class="btnNotificationsInner">0</div></a>';
|
||||||
|
|
||||||
html += '<div class="libraryMenuDivider" style="margin-top:0;"></div>';
|
html += '<div class="libraryMenuDivider" style="margin-top:0;"></div>';
|
||||||
|
|
||||||
var homeHref = window.ApiClient ? 'index.html' : 'selectserver.html';
|
var homeHref = window.ApiClient ? 'index.html' : 'selectserver.html';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
(function ($, document) {
|
(function ($, document) {
|
||||||
|
|
||||||
var view = LibraryBrowser.getDefaultItemsView('PosterCard', 'PosterCard');
|
var view = LibraryBrowser.getDefaultItemsView('Poster', 'Poster');
|
||||||
|
|
||||||
// The base query options
|
// The base query options
|
||||||
var query = {
|
var query = {
|
||||||
@ -54,10 +54,7 @@
|
|||||||
items: result.Items,
|
items: result.Items,
|
||||||
shape: "portrait",
|
shape: "portrait",
|
||||||
context: 'movies-trailers',
|
context: 'movies-trailers',
|
||||||
showTitle: true,
|
|
||||||
showYear: true,
|
|
||||||
lazy: true,
|
lazy: true,
|
||||||
cardLayout: true,
|
|
||||||
showDetailsMenu: true
|
showDetailsMenu: true
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -3,8 +3,7 @@
|
|||||||
window.FileSystem = {
|
window.FileSystem = {
|
||||||
|
|
||||||
fileExists: function (path) {
|
fileExists: function (path) {
|
||||||
var exists = NativeFileSystem.fileExists(path);
|
return NativeFileSystem.fileExists(path);
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user