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

reduce image indicator sizes

This commit is contained in:
Luke Pulverenti 2014-01-01 22:53:27 -05:00
parent 7743b36bc9
commit bcb4b9da33
11 changed files with 46 additions and 28 deletions

View file

@ -135,9 +135,9 @@
html += '<div class="posterItemImage" style="background-color:' + background + ';"></div>';
}
html += '<div class="posterItemText">' + user.Name + '</div>';
html += '<div class="posterItemText" style="color:#000;">' + user.Name + '</div>';
html += '<div class="posterItemText">';
html += '<div class="posterItemText" style="color:#000;">';
var lastSeen = LoginPage.getLastSeenText(user.LastActivityDate);
if (lastSeen != "") {
html += lastSeen;