7147d370964619773bfd7a7761281240262aebe4 hiram Tue Sep 10 15:05:22 2024 -0700 adding pop up help text refs #32596 diff --git src/hg/htdocs/style/assemblySearch.css src/hg/htdocs/style/assemblySearch.css index 009500d..c226237 100644 --- src/hg/htdocs/style/assemblySearch.css +++ src/hg/htdocs/style/assemblySearch.css @@ -86,49 +86,49 @@ .colVertical { display: flex; flex-direction: column; /* Arrange radio buttons vertically */ } .formDiv > div, .radioGroupContainer { width: 100%; box-sizing: border-box; } .searchTip { position: relative; display: inline-block; cursor: pointer; - background-color: #e5cb99; - color: #00f; + border: 1px solid #888; + padding: 2px; + border-radius: 4px; } .searchTiptext { visibility: hidden; width: 600px; background-color: #fff; color: #000; border: 1px solid black; text-align: left; border-radius: 5px; padding: 5px; position: absolute; z-index: 1; - bottom: -925%; /* Position above the text */ - left: 50%; - /* margin-left: -70px; /* Center the searchTip */ - margin-left: -300px; + top: 20px; /* Position below the prompt text */ + right: 0; /* right border of this pop-up aligns with right border of + prompt text */ transition: opacity 0.3s; } .searchTip:hover .searchTiptext { visibility: visible; opacity: 1; } ol.noBullets { list-style-type: none; padding: 0; margin: 0; } #modalWrapper.overlay::before {