highcharts.scss 19 KB

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