Guest User

Untitled

a guest
May 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.63 KB | None | 0 0
  1. /**
  2. * @license Highcharts
  3. *
  4. * (c) 2009-2016 Torstein Honsi
  5. *
  6. * License: www.highcharts.com/license
  7. */
  8.  
  9. // Colors for data series and points.
  10. $colors: #f00 #434348 #90ed7d #f7a35c #8085e9 #f15c80 #e4d354 #2b908f #f45b5b #91e8e1 !default;
  11.  
  12. // Chart background, point stroke for markers and columns etc
  13. $background-color: #ffffff !default;
  14.  
  15. // Neutral colors, grayscale by default. The default colors are defined by mixing the
  16. // background-color with neutral, with a weight corresponding to the number in the name.
  17. $neutral-color-100: #000000 !default; // Strong text.
  18. $neutral-color-80: #333333 !default; // Main text and some strokes.
  19. $neutral-color-60: #666666 !default; // Axis labels, axis title, connector fallback.
  20. $neutral-color-40: #999999 !default; // Credits text, export menu stroke.
  21. $neutral-color-20: #cccccc !default; // Disabled texts, button strokes, crosshair etc.
  22. $neutral-color-10: #e6e6e6 !default; // Grid lines etc.
  23. $neutral-color-5: #f2f2f2 !default; // Minor grid lines etc.
  24. $neutral-color-3: #f7f7f7 !default; // Tooltip backgroud, button fills, map null points.
  25.  
  26. // Colored, shades of blue by default
  27. $highlight-color-100: #003399 !default; // Drilldown clickable labels, color axis max color.
  28. $highlight-color-80: #335cad !default; // Selection marker, menu hover, button hover, chart border, navigator series.
  29. $highlight-color-60: #6685c2 !default; // Navigator mask fill.
  30. $highlight-color-20: #ccd6eb !default; // Ticks and axis line.
  31. $highlight-color-10: #e6ebf5 !default; // Pressed button, color axis min color.
  32.  
  33. // Fonts
  34. $font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif !default;
  35. $title-font-size: 1.5em !default;
  36. $subtitle-font-size: 1em !default;
  37. $legend-font-size: 1em !default;
  38. $axis-labels-font-size: 0.9em !default;
  39.  
  40. // Tooltip
  41. $tooltip-border: 1px !default;
  42. $tooltip-background: $neutral-color-3 !default;
  43.  
  44. // Axes
  45. $xaxis-grid-line: 0px !default;
  46.  
  47. // Range-selector
  48. $range-selector-button-border: 0px !default;
  49. $range-selector-input-text: $neutral-color-80 !default;
  50. $range-selector-input-border: $neutral-color-20 !default;
  51.  
  52. // Data-labels
  53. $data-label-color: $neutral-color-80 !default;
  54.  
  55. // Buttons
  56. $context-button-background: $background-color !default;
  57.  
  58. $highcharts-button-background: $neutral-color-3 !default;
  59. $highcharts-button-border: $neutral-color-20 !default;
  60. $highcharts-button-text: $neutral-color-80 !default;
  61.  
  62. $highcharts-button-pressed-background: $highlight-color-10 !default;
  63. $highcharts-button-pressed-border: $neutral-color-20 !default;
  64. $highcharts-button-pressed-text: $neutral-color-80 !default;
  65.  
  66. $highcharts-button-hover-background: $neutral-color-10 !default;
  67. $highcharts-button-hover-border: $neutral-color-20 !default;
  68. $highcharts-button-hover-text: $neutral-color-80 !default;
  69.  
  70. // Navigator
  71. $navigator-series-fill: $highlight-color-80 !default;
  72. $navigator-series-border: $highlight-color-80 !default;
  73.  
  74. // Scrollbar
  75. $scrollbar-track-background: $neutral-color-5 !default;
  76. $scrollbar-track-border: $neutral-color-5 !default;
  77.  
  78. .highcharts-container {
  79. position: relative;
  80. overflow: hidden;
  81. width: 100%;
  82. height: 100%;
  83. text-align: left;
  84. line-height: normal;
  85. z-index: 0; /* #1072 */
  86. -webkit-tap-highlight-color: rgba(0,0,0,0);
  87. font-family: $font-family;
  88. font-size: 12px;
  89. }
  90. .highcharts-root {
  91. display: block;
  92. }
  93. .highcharts-root text {
  94. stroke-width: 0;
  95. }
  96. .highcharts-strong {
  97. font-weight: bold;
  98. }
  99. .highcharts-emphasized {
  100. font-style: italic;
  101. }
  102. .highcharts-anchor {
  103. cursor: pointer;
  104. }
  105. .highcharts-background {
  106. fill: $background-color;
  107. }
  108. .highcharts-plot-border, .highcharts-plot-background {
  109. fill: none;
  110. }
  111. .highcharts-label-box {
  112. fill: none;
  113. }
  114. .highcharts-button-box {
  115. fill: inherit;
  116. }
  117.  
  118. /* Titles */
  119. .highcharts-title {
  120. fill: $neutral-color-80;
  121. font-size: $title-font-size;
  122. }
  123. .highcharts-subtitle {
  124. fill: $neutral-color-60;
  125. }
  126.  
  127. /* Axes */
  128. .highcharts-axis-line {
  129. fill: none;
  130. stroke: $highlight-color-20;
  131. }
  132. .highcharts-yaxis .highcharts-axis-line {
  133. stroke-width: 0;
  134. }
  135. .highcharts-axis-title {
  136. fill: $neutral-color-60;
  137. }
  138. .highcharts-axis-labels {
  139. fill: $neutral-color-60;
  140. cursor: default;
  141. font-size: $axis-labels-font-size;
  142. }
  143. .highcharts-grid-line {
  144. fill: none;
  145. stroke: $neutral-color-10;
  146. }
  147. .highcharts-xaxis-grid .highcharts-grid-line {
  148. stroke-width: $xaxis-grid-line;
  149. }
  150. .highcharts-tick {
  151. stroke: $highlight-color-20;
  152. }
  153. .highcharts-yaxis .highcharts-tick {
  154. stroke-width: 0;
  155. }
  156. .highcharts-minor-grid-line {
  157. stroke: $neutral-color-5;
  158. }
  159. .highcharts-crosshair-thin {
  160. stroke-width: 1px;
  161. stroke: $neutral-color-20;
  162. }
  163. .highcharts-crosshair-category {
  164. stroke: $highlight-color-20;
  165. stroke-opacity: 0.25;
  166. }
  167.  
  168.  
  169. /* Credits */
  170. .highcharts-credits {
  171. cursor: pointer;
  172. fill: $neutral-color-40;
  173. font-size: 0.7em;
  174. transition: fill 250ms, font-size 250ms;
  175. }
  176. .highcharts-credits:hover {
  177. fill: black;
  178. font-size: 1em;
  179. }
  180.  
  181. /* Tooltip */
  182. .highcharts-tooltip {
  183. cursor: default;
  184. pointer-events: none;
  185. white-space: nowrap;
  186. transition: stroke 150ms;
  187. }
  188. .highcharts-tooltip text {
  189. fill: $neutral-color-80;
  190. }
  191. .highcharts-tooltip .highcharts-header {
  192. font-size: 0.85em;
  193. }
  194. .highcharts-tooltip-box {
  195. stroke-width: $tooltip-border;
  196. fill: $tooltip-background;
  197. fill-opacity: 0.85;
  198. }
  199. .highcharts-tooltip-box .highcharts-label-box {
  200. fill: $tooltip-background;
  201. fill-opacity: 0.85;
  202. }
  203.  
  204. .highcharts-selection-marker {
  205. fill: $highlight-color-80;
  206. fill-opacity: 0.25;
  207. }
  208.  
  209. .highcharts-graph {
  210. fill: none;
  211. stroke-width: 2px;
  212. stroke-linecap: round;
  213. stroke-linejoin: round;
  214. }
  215. .highcharts-state-hover .highcharts-graph {
  216. stroke-width: 3;
  217. }
  218. .highcharts-state-hover path {
  219. transition: stroke-width 50; /* quick in */
  220. }
  221. .highcharts-state-normal path {
  222. transition: stroke-width 250ms; /* slow out */
  223. }
  224.  
  225. /* Legend hover affects points and series */
  226. g.highcharts-series,
  227. .highcharts-point,
  228. .highcharts-markers,
  229. .highcharts-data-labels {
  230. transition: opacity 250ms;
  231. }
  232. .highcharts-legend-series-active g.highcharts-series:not(.highcharts-series-hover),
  233. .highcharts-legend-point-active .highcharts-point:not(.highcharts-point-hover),
  234. .highcharts-legend-series-active .highcharts-markers:not(.highcharts-series-hover),
  235. .highcharts-legend-series-active .highcharts-data-labels:not(.highcharts-series-hover) {
  236. opacity: 0.2;
  237. }
  238.  
  239. /* Series options */
  240.  
  241. /* Default colors */
  242. @for $i from 1 through length($colors) {
  243. $color: nth($colors, $i);
  244. .highcharts-color-#{$i - 1} {
  245. fill: $color;
  246. stroke: $color;
  247. }
  248. }
  249.  
  250. .highcharts-area {
  251. fill-opacity: 0.75;
  252. stroke-width: 0;
  253. }
  254. .highcharts-markers {
  255. stroke-width: 1px;
  256. stroke: $background-color;
  257. }
  258. .highcharts-point {
  259. stroke-width: 1px;
  260. }
  261. .highcharts-dense-data .highcharts-point {
  262. stroke-width: 0;
  263. }
  264.  
  265. .highcharts-data-label {
  266. font-size: 0.9em;
  267. font-weight: bold;
  268. }
  269. .highcharts-data-label-box {
  270. fill: none;
  271. stroke-width: 0;
  272. }
  273. .highcharts-data-label text, text.highcharts-data-label {
  274. fill: $data-label-color;
  275. }
  276. .highcharts-data-label-connector {
  277. fill: none;
  278. }
  279. .highcharts-halo {
  280. fill-opacity: 0.25;
  281. stroke-width: 0;
  282. }
  283. .highcharts-series:not(.highcharts-pie-series) .highcharts-point-select {
  284. fill: $neutral-color-20;
  285. stroke: $neutral-color-100;
  286. }
  287. .highcharts-column-series rect.highcharts-point {
  288. // rect to prevent stroke on 3D columns
  289. stroke: $background-color;
  290. }
  291. .highcharts-column-series .highcharts-point {
  292. transition: fill-opacity 250ms;
  293. }
  294. .highcharts-column-series .highcharts-point-hover {
  295. fill-opacity: 0.75;
  296. transition: fill-opacity 50ms;
  297. }
  298. .highcharts-pie-series .highcharts-point {
  299. stroke-linejoin: round;
  300. stroke: $background-color;
  301. }
  302. .highcharts-pie-series .highcharts-point-hover {
  303. fill-opacity: 0.75;
  304. transition: fill-opacity 50ms;
  305. }
  306. .highcharts-funnel-series .highcharts-point {
  307. stroke-linejoin: round;
  308. stroke: $background-color;
  309. }
  310. .highcharts-funnel-series .highcharts-point-hover {
  311. fill-opacity: 0.75;
  312. transition: fill-opacity 50ms;
  313. }
  314. .highcharts-funnel-series .highcharts-point-select {
  315. fill: inherit;
  316. stroke: inherit;
  317. }
  318. .highcharts-pyramid-series .highcharts-point {
  319. stroke-linejoin: round;
  320. stroke: $background-color;
  321. }
  322. .highcharts-pyramid-series .highcharts-point-hover {
  323. fill-opacity: 0.75;
  324. transition: fill-opacity 50ms;
  325. }
  326. .highcharts-pyramid-series .highcharts-point-select {
  327. fill: inherit;
  328. stroke: inherit;
  329. }
  330. .highcharts-solidgauge-series .highcharts-point {
  331. stroke-width: 0;
  332. }
  333. .highcharts-treemap-series .highcharts-point {
  334. stroke-width: 1px;
  335. stroke: $neutral-color-10;
  336. transition: stroke 250ms, fill 250ms, fill-opacity 250ms;
  337. }
  338. .highcharts-treemap-series .highcharts-point-hover {
  339. stroke: $neutral-color-40;
  340. transition: stroke 25ms, fill 25ms, fill-opacity 25ms;
  341. }
  342.  
  343. .highcharts-treemap-series .highcharts-above-level {
  344. display: none;
  345. }
  346. .highcharts-treemap-series .highcharts-internal-node {
  347. fill: none;
  348. }
  349. .highcharts-treemap-series .highcharts-internal-node-interactive {
  350. fill-opacity: 0.15;
  351. cursor: pointer;
  352. }
  353. .highcharts-treemap-series .highcharts-internal-node-interactive:hover {
  354. fill-opacity: 0.75;
  355. }
  356.  
  357.  
  358.  
  359. /* Legend */
  360. .highcharts-legend-box {
  361. fill: none;
  362. stroke-width: 0;
  363. }
  364. .highcharts-legend-item text {
  365. fill: $neutral-color-80;
  366. font-weight: bold;
  367. font-size: $legend-font-size;
  368. cursor: pointer;
  369. stroke-width: 0;
  370. }
  371. .highcharts-legend-item:hover text {
  372. fill: $neutral-color-100;
  373. }
  374. .highcharts-legend-item-hidden * {
  375. fill: $neutral-color-20 !important;
  376. stroke: $neutral-color-20 !important;
  377. transition: fill 250ms;
  378. }
  379. .highcharts-legend-nav-active {
  380. fill: $highlight-color-100;
  381. cursor: pointer;
  382. }
  383. .highcharts-legend-nav-inactive {
  384. fill: $neutral-color-20;
  385. }
  386. .highcharts-legend-title-box {
  387. fill: none;
  388. stroke-width: 0;
  389. }
  390.  
  391. /* Loading */
  392. .highcharts-loading {
  393. position: absolute;
  394. background-color: $background-color;
  395. opacity: 0.5;
  396. text-align: center;
  397. z-index: 10;
  398. transition: opacity 250ms;
  399. }
  400. .highcharts-loading-hidden {
  401. height: 0 !important;
  402. opacity: 0;
  403. overflow: hidden;
  404. transition: opacity 250ms, height 250ms step-end;
  405. }
  406. .highcharts-loading-inner {
  407. font-weight: bold;
  408. position: relative;
  409. top: 45%;
  410. }
  411.  
  412. /* Plot bands and polar pane backgrounds */
  413. .highcharts-plot-band, .highcharts-pane {
  414. fill: $neutral-color-100;
  415. fill-opacity: 0.05;
  416. }
  417. .highcharts-plot-line {
  418. fill: none;
  419. stroke: $neutral-color-40;
  420. stroke-width: 1px;
  421. }
  422.  
  423. /* Highcharts More and modules */
  424. .highcharts-boxplot-box {
  425. fill: $background-color;
  426. }
  427. .highcharts-boxplot-median {
  428. stroke-width: 2px;
  429. }
  430. .highcharts-bubble-series .highcharts-point {
  431. fill-opacity: 0.5;
  432. }
  433. .highcharts-errorbar-series .highcharts-point {
  434. stroke: $neutral-color-100;
  435. }
  436. .highcharts-gauge-series .highcharts-data-label-box {
  437. stroke: $neutral-color-20;
  438. stroke-width: 1px;
  439. }
  440. .highcharts-gauge-series .highcharts-dial {
  441. fill: $neutral-color-100;
  442. stroke-width: 0;
  443. }
  444. .highcharts-polygon-series .highcharts-graph {
  445. fill: inherit;
  446. stroke-width: 0;
  447. }
  448. .highcharts-waterfall-series .highcharts-graph {
  449. stroke: $neutral-color-80;
  450. stroke-dasharray: 1, 3;
  451. }
  452. .highcharts-sankey-series .highcharts-point {
  453. stroke-width: 0;
  454. }
  455. .highcharts-sankey-series .highcharts-link {
  456. transition: fill 250ms, fill-opacity 250ms;
  457. fill-opacity: 0.5;
  458. }
  459. .highcharts-sankey-series .highcharts-point-hover.highcharts-link {
  460. transition: fill 50ms, fill-opacity 50ms;
  461. fill-opacity: 1;
  462. }
  463.  
  464. /* Highstock */
  465. .highcharts-navigator-mask-outside {
  466. fill-opacity: 0;
  467. }
  468. .highcharts-navigator-mask-inside {
  469. fill: $highlight-color-60; /* navigator.maskFill option */
  470. fill-opacity: 0.25;
  471. cursor: ew-resize;
  472. }
  473. .highcharts-navigator-outline {
  474. stroke: $neutral-color-20;
  475. fill: none;
  476. }
  477. .highcharts-navigator-handle {
  478. stroke: $neutral-color-20;
  479. fill: $neutral-color-5;
  480. cursor: ew-resize;
  481. }
  482. .highcharts-navigator-series {
  483. fill: $navigator-series-fill;
  484. stroke: $navigator-series-border;
  485. }
  486. .highcharts-navigator-series .highcharts-graph {
  487. stroke-width: 1px;
  488. }
  489. .highcharts-navigator-series .highcharts-area {
  490. fill-opacity: 0.05;
  491. }
  492. .highcharts-navigator-xaxis .highcharts-axis-line {
  493. stroke-width: 0;
  494. }
  495. .highcharts-navigator-xaxis .highcharts-grid-line {
  496. stroke-width: 1px;
  497. stroke: $neutral-color-10;
  498. }
  499. .highcharts-navigator-xaxis.highcharts-axis-labels {
  500. fill: $neutral-color-40;
  501. }
  502. .highcharts-navigator-yaxis .highcharts-grid-line {
  503. stroke-width: 0;
  504. }
  505. .highcharts-scrollbar-thumb {
  506. fill: $neutral-color-20;
  507. stroke: $neutral-color-20;
  508. stroke-width: 1px;
  509. }
  510. .highcharts-scrollbar-button {
  511. fill: $neutral-color-10;
  512. stroke: $neutral-color-20;
  513. stroke-width: 1px;
  514. }
  515. .highcharts-scrollbar-arrow {
  516. fill: $neutral-color-60;
  517. }
  518. .highcharts-scrollbar-rifles {
  519. stroke: $neutral-color-60;
  520. stroke-width: 1px;
  521. }
  522. .highcharts-scrollbar-track {
  523. fill: $scrollbar-track-background;
  524. stroke: $scrollbar-track-border;
  525. stroke-width: 1px;
  526. }
  527. .highcharts-button {
  528. fill: $highcharts-button-background;
  529. stroke: $highcharts-button-border;
  530. cursor: default;
  531. stroke-width: 1px;
  532. transition: fill 250ms;
  533. }
  534. .highcharts-button text {
  535. fill: $highcharts-button-text;
  536. }
  537. .highcharts-button-hover {
  538. transition: fill 0ms;
  539. fill: $highcharts-button-hover-background;
  540. stroke: $highcharts-button-hover-border;
  541. }
  542. .highcharts-button-hover text {
  543. fill: $highcharts-button-hover-text;
  544. }
  545. .highcharts-button-pressed {
  546. font-weight: bold;
  547. fill: $highcharts-button-pressed-background;
  548. stroke: $highcharts-button-pressed-border;
  549. }
  550. .highcharts-button-pressed text {
  551. fill: $highcharts-button-pressed-text;
  552. font-weight: bold;
  553. }
  554. .highcharts-button-disabled text {
  555. fill: $highcharts-button-text;
  556. }
  557. .highcharts-range-selector-buttons .highcharts-button {
  558. stroke-width: $range-selector-button-border;
  559. }
  560. .highcharts-range-label rect {
  561. fill: none;
  562. }
  563. .highcharts-range-label text {
  564. fill: $neutral-color-60;
  565. }
  566. .highcharts-range-input rect {
  567. fill: none;
  568. }
  569. .highcharts-range-input text {
  570. fill: $range-selector-input-text
  571. }
  572. .highcharts-range-input {
  573. stroke-width:1px;
  574. stroke: $range-selector-input-border;
  575. }
  576. input.highcharts-range-selector {
  577. position: absolute;
  578. border: 0;
  579. width: 1px; /* Chrome needs a pixel to see it */
  580. height: 1px;
  581. padding: 0;
  582. text-align: center;
  583. left: -9em; /* #4798 */
  584. }
  585. .highcharts-crosshair-label text {
  586. fill: $background-color;
  587. font-size: 1.1em;
  588. }
  589. .highcharts-crosshair-label .highcharts-label-box {
  590. fill: inherit;
  591. }
  592.  
  593.  
  594. .highcharts-candlestick-series .highcharts-point {
  595. stroke: $neutral-color-100;
  596. stroke-width: 1px;
  597. }
  598. .highcharts-candlestick-series .highcharts-point-up {
  599. fill: $background-color;
  600. }
  601. .highcharts-ohlc-series .highcharts-point-hover {
  602. stroke-width: 3px;
  603. }
  604. .highcharts-flags-series .highcharts-point .highcharts-label-box {
  605. stroke: $neutral-color-40;
  606. fill: $background-color;
  607. transition: fill 250ms;
  608. }
  609. .highcharts-flags-series .highcharts-point-hover .highcharts-label-box {
  610. stroke: $neutral-color-100;
  611. fill: $highlight-color-20;
  612. }
  613. .highcharts-flags-series .highcharts-point text {
  614. fill: $neutral-color-100;
  615. font-size: 0.9em;
  616. font-weight: bold;
  617. }
  618.  
  619. /* Highmaps */
  620. .highcharts-map-series .highcharts-point {
  621. transition: fill 500ms, fill-opacity 500ms, stroke-width 250ms;
  622. stroke: $neutral-color-20;
  623. }
  624. .highcharts-map-series .highcharts-point-hover {
  625. transition: fill 0ms, fill-opacity 0ms;
  626. fill-opacity: 0.5;
  627. stroke-width: 2px;
  628. }
  629. .highcharts-mapline-series .highcharts-point {
  630. fill: none;
  631. }
  632. .highcharts-heatmap-series .highcharts-point {
  633. stroke-width: 0;
  634. }
  635. .highcharts-map-navigation {
  636. font-size: 1.3em;
  637. font-weight: bold;
  638. text-align: center;
  639. }
  640. .highcharts-coloraxis {
  641. stroke-width: 0;
  642. }
  643. .highcharts-coloraxis-marker {
  644. fill: $neutral-color-40;
  645. }
  646. .highcharts-null-point {
  647. fill: $neutral-color-3;
  648. }
  649.  
  650. /* 3d charts */
  651. .highcharts-3d-frame {
  652. fill: transparent;
  653. }
  654.  
  655. /* Exporting module */
  656. .highcharts-contextbutton {
  657. fill: $context-button-background; /* needed to capture hover */
  658. stroke: none;
  659. stroke-linecap: round;
  660. }
  661. .highcharts-contextbutton:hover {
  662. fill: $neutral-color-10;
  663. stroke: $neutral-color-10;
  664. }
  665. .highcharts-button-symbol {
  666. stroke: $neutral-color-60;
  667. stroke-width: 3px;
  668. }
  669. .highcharts-menu {
  670. border: 1px solid $neutral-color-40;
  671. background: $background-color;
  672. padding: 5px 0;
  673. box-shadow: 3px 3px 10px #888;
  674. }
  675. .highcharts-menu-item {
  676. padding: 0.5em 1em;
  677. background: none;
  678. color: $neutral-color-80;
  679. cursor: pointer;
  680. transition: background 250ms, color 250ms;
  681. }
  682. .highcharts-menu-item:hover {
  683. background: $highlight-color-80;
  684. color: $background-color;
  685. }
  686.  
  687. /* Drilldown module */
  688. .highcharts-drilldown-point {
  689. cursor: pointer;
  690. }
  691. .highcharts-drilldown-data-label text,
  692. text.highcharts-drilldown-data-label,
  693. .highcharts-drilldown-axis-label {
  694. cursor: pointer;
  695. fill: $highlight-color-100;
  696. font-weight: bold;
  697. text-decoration: underline;
  698. }
  699.  
  700. /* No-data module */
  701. .highcharts-no-data text {
  702. font-weight: bold;
  703. font-size: 12px;
  704. fill: $neutral-color-60;
  705. }
  706.  
  707. /* Drag-panes module */
  708. .highcharts-axis-resizer {
  709. cursor: ns-resize;
  710. stroke: black;
  711. stroke-width: 2px;
  712. }
  713.  
  714. /* Bullet type series */
  715. .highcharts-bullet-target {
  716. stroke-width: 0;
  717. }
  718.  
  719. /* Lineargauge type series */
  720. .highcharts-lineargauge-target {
  721. stroke-width: 1px;
  722. stroke: $neutral-color-80;
  723. }
  724. .highcharts-lineargauge-target-line {
  725. stroke-width: 1px;
  726. stroke: $neutral-color-80;
  727. }
  728.  
  729. /* Annotations module */
  730. .highcharts-annotation-label-box {
  731. stroke-width: 1px;
  732. stroke: $neutral-color-100;
  733. fill: $neutral-color-100;
  734. fill-opacity: 0.75;
  735. }
  736. .highcharts-annotation-label text {
  737. fill: $neutral-color-10;
  738. }
Add Comment
Please, Sign In to add comment