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

63 lines
1.1 KiB
SCSS
Raw Permalink Normal View History

2017-06-29 12:54:02 -06:00
.help {
display: inline;
margin-left: 2rem;
2017-07-25 17:12:32 -06:00
.help-text {
display: none;
}
2017-06-29 12:54:02 -06:00
&:hover,
&:active {
.help-text {
2018-09-13 14:26:53 -06:00
display: block;
2017-07-25 17:12:32 -06:00
position: absolute;
2018-09-13 14:26:53 -06:00
left: 17rem;
bottom: -0.8rem;
2017-07-25 17:12:32 -06:00
z-index: 999;
padding: 2px;
font-style: normal;
background-color: $dark_gray;
color: $off_white;
border-radius: 3px;
padding: .5rem .8rem;
width: 250px;
2017-06-29 12:54:02 -06:00
}
}
}
.title-help {
display: inline;
2019-09-26 04:44:51 -06:00
.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;
2017-06-29 12:54:02 -06:00
color: $black;
}
2019-09-26 04:44:51 -06:00
a:hover {
font-weight: 600;
color: $black;
}
a:active {
color: $black;
}
&.open{
2019-09-24 03:12:33 -06:00
max-height: 16rem;
color: $black;
transition: all 0.5s ease;
margin-bottom: 4rem;
}
}
2018-06-21 15:04:21 -06:00
}
.title-help-icon {
display: inline;
margin: 0 1rem;
}