Path: blob/master/webroot/rsrc/css/aphront/tooltip.css
12242 views
/**1* @provides aphront-tooltip-css2*/34.jx-tooltip-container {5position: absolute;6padding: 5px;78/* In Chrome, moving the cursor into the empty space next to the "caret" on9the caret side of the tooltip can cause the tooltip to flicker rapidly10because the cursor hits the container. To stop this, prevent cursor11events on the container. See T8440. */12pointer-events: none;13}1415.jx-tooltip-appear {16animation: 0.5s tooltip-appear;1718/* Without this, there's a nasty pop-in effect at the end of the animation19when Safari changes font smoothing. The text becomes visibly more bold20after the last frame of animation. */21-webkit-font-smoothing: subpixel-antialiased;22}2324@keyframes tooltip-appear {250% {26opacity: 0;27}2829100% {30opacity: 1;31}32}3334.jx-tooltip-hidden {35opacity: 0;36}3738.jx-tooltip-inner {39position: relative;40background: #000;41border-radius: 3px;42}4344.jx-tooltip {45color: #fff;46font-size: {$normalfontsize};47-webkit-font-smoothing: antialiased;48font-weight: bold;49padding: 6px 8px;50overflow: hidden;51white-space: pre-wrap;52}5354.jx-tooltip:after {55border: solid transparent;56content: " ";57height: 0;58width: 0;59position: absolute;60pointer-events: none;61border-color: rgba({$alphablack}, 0);62border-width: 5px;63}6465.jx-tooltip-align-E {66margin-left: 5px;67}6869.jx-tooltip-align-E .jx-tooltip:after {70margin-top: -5px;71border-right-color: #000;72right: 100%;73top: 50%;74}7576.jx-tooltip-align-E {77margin-right: 5px;78}7980.jx-tooltip-align-W .jx-tooltip:after {81margin-top: -5px;82border-left-color: #000;83left: 100%;84top: 50%;85}8687.jx-tooltip-align-N {88margin-bottom: 5px;89}9091.jx-tooltip-align-N .jx-tooltip:after {92margin-left: -5px;93border-top-color: #000;94top: 100%;95left: 50%;96}9798.jx-tooltip-align-N {99margin-top: 5px;100}101102.jx-tooltip-align-S .jx-tooltip:after {103margin-left: -5px;104border-bottom-color: #000;105bottom: 100%;106left: 50%;107}108109110