highcharts.scss 20 KB

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