mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
normalize rating to fsk
This commit is contained in:
parent
1f57d9b231
commit
2971ec0e69
86 changed files with 388 additions and 136 deletions
|
@ -6,10 +6,15 @@
|
|||
z-index: 1;
|
||||
bottom: 0;
|
||||
transition: transform 180ms linear;
|
||||
|
||||
contain: layout style;
|
||||
}
|
||||
|
||||
.appfooter.headroom--unpinned {
|
||||
transform: translateY(100%);
|
||||
}
|
||||
.appfooter-blurred {
|
||||
background: rgba(28,28,28,.92);
|
||||
-webkit-backdrop-filter: blur(5px);
|
||||
backdrop-filter: blur(5px);
|
||||
}
|
||||
|
||||
.appfooter.headroom--unpinned {
|
||||
transform: translateY(100%);
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
define(['css!./appfooter'], function () {
|
||||
define(['browser', 'css!./appfooter'], function (browser) {
|
||||
|
||||
function render(options) {
|
||||
|
||||
|
@ -6,6 +6,10 @@
|
|||
|
||||
elem.classList.add('appfooter');
|
||||
|
||||
if (browser.safari) {
|
||||
elem.classList.add('appfooter-blurred');
|
||||
}
|
||||
|
||||
document.body.appendChild(elem);
|
||||
|
||||
return elem;
|
||||
|
|
|
@ -39,6 +39,9 @@
|
|||
case 'manageserver':
|
||||
Dashboard.navigate('dashboard.html');
|
||||
break;
|
||||
case 'remotecontrol':
|
||||
Dashboard.navigate('nowplaying.html');
|
||||
break;
|
||||
case 'sync':
|
||||
Dashboard.navigate('mysync.html');
|
||||
break;
|
||||
|
@ -115,6 +118,11 @@
|
|||
});
|
||||
}
|
||||
|
||||
commands.push({
|
||||
name: globalize.translate('ButtonRemoteControl'),
|
||||
id: 'remotecontrol'
|
||||
});
|
||||
|
||||
if (Dashboard.isConnectMode()) {
|
||||
commands.push({
|
||||
name: globalize.translate('HeaderSelectServer'),
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
</label>
|
||||
<br />
|
||||
<button is="emby-button" type="submit" class="raised submit block">
|
||||
<i class="md-icon">check</i>
|
||||
<span>${ButtonOk}</span>
|
||||
</button>
|
||||
<input id="hfResultId" type="hidden" />
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
</select>
|
||||
</div>
|
||||
<button is="emby-button" type="submit" class="raised submit block">
|
||||
<i class="md-icon">check</i>
|
||||
<span>${ButtonUpload}</span>
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -34,7 +34,14 @@
|
|||
|
||||
require(['confirm'], function (confirm) {
|
||||
|
||||
confirm(Globalize.translate('MessageConfirmRemoveMediaLocation'), Globalize.translate('HeaderRemoveMediaLocation')).then(function () {
|
||||
confirm({
|
||||
|
||||
title: Globalize.translate('HeaderRemoveMediaLocation'),
|
||||
text: Globalize.translate('MessageConfirmRemoveMediaLocation'),
|
||||
confirmText: Globalize.translate('sharedcomponents#ButtonDelete'),
|
||||
primary: 'cancel'
|
||||
|
||||
}).then(function () {
|
||||
|
||||
var refreshAfterChange = currentOptions.refresh;
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<input is="emby-input" class="txtPass" label="${LabelPassword}" required="required" autocomplete="off" type="password"/>
|
||||
</div>
|
||||
<div>
|
||||
<button is="emby-button" type="submit" class="raised button-submit block"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
|
||||
<button is="emby-button" type="submit" class="raised button-submit block"><span>${ButtonSave}</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
@ -62,8 +62,8 @@
|
|||
</div>
|
||||
<br />
|
||||
<div>
|
||||
<button is="emby-button" type="submit" class="raised button-submit block btnSubmitListingsContainer btnSubmitListings hide"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
|
||||
<button is="emby-button" type="button" class="raised button-cancel block btnCancel hide" onclick="history.back();"><i class="md-icon">close</i><span>${ButtonCancel}</span></button>
|
||||
<button is="emby-button" type="submit" class="raised button-submit block btnSubmitListingsContainer btnSubmitListings hide"><span>${ButtonSave}</span></button>
|
||||
<button is="emby-button" type="button" class="raised button-cancel block btnCancel hide" onclick="history.back();"><span>${ButtonCancel}</span></button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
<a class="lnkPremiere" href="https://emby.media/premiere">${ButtonLearnMore}</a>
|
||||
</div><br />
|
||||
<div>
|
||||
<button is="emby-button" type="submit" class="raised button-submit block btnSubmitListings hide"><i class="md-icon">check</i><span>${ButtonSave}</span></button>
|
||||
<button is="emby-button" type="button" class="raised button-cancel block btnCancel hide" onclick="history.back();"><i class="md-icon">close</i><span>${ButtonCancel}</span></button>
|
||||
<button is="emby-button" type="submit" class="raised button-submit block btnSubmitListings hide"><span>${ButtonSave}</span></button>
|
||||
<button is="emby-button" type="button" class="raised button-cancel block btnCancel hide" onclick="history.back();"><span>${ButtonCancel}</span></button>
|
||||
</div>
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue