1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2026-03-02 03:49:30 +00:00

hrefs and tooltips

This commit is contained in:
gnosygnu
2017-03-12 12:34:48 -04:00
parent 05c8c7c784
commit bafaf114d1
2 changed files with 60 additions and 18 deletions

View File

@@ -29,10 +29,40 @@
border-left: 1px solid #ddd;
}
.result_hover {
width:80px;
padding:2px;
text-align:center;
border-left: 1px solid #ddd;
}
/* REF:https://www.w3schools.com/css/css_tooltip.asp */
.tooltip {
position: relative;
display: inline-block;
/* border-bottom: 1px dotted black; */
}
.tooltip .tooltiptext {
visibility: hidden;
width: 100%;
background-color: white;
color: black;
border: 1px solid black;
padding: 5px;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
</style>
<script src="wikimedia.js" type='text/javascript'></script>
</head>
<body>
Please wait. Generating.
</body>
<script>
wm.category.run();