d811c26cd8f8e0e196de1672e43763d48e2f5b72
hiram
  Thu Oct 22 15:51:24 2020 -0700
initial crufty version refs #21980

diff --git src/hg/htdocs/style/mouseOver.css src/hg/htdocs/style/mouseOver.css
new file mode 100644
index 0000000..df98efb
--- /dev/null
+++ src/hg/htdocs/style/mouseOver.css
@@ -0,0 +1,30 @@
+.wigMouseOver {
+    position: fixed;
+    left: 0px;
+    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 {
+    opacity: 1;
+    visibility: visible;
+    transform: scale(1.0);
+    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
+}