Include a style file for tooltips.

This commit is contained in:
Chris Wilson
2020-07-29 18:51:48 -04:00
parent c737408715
commit 1abc6b2b2e
4 changed files with 186 additions and 2 deletions

View File

@@ -43,3 +43,16 @@ button:hover, input[type=submit]:hover{
color: #34768a;
text-decoration: none;
}
/** Tooltip styles */
[data-tooltop]{
position: relative;
z-index: 10;
cursor: pointer;
}
[data-tooltip]:before, [data-tooltip]:after{
visibility: hidden;
opacity: 0;
pointer-events: none;
}