|
| 1 | +.chardinjs-overlay { |
| 2 | + position: absolute; |
| 3 | + z-index: 999999; |
| 4 | + background-color: #000; |
| 5 | + opacity: 0; |
| 6 | + -webkit-transition: all 0.3s ease-out; |
| 7 | + -moz-transition: all 0.3s ease-out; |
| 8 | + -ms-transition: all 0.3s ease-out; |
| 9 | + -o-transition: all 0.3s ease-out; |
| 10 | + transition: all 0.3s ease-out; } |
| 11 | + |
| 12 | +.chardinjs-helper-layer { |
| 13 | + position: absolute; |
| 14 | + z-index: 9999998; |
| 15 | + color: white; |
| 16 | + -webkit-transition: all 0.3s ease-out; |
| 17 | + -moz-transition: all 0.3s ease-out; |
| 18 | + -ms-transition: all 0.3s ease-out; |
| 19 | + -o-transition: all 0.3s ease-out; |
| 20 | + transition: all 0.3s ease-out; } |
| 21 | + .chardinjs-helper-layer.chardinjs-left { |
| 22 | + border-left: solid white 1px; |
| 23 | + margin-left: -10px; } |
| 24 | + .chardinjs-helper-layer.chardinjs-right { |
| 25 | + border-right: solid white 1px; |
| 26 | + padding-right: 10px; } |
| 27 | + .chardinjs-helper-layer.chardinjs-bottom { |
| 28 | + border-bottom: solid white 1px; |
| 29 | + padding-bottom: 10px; } |
| 30 | + .chardinjs-helper-layer.chardinjs-top { |
| 31 | + border-top: solid white 1px; |
| 32 | + padding-top: 10px; } |
| 33 | + |
| 34 | +.chardinjs-tooltip { |
| 35 | + position: absolute; |
| 36 | + -webkit-transition: opacity 0.1s ease-out; |
| 37 | + -moz-transition: opacity 0.1s ease-out; |
| 38 | + -ms-transition: opacity 0.1s ease-out; |
| 39 | + -o-transition: opacity 0.1s ease-out; |
| 40 | + transition: opacity 0.1s ease-out; |
| 41 | + max-width: 200px; } |
| 42 | + .chardinjs-tooltip.chardinjs-left { |
| 43 | + margin-left: -135px; |
| 44 | + padding-right: 10px; } |
| 45 | + .chardinjs-tooltip.chardinjs-right { |
| 46 | + margin-right: -135px; |
| 47 | + padding-left: 10px; } |
| 48 | + .chardinjs-tooltip.chardinjs-bottom { |
| 49 | + margin-bottom: -50px; |
| 50 | + padding-top: 10px; } |
| 51 | + .chardinjs-tooltip.chardinjs-top { |
| 52 | + margin-top: -50px; |
| 53 | + padding-bottom: 10px; } |
| 54 | + .chardinjs-tooltip.chardinjs-right:before, .chardinjs-tooltip.chardinjs-left:after, .chardinjs-tooltip.chardinjs-bottom:before, .chardinjs-tooltip.chardinjs-top:after { |
| 55 | + content: "."; |
| 56 | + display: inline-block; |
| 57 | + background-color: white; |
| 58 | + height: 1px; |
| 59 | + overflow: hidden; |
| 60 | + position: absolute; } |
| 61 | + .chardinjs-tooltip.chardinjs-right:before, .chardinjs-tooltip.chardinjs-left:after { |
| 62 | + width: 100px; |
| 63 | + top: 50%; } |
| 64 | + .chardinjs-tooltip.chardinjs-bottom:before, .chardinjs-tooltip.chardinjs-top:after { |
| 65 | + width: 1px; |
| 66 | + height: 50px; |
| 67 | + left: 50%; } |
| 68 | + .chardinjs-tooltip.chardinjs-bottom:before { |
| 69 | + top: -50px; } |
| 70 | + .chardinjs-tooltip.chardinjs-top:after { |
| 71 | + bottom: -50px; } |
| 72 | + .chardinjs-tooltip.chardinjs-right:before { |
| 73 | + left: -100px; } |
| 74 | + .chardinjs-tooltip.chardinjs-left:after { |
| 75 | + right: -100px; } |
| 76 | + |
| 77 | +.chardinjs-show-element { |
| 78 | + z-index: 9999999; |
| 79 | + opacity: 0.8; } |
| 80 | + |
| 81 | +.chardinjs-relative-position { |
| 82 | + position: relative; } |
0 commit comments