You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
717 B
37 lines
717 B
.tooltip {
|
|
visibility: hidden;
|
|
background-color: var(--contrast-80);
|
|
color: var(--contrast-10);
|
|
opacity: 0;
|
|
width: 250px;
|
|
margin-top: 36px;
|
|
margin-left: -250px;
|
|
position: absolute;
|
|
z-index: 100;
|
|
font-size: 14px;
|
|
border-radius: var(--border-radius);
|
|
box-shadow: var(--box-shadow);
|
|
line-height: 20px;
|
|
transition: opacity 0.5s;
|
|
font-weight: normal;
|
|
text-align: left;
|
|
padding: 6px 12px;
|
|
}
|
|
|
|
.icon {
|
|
color: var(--contrast-60);
|
|
font-size: 16px;
|
|
padding: 8px 8px 8px 0;
|
|
}
|
|
|
|
.HelpButton {
|
|
border: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.HelpButton:hover .tooltip {
|
|
visibility: visible;
|
|
opacity: 100%;
|
|
transition: opacity 0.5s;
|
|
}
|