1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
This commit is contained in:
Luke Pulverenti 2013-03-30 10:57:37 -04:00
commit ee6f4f2b1e
4 changed files with 9 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -33,7 +33,7 @@ body {
h1 { h1 {
font-family: 'Segoe UI Light', 'Open Sans', Arial, Helvetica, sans-serif; font-family: 'Segoe UI Light', 'Open Sans', Arial, Helvetica, sans-serif;
font-weight: 200; font-weight: 200;
font-size: 28pt; font-size: 32pt;
} }
.toolsSidebar h1 { .toolsSidebar h1 {
@ -162,7 +162,7 @@ h1 .imageLink {
} }
h1 .imageLink img { h1 .imageLink img {
height: 28px; height: 32px;
} }
.imageLink:hover { .imageLink:hover {
@ -911,7 +911,6 @@ progress {
margin: -.7em .5em auto 0; margin: -.7em .5em auto 0;
} }
#itemFav img { .userProfileIcon {
width: 64px; width: 36px;
cursor: pointer;
} }

View file

@ -36,9 +36,12 @@
html += "<img src='css/images/userflyoutdefault.png' />"; html += "<img src='css/images/userflyoutdefault.png' />";
} }
html += "<h3>" + user.Name + "</h3>"; html += "<h3>" + user.Name;
html += "</a>"; if (user.Configuration.HasPassword) html += '<img src="css/images/userdata/password.png" alt="Password" title="Password" class="userProfileIcon" />';
if (user.Configuration.IsAdministrator) html += '<img src="css/images/userdata/administrator.png" alt="Administrator" title="Administrator" class="userProfileIcon" />';
html += "</h3></a>";
html += "<a onclick='UserProfilesPage.deleteUser(this);' data-userid='" + user.Id + "' data-username='" + user.Name + "' href='#'>Delete</a>"; html += "<a onclick='UserProfilesPage.deleteUser(this);' data-userid='" + user.Id + "' data-username='" + user.Name + "' href='#'>Delete</a>";