The communications platform that puts data protection first.
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.
Rocket.Chat/packages/rocketchat-tooltip/client/tooltip.less

40 lines
641 B

9 years ago
.tooltip {
position: absolute;
visibility: hidden;
background: black;
border-radius: 5px;
z-index: 300;
color: white;
padding: 8px 10px;
9 years ago
font-size: 0.8rem;
opacity: 0;
max-width: 400px;
text-align: center;
transition: opacity 0.3s ease;
9 years ago
&.show {
visibility: visible;
opacity: 0.9;
}
.tooltip-arrow {
9 years ago
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
width: 0;
height: 0;
border-top: 5px solid #000000;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
}
&.bellow {
.tooltip-arrow {
top: -5px;
border-top: none;
border-bottom: 5px solid #000000;
}
}
9 years ago
}