9dc6d1c33adc6494044cf57bc597cb4238e357d0 hiram Thu Oct 29 15:57:36 2020 -0700 recover purple color and z-index to get it to the top refs #21980 diff --git src/hg/htdocs/style/mouseOver.css src/hg/htdocs/style/mouseOver.css index df98efb..789b3c2 100644 --- src/hg/htdocs/style/mouseOver.css +++ src/hg/htdocs/style/mouseOver.css @@ -1,30 +1,31 @@ .wigMouseOver { position: fixed; left: 0px; top: 100px; width: auto; height: auto; - background-color: rgba(0, 0, 0, 0.1); + background-color: #ff69b4; opacity: 0; visibility: hidden; transform: scale(1.1); margin-left: 200; + z-index: 1000; } .wigMouseOverValue { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: white; padding: 1rem 1.5rem; width: 24rem; border-radius: 0.5rem; } .showMouseOver { opacity: 1; visibility: visible; transform: scale(1.0); transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s; }