1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update lists

This commit is contained in:
Luke Pulverenti 2016-07-19 01:09:14 -04:00
parent cc2cd5731d
commit 44d840d483
3 changed files with 13 additions and 1 deletions

View file

@ -154,7 +154,7 @@ define(['apphost', 'globalize', 'connectionManager', 'itemHelper', 'embyRouter',
if (user.Policy.IsAdministrator) { if (user.Policy.IsAdministrator) {
if (item.Type != 'Timer') { if (item.Type != 'Timer' && item.Type != 'Program') {
commands.push({ commands.push({
name: globalize.translate('sharedcomponents#Refresh'), name: globalize.translate('sharedcomponents#Refresh'),
id: 'refresh' id: 'refresh'

View file

@ -75,6 +75,10 @@ define(['apphost'], function (appHost) {
return false; return false;
} }
if (itemType == 'Program') {
return false;
}
if (user.Policy.IsAdministrator) { if (user.Policy.IsAdministrator) {
return true; return true;

View file

@ -138,6 +138,10 @@ div.listItem {
transform: scale(1.025, 1.025); transform: scale(1.025, 1.025);
} }
.listItem > .fab:first-child {
margin-left: .75em;
}
.paperList { .paperList {
padding: .5em 0; padding: .5em 0;
margin: 1em auto; margin: 1em auto;
@ -149,6 +153,10 @@ div.listItem {
background-color: transparent !important; background-color: transparent !important;
} }
.paperList .listItem {
border-bottom: 0;
}
.listItemMediaInfo { .listItemMediaInfo {
align-items: center; align-items: center;
} }