playbook_ui 14.10.0.pre.alpha.play1662cssbargraph5200 → 14.10.0.pre.alpha.play1662cssbargraph5204
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 38e87cce5477ad6d7e0f99568a18e5bdcf5e8cb880772c99e0f4660ae19970f0
|
4
|
+
data.tar.gz: 904f2d8feda01b1409223c3eef8684b5887fa6d323c9deb253c51bddc5af89e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c8b69de7161e980adba4bf075587c8b224755394976ac21fa948743862be13d2778bd700c18fe4a011b161f69c2d0224f3c5b1aafe9f3cdee14fccfbcce9c46
|
7
|
+
data.tar.gz: 93d3581d3d1bc53f5425774943b4165251c71cab83bf329d401276ba4822fcdf985c65c42004578efb39edd73245f16fa1d7cfee0d04800c136869435b1d4f6c
|
@@ -0,0 +1,52 @@
|
|
1
|
+
@import "../tokens/colors";
|
2
|
+
@import "../tokens/typography";
|
3
|
+
@import url("https://code.highcharts.com/css/highcharts.css");
|
4
|
+
// @import "highcharts/css/highcharts";
|
5
|
+
// @import "highcharts/highcharts.css";
|
6
|
+
|
7
|
+
:root {
|
8
|
+
--highcharts-color-0: #{$data_1};
|
9
|
+
--highcharts-color-1: #{$data_2};
|
10
|
+
--highcharts-color-2: #{$data_3};
|
11
|
+
--highcharts-color-3: #{$data_4};
|
12
|
+
--highcharts-color-4: #{$data_5};
|
13
|
+
--highcharts-color-5: #{$data_6};
|
14
|
+
--highcharts-color-6: #{$data_7};
|
15
|
+
--highcharts-color-7: #{$data_8};
|
16
|
+
}
|
17
|
+
|
18
|
+
.highcharts-title {
|
19
|
+
font-family: $font_family_base;
|
20
|
+
font-weight: $bold;
|
21
|
+
font-size: $heading_3;
|
22
|
+
color: $text_lt_default;
|
23
|
+
fill: $text_lt_default;
|
24
|
+
}
|
25
|
+
|
26
|
+
.highcharts-subtitle {
|
27
|
+
font-family: $font_family_base;
|
28
|
+
color: $text_lt_light;
|
29
|
+
fill: $text_lt_light;
|
30
|
+
font-weight: $regular;
|
31
|
+
font-size: $text_base;
|
32
|
+
}
|
33
|
+
|
34
|
+
.highcharts-yaxis > .highcharts-axis-title {
|
35
|
+
color: $text_lt_lighter;
|
36
|
+
fill: $text_lt_lighter;
|
37
|
+
font-family: $font_family_base;
|
38
|
+
font-weight: $bold;
|
39
|
+
font-size: $text_smaller;
|
40
|
+
}
|
41
|
+
|
42
|
+
.highcharts-axis-labels {
|
43
|
+
font-family: $font_family_base;
|
44
|
+
color: $text_lt_lighter;
|
45
|
+
fill: $text_lt_lighter;
|
46
|
+
font-weight: $bold;
|
47
|
+
font-size: $text_smaller;
|
48
|
+
}
|
49
|
+
|
50
|
+
.highcharts-grid-line {
|
51
|
+
stroke: $border_light;
|
52
|
+
}
|
@@ -4,6 +4,26 @@
|
|
4
4
|
display: block;
|
5
5
|
overflow-x: scroll;
|
6
6
|
|
7
|
+
// hides duplicate scroll bar for those that see two (byproduct of repeated table-responsive-scroll class
|
8
|
+
// hides outer scroll bar in chrome and safari
|
9
|
+
&:not(.table-responsive-scroll .table-responsive-scroll) {
|
10
|
+
&::-webkit-scrollbar {
|
11
|
+
height: 0px;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
// hides outer scroll bar in firefox
|
15
|
+
@supports (scrollbar-width: none) {
|
16
|
+
scrollbar-width: none;
|
17
|
+
.pb_table {
|
18
|
+
overflow-x: auto;
|
19
|
+
scrollbar-width: auto;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
// ensures visible inner scroll bar can scroll
|
23
|
+
.pb_table {
|
24
|
+
overflow-x: auto;
|
25
|
+
}
|
26
|
+
|
7
27
|
// Responsive Styles
|
8
28
|
@media (max-width: 1600px) {
|
9
29
|
&[class*="table-responsive-scroll"] {
|