JBH2TsV4vQrowt0cuBL0wXipF3x3xs53Gs5pwgwpGdUqGW9txgwcCBTjTRxWv3a9CdUaGWUtIXKaHNYsCd48wAZ0uWVeJMDHGtG2CXS0uW04GAGqFNG1FdGnGdaoHs02HW02HW02HBGnHdKaGdaoHs02HWU2HYa0IYGsGM41CXS0CXUaIXOoHMUqCXYrGhStHNDdGWUsHc41CXCrFdOaHXaaHXaaHXbiGda4StC2FdOaGWU0IW0sGM41CXK4FNK4PdYrGgGqFNC2FdOnGdYoHM00IW00IW00IBjHGNesCXKqStYtFdGaGWUsHWUrGW43CXC0CXC0ws0rGW43CXC0FNC0CXC0FNC0FNYqFdwnGdKnGdKaGNUoHs0sHWGW43HXKqGterGXKqHdw4GXG0UsHW0sHBjnINSaGtU0StUaHW40FNGoHcU4FNaaIAanHNT2HNTdGWU0FdKnGs42CXanIWU4uW00IAGnHW40CXUnIW0tFdSnIW04xc01HganHNTdFNKoHWUqFNanGs42FNanIBSnHXbdGW00FdKaGs42FNaaIW04uXO2xc01HgGqFNKoHWUtFdSnIWU4FNbiHXbdHW40CXUaIWUtFdSaIWU4xdO2uXO2StKoHWUqCXaaGs42CXaaIBS0IBjnGW0rINDdGWU0FdKnGs42CXanIWU4MXYqHAGnHW40CXUnIW0tFdSnIW04xc0rHgGqFNKoHWUtFdSnIWU4FNbiGNw2StKoHWUqCXaaGs42CXaaIBSrHhicFt48F3H2Tt4=// // Tooltips // -------------------------------------------------- // Base class .tooltip { position: absolute; z-index: @zindex-tooltip; display: block; visibility: visible; font-size: @font-size-small; line-height: 1.4; .opacity(0); &.in { .opacity(@tooltip-opacity); } &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; } &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; } &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; } &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; } } // Wrapper for the tooltip content .tooltip-inner { max-width: @tooltip-max-width; padding: 3px 8px; color: @tooltip-color; text-align: center; text-decoration: none; background-color: @tooltip-bg; border-radius: @border-radius-base; } // Arrows .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip { &.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -@tooltip-arrow-width; border-width: @tooltip-arrow-width @tooltip-arrow-width 0; border-top-color: @tooltip-arrow-color; } &.top-left .tooltip-arrow { bottom: 0; left: @tooltip-arrow-width; border-width: @tooltip-arrow-width @tooltip-arrow-width 0; border-top-color: @tooltip-arrow-color; } &.top-right .tooltip-arrow { bottom: 0; right: @tooltip-arrow-width; border-width: @tooltip-arrow-width @tooltip-arrow-width 0; border-top-color: @tooltip-arrow-color; } &.right .tooltip-arrow { top: 50%; left: 0; margin-top: -@tooltip-arrow-width; border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0; border-right-color: @tooltip-arrow-color; } &.left .tooltip-arrow { top: 50%; right: 0; margin-top: -@tooltip-arrow-width; border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width; border-left-color: @tooltip-arrow-color; } &.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -@tooltip-arrow-width; border-width: 0 @tooltip-arrow-width @tooltip-arrow-width; border-bottom-color: @tooltip-arrow-color; } &.bottom-left .tooltip-arrow { top: 0; left: @tooltip-arrow-width; border-width: 0 @tooltip-arrow-width @tooltip-arrow-width; border-bottom-color: @tooltip-arrow-color; } &.bottom-right .tooltip-arrow { top: 0; right: @tooltip-arrow-width; border-width: 0 @tooltip-arrow-width @tooltip-arrow-width; border-bottom-color: @tooltip-arrow-color; } }