You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

83 lines
2.5 KiB

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