123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- // *************************************
- //
- // Tooltip
- // -> Bootstrap Tooltip
- //
- // *************************************
- // ----- Tooltip ----- //
- .tooltip
- position: absolute
- z-index: 1070
- display: block
- visibility: visible
- font-size: 12px
- line-height: 1.4
- opacity: 0
- filter: alpha(opacity=0)
- .tooltip.in
- opacity: 0.9
- filter: alpha(opacity=90)
- .tooltip.top
- margin-top: -3px
- padding: 5px 0
- .tooltip.right
- margin-left: 3px
- padding: 0 5px
- .tooltip.bottom
- margin-top: 3px
- padding: 5px 0
- .tooltip.left
- margin-left: -3px
- padding: 0 5px
- .tooltip-inner
- max-width: 200px
- padding: 3px 8px
- color: #000
- text-align: center
- text-decoration: none
- background-color: #fff
- border-radius: 4px
- .tooltip-arrow
- position: absolute
- width: 0
- height: 0
- border-color: transparent
- border-style: solid
- .tooltip.top .tooltip-arrow
- bottom: 0
- left: 50%
- margin-left: -5px
- border-width: 5px 5px 0
- border-top-color: #fff
- .tooltip.top-left .tooltip-arrow
- bottom: 0
- left: 5px
- border-width: 5px 5px 0
- border-top-color: #fff
- .tooltip.top-right .tooltip-arrow
- bottom: 0
- right: 5px
- border-width: 5px 5px 0
- border-top-color: #fff
- .tooltip.right .tooltip-arrow
- top: 50%
- left: 0
- margin-top: -5px
- border-width: 5px 5px 5px 0
- border-right-color: #fff
- .tooltip.left .tooltip-arrow
- top: 50%
- right: 0
- margin-top: -5px
- border-width: 5px 0 5px 5px
- border-left-color: #fff
- .tooltip.bottom .tooltip-arrow
- top: 0
- left: 50%
- margin-left: -5px
- border-width: 0 5px 5px
- border-bottom-color: #fff
- .tooltip.bottom-left .tooltip-arrow
- top: 0
- left: 5px
- border-width: 0 5px 5px
- border-bottom-color: #fff
- .tooltip.bottom-right .tooltip-arrow
- top: 0
- right: 5px
- border-width: 0 5px 5px
- border-bottom-color: #fff
|