06d7be056190c14b85e71bc12523f18ea6815b5e markd Mon Dec 7 00:50:29 2020 -0800 BLAT mmap index support merge with master diff --git src/hg/htdocs/style/mouseOver.css src/hg/htdocs/style/mouseOver.css index df98efb..59ba569 100644 --- src/hg/htdocs/style/mouseOver.css +++ src/hg/htdocs/style/mouseOver.css @@ -1,30 +1,29 @@ -.wigMouseOver { +.mouseOverVerticalLine { position: fixed; - left: 0px; + width: 1px; + background: #ffff00; + height: 100%; + display: none; + z-index: 999; + opacity: 1; + border-style: hidden solid hidden solid; + border-width: 1px; + border-color: #2222cc; + pointer-events: none +} + +.mouseOverText { + position: fixed; + left: 100px; top: 100px; width: auto; height: auto; - background-color: rgba(0, 0, 0, 0.1); - opacity: 0; - visibility: hidden; - transform: scale(1.1); - margin-left: 200; -} - -.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 { + background-color: #3333cc; + color: #ffff00; + display: none; opacity: 1; - visibility: visible; - transform: scale(1.0); - transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s; + z-index: 1000; + border: 1px solid #ffff00; + text-align: right; + pointer-events: none }