d4fd4a86c5c2270cd29a729b889962ef47b5bccd chmalee Thu Aug 31 09:56:27 2023 -0700 Woops forgot one more style change, refs #31365 diff --git src/hg/htdocs/style/HGStyle.css src/hg/htdocs/style/HGStyle.css index d00bc82..4cf36c8 100644 --- src/hg/htdocs/style/HGStyle.css +++ src/hg/htdocs/style/HGStyle.css @@ -1139,21 +1139,22 @@ /* Tooltips - Note these are just general rules all the tooltips will have, the * exact positioning is set by associated javascript in utils.js */ .tooltip { visibility: hidden; background-color: rgb(238,238,238); color: black; text-align: center; position: fixed; z-index: 1003; /* these indices are all over the place for various things */ opacity: 0; line-height: 1em; padding: 3px; border: 1px solid black; border-radius: 2px; box-shadow: 0px 1px 2px darkgrey; + max-width: 400px; } .tooltip:hover .tooltiptext { visibility: visible; opacity: 0.9; }