From 7cb0e127922c379cc943f41a5cf398fe006145cf Mon Sep 17 00:00:00 2001 From: HackerNCoder Date: Thu, 7 Jan 2021 23:39:51 +0000 Subject: [PATCH 1/2] Add tooltip explaining health --- src/instances/views/index.ecr | 40 ++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/src/instances/views/index.ecr b/src/instances/views/index.ecr index 9e0f062..836bdea 100644 --- a/src/instances/views/index.ecr +++ b/src/instances/views/index.ecr @@ -45,6 +45,43 @@ float: right; text-align: right; } + + .tooltip { + position: relative; + display: inline-block; + + } + .tooltip .tooltiptext { + visibility: hidden; + width: 175px; + background-color: #555; + color: #fff; + text-align: center; + border-radius: 6px; + padding: 5px 0; + position: absolute; + z-index: 1; + bottom: 125%; + left: 0%; + margin-left: -60px; + opacity: 0; + transition: opacity 0.3s; + } + + .tooltip .tooltiptext::after { + content: ""; + position: absolute; + top: 100%; + left: 50%; + margin-left: -5px; + border-width: 5px; + border-style: solid; + border-color: #555 transparent transparent transparent; + } + .tooltip:hover .tooltiptext { + visibility: visible; + opacity: 1; + } @@ -66,7 +103,8 @@ ">users ">signup ">location - ">health + "> +
healthUptime / Downtime displayed in percentage.
From fde1e5c09dd188738151884480122bd17bbe5705 Mon Sep 17 00:00:00 2001 From: Perflyst Date: Fri, 22 Jan 2021 16:27:54 +0100 Subject: [PATCH 2/2] Update formatting --- src/instances/views/index.ecr | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/instances/views/index.ecr b/src/instances/views/index.ecr index 836bdea..95512ff 100644 --- a/src/instances/views/index.ecr +++ b/src/instances/views/index.ecr @@ -104,7 +104,8 @@ ">signup ">location "> -
healthUptime / Downtime displayed in percentage.
+
healthUptime / Downtime displayed in percentage
+