Farmbot-Web-App/frontend/css/tooltips.scss

63 lines
1.1 KiB
SCSS

.help {
display: inline;
margin-left: 2rem;
.help-text {
display: none;
}
&:hover,
&:active {
.help-text {
display: block;
position: absolute;
left: 17rem;
bottom: -0.8rem;
z-index: 999;
padding: 2px;
font-style: normal;
background-color: $dark_gray;
color: $off_white;
border-radius: 3px;
padding: .5rem .8rem;
width: 250px;
}
}
}
.title-help {
display: inline;
.title-help-text {
overflow: hidden;
max-height: 0;
color: transparent;
transition: all 0.5s ease;
transition-delay: 0.2s;
font-style: italic;
line-height: 2rem;
font-family: sans-serif;
a {
pointer-events: all;
}
a:link {
font-style: normal;
color: $black;
}
a:hover {
font-weight: 600;
color: $black;
}
a:active {
color: $black;
}
&.open{
max-height: 16rem;
color: $black;
transition: all 0.5s ease;
margin-bottom: 4rem;
}
}
}
.title-help-icon {
display: inline;
margin: 0 1rem;
}