3984f5a01e24a3cb3ffd1063aa77014a2b29dfb0
kate
  Wed May 5 19:54:06 2021 -0700
Code cleanup. refs #27408

diff --git src/hg/htdocs/style/HGStyle.css src/hg/htdocs/style/HGStyle.css
index 872c31a..63e408c 100644
--- src/hg/htdocs/style/HGStyle.css
+++ src/hg/htdocs/style/HGStyle.css
@@ -974,39 +974,39 @@
     cursor: default;
 }
 
 span.gbSessionLabelPanel:hover {
       background-color: #d4d4d4;
 }
 
 span.gbSessionLabelText {
     color: darkblue;
 }
 
 span.gbSessionChanged {
     color: darkslategray !important;
 }
 
-.tooltip {
+/* Table browser styles */
+
+.tbTooltip {
     display: inline-block;
 }
 
-.tooltiptext {
+.tbTooltipLabel {
+    background: #EFEFEF;
+    padding: 5px;
+}
+
+.tbTooltiptext {
     visibility: hidden;
     font-style: italic;
     font-size: smaller;
-    z-index: 1;
-    opacity: 0;
-    width: 220px;
     padding: 5px;
-    left: 105%;
-    transition: opacity .6s;
-    line-height: 1em;
 }
 
-.tooltip:hover .tooltiptext {
+.tbTooltip:hover .tbTooltiptext {
     visibility: visible;
-    opacity: .9;
 }