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

fix up dashboard

This commit is contained in:
Luke Pulverenti 2016-07-30 17:20:42 -04:00
parent 06f9b01c37
commit 7beb5026ec
2 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
define(['datetime', 'jQuery'], function (datetime, $) {
define(['datetime', 'jQuery', 'cardStyle'], function (datetime, $) {
function renderNoHealthAlertsMessage(page) {
@ -309,7 +309,7 @@
var nowPlayingItem = session.NowPlayingItem;
var className = nowPlayingItem ? 'card activeSession' : 'card activeSession';
var className = nowPlayingItem ? 'scalableCard card activeSession' : 'scalableCard card activeSession';
if (session.TranscodingInfo && session.TranscodingInfo.CompletionPercentage) {
className += ' transcodingSession';
@ -317,7 +317,7 @@
html += '<div class="' + className + '" id="' + rowId + '">';
html += '<div class="cardBox" style="box-shadow:0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);margin:4px;">';
html += '<div class="cardBox visualCardBox">';
html += '<div class="cardScalable">';
html += '<div class="cardPadder"></div>';