diff --git a/dashboard-ui/css/images/userdata/administrator.png b/dashboard-ui/css/images/userdata/administrator.png new file mode 100644 index 0000000000..cf6d67457a Binary files /dev/null and b/dashboard-ui/css/images/userdata/administrator.png differ diff --git a/dashboard-ui/css/images/userdata/password.png b/dashboard-ui/css/images/userdata/password.png new file mode 100644 index 0000000000..3369809c60 Binary files /dev/null and b/dashboard-ui/css/images/userdata/password.png differ diff --git a/dashboard-ui/css/site.css b/dashboard-ui/css/site.css index a4f05fd190..f3f44668d8 100644 --- a/dashboard-ui/css/site.css +++ b/dashboard-ui/css/site.css @@ -33,7 +33,7 @@ body { h1 { font-family: 'Segoe UI Light', 'Open Sans', Arial, Helvetica, sans-serif; font-weight: 200; - font-size: 28pt; + font-size: 32pt; } .toolsSidebar h1 { @@ -162,7 +162,7 @@ h1 .imageLink { } h1 .imageLink img { - height: 28px; + height: 32px; } .imageLink:hover { @@ -911,7 +911,6 @@ progress { margin: -.7em .5em auto 0; } -#itemFav img { - width: 64px; - cursor: pointer; +.userProfileIcon { + width: 36px; } diff --git a/dashboard-ui/scripts/userprofilespage.js b/dashboard-ui/scripts/userprofilespage.js index 57e6f7c747..56295e9139 100644 --- a/dashboard-ui/scripts/userprofilespage.js +++ b/dashboard-ui/scripts/userprofilespage.js @@ -36,9 +36,12 @@ html += ""; } - html += "

" + user.Name + "

"; + html += "

" + user.Name; - html += ""; + if (user.Configuration.HasPassword) html += 'Password'; + if (user.Configuration.IsAdministrator) html += 'Administrator'; + + html += "

"; html += "Delete";