aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/static/new/css/mytooltip.css
blob: bc44c488d524d014052e583aef49bf6060cc0a73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.mytooltiptext {
    visibility: hidden;
    width: inherit;
    background-color: #E5E5AF;
    color: #595959;
    text-align: left;
    padding: 5px 0;
    border-radius: 6px;

    position: absolute;
    z-index: 1;
}

.mytooltip:hover .mytooltiptext {
    visibility: visible;
}