dsp-semactic 0.5.1 → 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/styles/DSSChart.scss +16 -9
package/package.json
CHANGED
package/src/styles/DSSChart.scss
CHANGED
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
.dss-chart-svg {
|
|
34
34
|
display: block;
|
|
35
35
|
width: 100%;
|
|
36
|
-
height:
|
|
36
|
+
height: 80%;
|
|
37
37
|
position: relative;
|
|
38
38
|
}
|
|
39
39
|
|
|
@@ -64,8 +64,11 @@
|
|
|
64
64
|
.dss-chart-legend {
|
|
65
65
|
display: flex;
|
|
66
66
|
justify-content: flex-end;
|
|
67
|
+
flex-wrap: wrap;
|
|
67
68
|
gap: .5rem;
|
|
68
|
-
padding-right:
|
|
69
|
+
padding-right: 1rem;
|
|
70
|
+
max-width: 50%;
|
|
71
|
+
margin-top: 1rem;
|
|
69
72
|
}
|
|
70
73
|
|
|
71
74
|
.dss-legend-item {
|
|
@@ -78,7 +81,7 @@
|
|
|
78
81
|
border-radius: 4px;
|
|
79
82
|
}
|
|
80
83
|
|
|
81
|
-
.dss-legend-item.legend-dimmed {
|
|
84
|
+
.dss-legend-item.dss-legend-dimmed {
|
|
82
85
|
opacity: 0.5;
|
|
83
86
|
transform: none;
|
|
84
87
|
}
|
|
@@ -90,7 +93,7 @@
|
|
|
90
93
|
transition: transform 0.3s ease;
|
|
91
94
|
}
|
|
92
95
|
|
|
93
|
-
.dss-legend-item.legend-hovered .dss-legend-color {
|
|
96
|
+
.dss-legend-item.dss-legend-hovered .dss-legend-color {
|
|
94
97
|
transform: scale(1.2);
|
|
95
98
|
}
|
|
96
99
|
|
|
@@ -99,17 +102,20 @@
|
|
|
99
102
|
transition: font-weight 0.3s ease;
|
|
100
103
|
}
|
|
101
104
|
|
|
102
|
-
.dss-legend-item.legend-hovered .dss-legend-text {
|
|
105
|
+
.dss-legend-item.dss-legend-hovered .dss-legend-text {
|
|
103
106
|
font-weight: 600;
|
|
104
107
|
}
|
|
105
108
|
|
|
106
|
-
.dss-legend-item.hidden{
|
|
107
|
-
opacity: 0.5;
|
|
108
|
-
text-decoration: line-through;
|
|
109
|
+
.dss-legend-item.dss-legend-hidden {
|
|
110
|
+
opacity: 0.5 !important;
|
|
111
|
+
text-decoration: line-through !important;
|
|
109
112
|
filter: none !important;
|
|
110
|
-
transform: none !important;
|
|
113
|
+
transform: none !important;
|
|
114
|
+
display: flex !important;
|
|
115
|
+
visibility: visible !important;
|
|
111
116
|
}
|
|
112
117
|
|
|
118
|
+
|
|
113
119
|
.dss-chart-tooltip {
|
|
114
120
|
position: absolute;
|
|
115
121
|
background: rgba(0, 0, 0, 0.8);
|
|
@@ -231,6 +237,7 @@
|
|
|
231
237
|
|
|
232
238
|
.dss-chart-logos image {
|
|
233
239
|
border-radius: 50%;
|
|
240
|
+
object-fit: cover;
|
|
234
241
|
}
|
|
235
242
|
|
|
236
243
|
/* Hidden Series Styles */
|