| 1 |
.tooltip { |
| 2 |
position: absolute; |
| 3 |
z-index: 1070; |
| 4 |
display: block; |
| 5 |
font-style: normal; |
| 6 |
font-weight: normal; |
| 7 |
letter-spacing: normal; |
| 8 |
line-break: auto; |
| 9 |
line-height: 1.42857143; |
| 10 |
text-align: left; |
| 11 |
text-align: start; |
| 12 |
text-decoration: none; |
| 13 |
text-shadow: none; |
| 14 |
text-transform: none; |
| 15 |
white-space: normal; |
| 16 |
word-break: normal; |
| 17 |
word-spacing: normal; |
| 18 |
word-wrap: normal; |
| 19 |
font-size: 12px; |
| 20 |
opacity: 0; |
| 21 |
filter: alpha(opacity=0); |
| 22 |
} |
| 23 |
.tooltip.in { |
| 24 |
opacity: 0.9; |
| 25 |
filter: alpha(opacity=90); |
| 26 |
} |
| 27 |
.tooltip.top { |
| 28 |
margin-top: -3px; |
| 29 |
padding: 5px 0; |
| 30 |
} |
| 31 |
.tooltip.right { |
| 32 |
margin-left: 3px; |
| 33 |
padding: 0 5px; |
| 34 |
} |
| 35 |
.tooltip.bottom { |
| 36 |
margin-top: 3px; |
| 37 |
padding: 5px 0; |
| 38 |
} |
| 39 |
.tooltip.left { |
| 40 |
margin-left: -3px; |
| 41 |
padding: 0 5px; |
| 42 |
} |
| 43 |
.tooltip-inner { |
| 44 |
max-width: 200px; |
| 45 |
padding: 3px 8px; |
| 46 |
color: #ffffff; |
| 47 |
text-align: center; |
| 48 |
background-color: #000000; |
| 49 |
border-radius: 4px; |
| 50 |
} |
| 51 |
.tooltip-arrow { |
| 52 |
position: absolute; |
| 53 |
width: 0; |
| 54 |
height: 0; |
| 55 |
border-color: transparent; |
| 56 |
border-style: solid; |
| 57 |
} |
| 58 |
.tooltip.top .tooltip-arrow { |
| 59 |
bottom: 0; |
| 60 |
left: 50%; |
| 61 |
margin-left: -5px; |
| 62 |
border-width: 5px 5px 0; |
| 63 |
border-top-color: #000000; |
| 64 |
} |
| 65 |
.tooltip.top-left .tooltip-arrow { |
| 66 |
bottom: 0; |
| 67 |
right: 5px; |
| 68 |
margin-bottom: -5px; |
| 69 |
border-width: 5px 5px 0; |
| 70 |
border-top-color: #000000; |
| 71 |
} |
| 72 |
.tooltip.top-right .tooltip-arrow { |
| 73 |
bottom: 0; |
| 74 |
left: 5px; |
| 75 |
margin-bottom: -5px; |
| 76 |
border-width: 5px 5px 0; |
| 77 |
border-top-color: #000000; |
| 78 |
} |
| 79 |
.tooltip.right .tooltip-arrow { |
| 80 |
top: 50%; |
| 81 |
left: 0; |
| 82 |
margin-top: -5px; |
| 83 |
border-width: 5px 5px 5px 0; |
| 84 |
border-right-color: #000000; |
| 85 |
} |
| 86 |
.tooltip.left .tooltip-arrow { |
| 87 |
top: 50%; |
| 88 |
right: 0; |
| 89 |
margin-top: -5px; |
| 90 |
border-width: 5px 0 5px 5px; |
| 91 |
border-left-color: #000000; |
| 92 |
} |
| 93 |
.tooltip.bottom .tooltip-arrow { |
| 94 |
top: 0; |
| 95 |
left: 50%; |
| 96 |
margin-left: -5px; |
| 97 |
border-width: 0 5px 5px; |
| 98 |
border-bottom-color: #000000; |
| 99 |
} |
| 100 |
.tooltip.bottom-left .tooltip-arrow { |
| 101 |
top: 0; |
| 102 |
right: 5px; |
| 103 |
margin-top: -5px; |
| 104 |
border-width: 0 5px 5px; |
| 105 |
border-bottom-color: #000000; |
| 106 |
} |
| 107 |
.tooltip.bottom-right .tooltip-arrow { |
| 108 |
top: 0; |
| 109 |
left: 5px; |
| 110 |
margin-top: -5px; |
| 111 |
border-width: 0 5px 5px; |
| 112 |
border-bottom-color: #000000; |
| 113 |
} |
| 114 |
|