Resolve issue #129

This commit is contained in:
djmaze 2021-08-27 12:20:48 +02:00
parent ff8e1ebd80
commit 2f87ada0c4
2 changed files with 30 additions and 4 deletions

View file

@ -23,4 +23,31 @@
width: 400px;
height: 70px;
}
.help-block {
cursor:help;
display: inline-block;
margin-left: 0.25em;
white-space: break-spaces;
}
.help-block::before {
content: 'ⓘ';
}
.help-block span {
background-color: #fff;
border: 1px solid #000;
border-radius: 3px;
display: none;
left: 2px;
padding: 4px 20px 4px 4px;
position: absolute;
right: 2px;
z-index: 1000;
}
.help-block:active span,
.help-block:focus span,
.help-block:hover span {
display: block;
}
}