mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update naming project
This commit is contained in:
parent
6ec48ff340
commit
8b28397294
6 changed files with 20 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
||||||
define(['focusManager', 'css!./style.css', 'clearButtonStyle', 'paper-icon-button-light', 'material-icons'], function (focusManager) {
|
define(['focusManager', 'css!./style.css', 'paper-icon-button-light', 'material-icons'], function (focusManager) {
|
||||||
|
|
||||||
var selectedButtonClass = 'alphaPickerButton-selected';
|
var selectedButtonClass = 'alphaPickerButton-selected';
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ define(['focusManager', 'css!./style.css', 'clearButtonStyle', 'paper-icon-butto
|
||||||
}
|
}
|
||||||
|
|
||||||
function getLetterButton(l) {
|
function getLetterButton(l) {
|
||||||
return '<button data-value="' + l + '" class="clearButton alphaPickerButton">' + l + '</button>';
|
return '<button data-value="' + l + '" class="alphaPickerButton">' + l + '</button>';
|
||||||
}
|
}
|
||||||
|
|
||||||
function render(element, options) {
|
function render(element, options) {
|
||||||
|
|
|
@ -16,17 +16,25 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.alphaPickerButton {
|
.alphaPickerButton {
|
||||||
|
background: transparent;
|
||||||
|
border: 0 !important;
|
||||||
|
cursor: pointer;
|
||||||
|
outline: none !important;
|
||||||
|
color: inherit;
|
||||||
|
vertical-align: middle;
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: inherit;
|
||||||
min-width: initial;
|
min-width: initial;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: .1em .4em !important;
|
padding: .1em .4em;
|
||||||
width: auto;
|
width: auto;
|
||||||
border-radius: .1em;
|
border-radius: .1em;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
opacity: .7;
|
opacity: .6;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alphaPicker-vertical .alphaPickerButton {
|
.alphaPicker-vertical .alphaPickerButton {
|
||||||
padding: .2em .4em !important;
|
padding: .2em .4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.alphaPickerButtonIcon {
|
.alphaPickerButtonIcon {
|
||||||
|
|
|
@ -918,7 +918,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
||||||
|
|
||||||
@media all and (max-height: 700px) {
|
@media all and (max-height: 700px) {
|
||||||
|
|
||||||
.alphabetPicker-vertical .alphaPickerButton {
|
.alphaPicker-vertical .alphaPickerButton {
|
||||||
padding-top: 1px !important;
|
padding-top: 1px !important;
|
||||||
padding-bottom: 1px !important;
|
padding-bottom: 1px !important;
|
||||||
}
|
}
|
||||||
|
@ -926,7 +926,7 @@ span.itemCommunityRating:not(:empty) + .userDataIcons {
|
||||||
|
|
||||||
@media all and (max-height: 600px) {
|
@media all and (max-height: 600px) {
|
||||||
|
|
||||||
.alphabetPicker-vertical .alphaPickerButton {
|
.alphaPicker-vertical .alphaPickerButton {
|
||||||
padding-top: 0 !important;
|
padding-top: 0 !important;
|
||||||
padding-bottom: 0 !important;
|
padding-bottom: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
SortBy: "SortName",
|
SortBy: "SortName",
|
||||||
SortOrder: "Ascending",
|
SortOrder: "Ascending",
|
||||||
Recursive: true,
|
Recursive: true,
|
||||||
Fields: "PrimaryImageAspectRatio,SortName,DateCreated,ItemCounts",
|
Fields: "PrimaryImageAspectRatio,SortName,ItemCounts,BasicSyncInfo",
|
||||||
StartIndex: 0,
|
StartIndex: 0,
|
||||||
ImageTypeLimit: 1,
|
ImageTypeLimit: 1,
|
||||||
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
|
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
|
||||||
|
|
|
@ -1657,6 +1657,9 @@ var AppInfo = {};
|
||||||
},
|
},
|
||||||
shuffle: function (item) {
|
shuffle: function (item) {
|
||||||
return MediaController.shuffle(item);
|
return MediaController.shuffle(item);
|
||||||
|
},
|
||||||
|
pause: function () {
|
||||||
|
return MediaController.pause();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
SortOrder: "Ascending",
|
SortOrder: "Ascending",
|
||||||
IncludeItemTypes: "Series",
|
IncludeItemTypes: "Series",
|
||||||
Recursive: true,
|
Recursive: true,
|
||||||
Fields: "PrimaryImageAspectRatio,SortName",
|
Fields: "PrimaryImageAspectRatio,SortName,BasicSyncInfo",
|
||||||
ImageTypeLimit: 1,
|
ImageTypeLimit: 1,
|
||||||
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
|
EnableImageTypes: "Primary,Backdrop,Banner,Thumb",
|
||||||
StartIndex: 0,
|
StartIndex: 0,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue