Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. $rv-xy-plot-axis-font-color: #6b6b76;
  2. $rv-xy-plot-axis-line-color: #e6e6e9;
  3. $rv-xy-plot-axis-font-size: 11px;
  4. $rv-xy-plot-tooltip-background: #3a3a48;
  5. $rv-xy-plot-tooltip-color: #fff;
  6. $rv-xy-plot-tooltip-font-size: 12px;
  7. $rv-xy-plot-tooltip-border-radius: 4px;
  8. $rv-xy-plot-tooltip-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  9. $rv-xy-plot-tooltip-padding: 7px 10px;
  10. .rv-xy-plot {
  11. color: #c3c3c3;
  12. position: relative;
  13. canvas {
  14. pointer-events: none;
  15. }
  16. .rv-xy-canvas {
  17. pointer-events: none;
  18. position: absolute;
  19. }
  20. }
  21. .rv-xy-plot__inner {
  22. display: block;
  23. }
  24. .rv-xy-plot__axis__line {
  25. fill: none;
  26. stroke-width: 2px;
  27. stroke: $rv-xy-plot-axis-line-color;
  28. }
  29. .rv-xy-plot__axis__tick__line {
  30. stroke: $rv-xy-plot-axis-line-color;
  31. }
  32. .rv-xy-plot__axis__tick__text {
  33. fill: $rv-xy-plot-axis-font-color;
  34. font-size: $rv-xy-plot-axis-font-size;
  35. }
  36. .rv-xy-plot__axis__title {
  37. text {
  38. fill: $rv-xy-plot-axis-font-color;
  39. font-size: $rv-xy-plot-axis-font-size;
  40. }
  41. }
  42. .rv-xy-plot__grid-lines__line {
  43. stroke: $rv-xy-plot-axis-line-color;
  44. }
  45. .rv-xy-plot__circular-grid-lines__line {
  46. fill-opacity: 0;
  47. stroke: $rv-xy-plot-axis-line-color;
  48. }
  49. .rv-xy-plot__series,
  50. .rv-xy-plot__series path {
  51. pointer-events: all;
  52. }
  53. .rv-xy-plot__series--line {
  54. fill: none;
  55. stroke: #000;
  56. stroke-width: 2px;
  57. }
  58. .rv-crosshair {
  59. position: absolute;
  60. font-size: 11px;
  61. pointer-events: none;
  62. }
  63. .rv-crosshair__line {
  64. background: #47d3d9;
  65. width: 1px;
  66. }
  67. .rv-crosshair__inner {
  68. position: absolute;
  69. text-align: left;
  70. top: 0;
  71. }
  72. .rv-crosshair__inner__content {
  73. border-radius: $rv-xy-plot-tooltip-border-radius;
  74. background: $rv-xy-plot-tooltip-background;
  75. color: $rv-xy-plot-tooltip-color;
  76. font-size: $rv-xy-plot-tooltip-font-size;
  77. padding: $rv-xy-plot-tooltip-padding;
  78. box-shadow: $rv-xy-plot-tooltip-shadow;
  79. }
  80. .rv-crosshair__inner--left {
  81. right: 4px;
  82. }
  83. .rv-crosshair__inner--right {
  84. left: 4px;
  85. }
  86. .rv-crosshair__title {
  87. font-weight: bold;
  88. white-space: nowrap;
  89. }
  90. .rv-crosshair__item {
  91. white-space: nowrap;
  92. }
  93. .rv-hint {
  94. position: absolute;
  95. pointer-events: none;
  96. }
  97. .rv-hint__content {
  98. border-radius: $rv-xy-plot-tooltip-border-radius;
  99. padding: $rv-xy-plot-tooltip-padding;
  100. font-size: $rv-xy-plot-tooltip-font-size;
  101. background: $rv-xy-plot-tooltip-background;
  102. box-shadow: $rv-xy-plot-tooltip-shadow;
  103. color: $rv-xy-plot-tooltip-color;
  104. text-align: left;
  105. white-space: nowrap;
  106. }