diff --git a/src/app/dashboard/dashboard.component.css b/src/app/dashboard/dashboard.component.css index bf73a994..9754b3b6 100644 --- a/src/app/dashboard/dashboard.component.css +++ b/src/app/dashboard/dashboard.component.css @@ -77,12 +77,17 @@ tbody tr:hover { } .stats-body { - color: #316d94; padding-top: 0px; padding-bottom: 0px; padding-right: 0px; + } .stats { margin-bottom: 20px; } + +.card-title { + font-weight: 600; + color: #4b7cf3; +} diff --git a/src/app/item-detail/item-detail.component.html b/src/app/item-detail/item-detail.component.html index dd1858d9..89498411 100644 --- a/src/app/item-detail/item-detail.component.html +++ b/src/app/item-detail/item-detail.component.html @@ -79,7 +79,7 @@
-

{{itemData.overview.maxVu}}

+

{{itemData.overview.maxVu}}

@@ -89,7 +89,7 @@

{{itemData.overview.maxVu}}

-

{{itemData.overview.throughput > 1000 ? +

{{itemData.overview.throughput > 1000 ? Math.round(itemData.overview.throughput) : itemData.overview.throughput}} hits/s

@@ -105,10 +105,10 @@

{{itemData.overview.throughput > 1000 ?
-

{{ +

{{ Math.round((itemData.overview.percentil / 1000) * 100) / 100}} s

-

{{ +

{{ itemData.overview.percentil}} ms

@@ -120,14 +120,14 @@

-

+

n/a

-

{{ +

{{ Math.round((itemData.overview.avgLatency / 1000) * 100) / 100}} s

{{ + class="card-title">{{ itemData.overview.avgLatency}} ms

@@ -142,14 +142,14 @@

-

+

n/a

-

{{ +

{{ Math.round((itemData.overview.avgConnect / 1000) * 100) / 100}} s

{{ + class="card-title">{{ itemData.overview.avgConnect}} ms

@@ -164,7 +164,7 @@

-

{{convertBytesToMbps(itemData.overview.bytesPerSecond + +

{{convertBytesToMbps(itemData.overview.bytesPerSecond + itemData.overview.bytesSentPerSecond)}} Mbps

@@ -175,7 +175,7 @@

{{convertBytesToMbps(itemData.overview.bytes
-

{{itemData.overview.errorRate}} {{itemData.overview.errorRate}} %

diff --git a/src/app/item-detail/item-detail.component.scss b/src/app/item-detail/item-detail.component.scss index 338e7a73..e1fc212c 100644 --- a/src/app/item-detail/item-detail.component.scss +++ b/src/app/item-detail/item-detail.component.scss @@ -227,6 +227,8 @@ thead .hd { .overview-info .card-title { font-size: 2.1rem; + font-weight: 600; + color: #4b7cf3; } .overview-card {