From cb36d60c994b319d6701a05a505fb3d85e5d9225 Mon Sep 17 00:00:00 2001 From: Gusted Date: Tue, 29 Dec 2020 14:08:38 +0100 Subject: [PATCH] Improvements - Preserve alphabetic order. - Fix z-index bug. --- assets/css/style.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/assets/css/style.scss b/assets/css/style.scss index 32fa2fbf..35a4958e 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -408,9 +408,12 @@ input#nav-toggle, } /* Vanilla CSS implementation for tooltip */ -[data-toggle="tooltip"]:hover { +[data-toggle="tooltip"] { cursor: pointer; position: relative; +} + +[data-toggle="tooltip"]:hover { z-index: 1337; } @@ -428,6 +431,7 @@ input#nav-toggle, content: attr(data-original-title); color: #fff; font-size: 14px; + font-weight: normal; left: 50%; line-height: 1.2; margin-bottom: 5px; @@ -436,7 +440,6 @@ input#nav-toggle, position: absolute; text-align: center; white-space: break-spaces; - font-weight: normal; width: 200px; }