1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/rocketchat_ynh.git synced 2024-09-03 20:16:25 +02:00
rocketchat_ynh/sources/programs/server/assets/packages/rocketchat_tooltip/tooltip.less
2016-04-29 16:32:48 +02:00

39 lines
596 B
Text

.tooltip {
position: absolute;
visibility: hidden;
background: black;
border-radius: 5px;
z-index: 300;
color: white;
padding: 4px;
font-size: 0.8rem;
opacity: 0;
.transition(opacity 0.3s ease);
&.show {
visibility: visible;
opacity: 0.9;
}
&:after {
content: '';
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 {
&:after {
top: -5px;
border-top: none;
border-bottom: 5px solid #000;
}
}
}