apostrophe
Version:
The Apostrophe Content Management System.
45 lines (40 loc) • 810 B
text/less
.apos-tooltip
{
font-family: "Roboto", "Helvetica", sans-serif;
position: absolute;
background-color: @apos-dark;
font-weight: 700;
color: @apos-white;
padding: 7px 10px;
z-index: @apos-z-index-max;
opacity: 0;
font-size: 12px;
transition: opacity 0.5s ease;
transition-delay: 250ms;
pointer-events: none;
.apos-rounded;
.apos-drop-shadow();
&:before {
content: "";
position: absolute;
width: 0;
height: 0;
border-style: solid;
border-width: 10px 10px 0 10px;
border-color: @apos-dark transparent transparent transparent;
margin: auto;
left: 0;
right: 0;
bottom: -7px;
}
}
.apos-tooltip--bottom:before
{
transform: rotate(180deg);
bottom: auto;
top: -10px;
}
.apos-tooltip--visible {
opacity: 1;
pointer-events: auto;
}