diff --git a/public/less/admin/general/dashboard.less b/public/less/admin/general/dashboard.less
index c8b704707b..12477d9142 100644
--- a/public/less/admin/general/dashboard.less
+++ b/public/less/admin/general/dashboard.less
@@ -136,4 +136,17 @@
.motd textarea {
width: 100%;
}
+
+ .stats {
+ .formatted-number {
+ font-size: 22px;
+ }
+
+ .stat {
+ text-transform: uppercase;
+ font-weight: 600;
+ font-size: 10px;
+ color: #999;
+ }
+ }
}
\ No newline at end of file
diff --git a/public/src/admin/general/dashboard.js b/public/src/admin/general/dashboard.js
index 9a5faede09..07e566ca68 100644
--- a/public/src/admin/general/dashboard.js
+++ b/public/src/admin/general/dashboard.js
@@ -94,20 +94,20 @@ define('admin/general/dashboard', ['semver', 'Chart', 'translator'], function (s
graphData.rooms = data;
var html = '
' +
- '
' + data.onlineRegisteredCount + '
' +
- '
[[admin/general/dashboard:active-users.users]]
' +
+ '
' + data.onlineRegisteredCount + '' +
+ '
[[admin/general/dashboard:active-users.users]]
' +
'
' +
'' +
- '
' + data.onlineGuestCount + '
' +
- '
[[admin/general/dashboard:active-users.guests]]
' +
+ '
' + data.onlineGuestCount + '' +
+ '
[[admin/general/dashboard:active-users.guests]]
' +
'
' +
'' +
- '
' + (data.onlineRegisteredCount + data.onlineGuestCount) + '
' +
- '
[[admin/general/dashboard:active-users.total]]
' +
+ '
' + (data.onlineRegisteredCount + data.onlineGuestCount) + '' +
+ '
[[admin/general/dashboard:active-users.total]]
' +
'
' +
'' +
- '
' + data.socketCount + '
' +
- '
[[admin/general/dashboard:active-users.connections]]
' +
+ '
' + data.socketCount + '' +
+ '
[[admin/general/dashboard:active-users.connections]]
' +
'
';
updateRegisteredGraph(data.onlineRegisteredCount, data.onlineGuestCount);
diff --git a/src/views/admin/general/dashboard.tpl b/src/views/admin/general/dashboard.tpl
index cc1d8d97ce..62502ea005 100644
--- a/src/views/admin/general/dashboard.tpl
+++ b/src/views/admin/general/dashboard.tpl
@@ -29,25 +29,25 @@