From 6379e65e0e20976b0de38d154eae4013067f8c20 Mon Sep 17 00:00:00 2001 From: Michael Costa Date: Sat, 8 Apr 2023 12:02:02 +1100 Subject: [PATCH] wip: colors --- src/thsf/static/css/tooltip.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/thsf/static/css/tooltip.css b/src/thsf/static/css/tooltip.css index 85ae78d..3789ae2 100644 --- a/src/thsf/static/css/tooltip.css +++ b/src/thsf/static/css/tooltip.css @@ -1,7 +1,7 @@ .tooltip { position: relative; display: inline-block; - border-bottom: 1px dotted black; + /* border-bottom: 1px dotted black; */ } .tooltip .tooltiptext { @@ -27,13 +27,13 @@ left: 50%; margin-left: -5px; border-width: 5px; - border-style: solid; + /* border-style: solid; */ /* border-color: var(--alt-color) transparent transparent transparent; */ } .tooltip:hover .tooltiptext { visibility: visible; opacity: 1; - font-size: 1em; - padding: 0.5em; + font-size: 0.5em; + padding: 0.2em; }