survey-analytics 2.5.13 → 3.0.0-beta.0
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/fesm/shared.mjs +754 -3179
- package/fesm/shared.mjs.map +1 -1
- package/fesm/shared2.mjs +9687 -8187
- package/fesm/shared2.mjs.map +1 -1
- package/fesm/shared3.mjs +4982 -0
- package/fesm/shared3.mjs.map +1 -0
- package/fesm/shared4.mjs +42 -0
- package/fesm/shared4.mjs.map +1 -0
- package/fesm/survey.analytics.apexcharts.mjs +1061 -0
- package/fesm/survey.analytics.apexcharts.mjs.map +1 -0
- package/fesm/survey.analytics.core.mjs +3 -3
- package/fesm/survey.analytics.mjs +7 -755
- package/fesm/survey.analytics.mjs.map +1 -1
- package/fesm/survey.analytics.mongo.mjs +1 -1
- package/fesm/survey.analytics.mongo.mjs.map +1 -1
- package/fesm/survey.analytics.plotly.mjs +13 -0
- package/fesm/survey.analytics.plotly.mjs.map +1 -0
- package/fesm/survey.analytics.tabulator.mjs +343 -181
- package/fesm/survey.analytics.tabulator.mjs.map +1 -1
- package/fesm/themes/index.mjs +1942 -0
- package/fesm/themes/index.mjs.map +1 -0
- package/package.json +38 -11
- package/survey-analytics-plotly.types/alternativeVizualizersWrapper.d.ts +73 -0
- package/survey-analytics-plotly.types/analytics-localization/arabic.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/dutch.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/english.d.ts +130 -0
- package/survey-analytics-plotly.types/analytics-localization/farsi.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/finnish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/french.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/german.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/italian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/japanese.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/norwegian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/polish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/portuguese.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/russian.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/spanish.d.ts +100 -0
- package/survey-analytics-plotly.types/analytics-localization/swedish.d.ts +100 -0
- package/survey-analytics-plotly.types/boolean.d.ts +15 -0
- package/survey-analytics-plotly.types/card.d.ts +29 -0
- package/survey-analytics-plotly.types/chartConfig.d.ts +9 -0
- package/survey-analytics-plotly.types/config.d.ts +35 -0
- package/survey-analytics-plotly.types/dashboard.d.ts +51 -0
- package/survey-analytics-plotly.types/dataProvider.d.ts +69 -0
- package/survey-analytics-plotly.types/entries/plotly.d.ts +2 -0
- package/survey-analytics-plotly.types/entries/summary.core.d.ts +44 -0
- package/survey-analytics-plotly.types/filterInfo.d.ts +11 -0
- package/survey-analytics-plotly.types/histogram.d.ts +102 -0
- package/{survey-analytics.types/layoutEngine.d.ts → survey-analytics-plotly.types/layout-engine.d.ts} +0 -12
- package/survey-analytics-plotly.types/localizationManager.d.ts +152 -0
- package/survey-analytics-plotly.types/matrix.d.ts +17 -0
- package/survey-analytics-plotly.types/matrixDropdownGrouped.d.ts +15 -0
- package/survey-analytics-plotly.types/muuri-layout-engine.d.ts +13 -0
- package/survey-analytics-plotly.types/nps.d.ts +37 -0
- package/survey-analytics-plotly.types/number.d.ts +27 -0
- package/survey-analytics-plotly.types/pivot.d.ts +59 -0
- package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/chart-adapter.d.ts +11 -2
- package/survey-analytics-plotly.types/plotly/setup.d.ts +150 -0
- package/survey-analytics-plotly.types/ranking.d.ts +12 -0
- package/survey-analytics-plotly.types/selectBase.d.ts +116 -0
- package/survey-analytics-plotly.types/statisticCalculators.d.ts +9 -0
- package/survey-analytics-plotly.types/statistics-table.d.ts +28 -0
- package/survey-analytics-plotly.types/svgbundle.d.ts +2 -0
- package/survey-analytics-plotly.types/text.d.ts +25 -0
- package/survey-analytics-plotly.types/theme.d.ts +50 -0
- package/survey-analytics-plotly.types/themes/default-light.d.ts +965 -0
- package/survey-analytics-plotly.types/utils/calculationDateRanges.d.ts +35 -0
- package/survey-analytics-plotly.types/utils/dateRangeModel.d.ts +32 -0
- package/survey-analytics-plotly.types/utils/dateRangeWidget.d.ts +38 -0
- package/survey-analytics-plotly.types/utils/dropdownActionWidget.d.ts +31 -0
- package/survey-analytics-plotly.types/utils/dropdownBase.d.ts +47 -0
- package/survey-analytics-plotly.types/utils/dropdownWidget.d.ts +40 -0
- package/survey-analytics-plotly.types/utils/index.d.ts +62 -0
- package/survey-analytics-plotly.types/utils/toggle.d.ts +17 -0
- package/survey-analytics-plotly.types/utils/utils.d.ts +9 -0
- package/survey-analytics-plotly.types/visualizationComposite.d.ts +8 -0
- package/survey-analytics-plotly.types/visualizationManager.d.ts +60 -0
- package/survey-analytics-plotly.types/visualizationMatrixDropdown.d.ts +23 -0
- package/survey-analytics-plotly.types/visualizationMatrixDynamic.d.ts +8 -0
- package/survey-analytics-plotly.types/visualizationPanel.d.ts +464 -0
- package/survey-analytics-plotly.types/visualizationPanelDynamic.d.ts +20 -0
- package/survey-analytics-plotly.types/visualizerBase.d.ts +422 -0
- package/survey-analytics-plotly.types/visualizerDescription.d.ts +19 -0
- package/survey-analytics-plotly.types/visualizerFactory.d.ts +41 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/dutch.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/english.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/index.d.ts +3 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/norwegian.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/stopwords/spanish.d.ts +1 -0
- package/survey-analytics-plotly.types/wordcloud/widget.d.ts +38 -0
- package/survey-analytics-plotly.types/wordcloud/wordcloud.d.ts +28 -0
- package/survey-analytics-tabulator.types/analytics-localization/english.d.ts +28 -0
- package/survey-analytics-tabulator.types/entries/tabulator.d.ts +2 -25
- package/survey-analytics-tabulator.types/entries/tabulator.fontless.d.ts +26 -0
- package/survey-analytics-tabulator.types/localizationManager.d.ts +28 -0
- package/survey-analytics-tabulator.types/tables/extensions/footerextensions.d.ts +1 -0
- package/survey-analytics-tabulator.types/tables/extensions/tableextensions.d.ts +2 -1
- package/survey-analytics-tabulator.types/tables/tabulator.d.ts +10 -1
- package/survey-analytics-tabulator.types/theme.d.ts +50 -0
- package/survey-analytics-tabulator.types/themes/default-light.d.ts +965 -0
- package/survey-analytics-tabulator.types/utils/dropdownActionWidget.d.ts +31 -0
- package/survey-analytics-tabulator.types/utils/dropdownBase.d.ts +47 -0
- package/survey-analytics-tabulator.types/utils/dropdownWidget.d.ts +40 -0
- package/survey-analytics-tabulator.types/utils/index.d.ts +25 -2
- package/survey-analytics.types/alternativeVizualizersWrapper.d.ts +9 -4
- package/survey-analytics.types/analytics-localization/english.d.ts +28 -0
- package/survey-analytics.types/apexcharts/chart-adapter.d.ts +29 -0
- package/survey-analytics.types/apexcharts/index.d.ts +2 -0
- package/survey-analytics.types/apexcharts/setup.d.ts +185 -0
- package/survey-analytics.types/boolean.d.ts +1 -1
- package/survey-analytics.types/card.d.ts +29 -0
- package/survey-analytics.types/chartConfig.d.ts +9 -0
- package/survey-analytics.types/config.d.ts +1 -33
- package/survey-analytics.types/dashboard.d.ts +51 -0
- package/survey-analytics.types/dataProvider.d.ts +17 -0
- package/survey-analytics.types/entries/apexcharts.d.ts +2 -0
- package/survey-analytics.types/entries/apexcharts.fontless.d.ts +2 -0
- package/survey-analytics.types/entries/summary.core.d.ts +6 -0
- package/survey-analytics.types/histogram.d.ts +29 -13
- package/survey-analytics.types/layout-engine.d.ts +29 -0
- package/survey-analytics.types/localizationManager.d.ts +28 -0
- package/survey-analytics.types/matrix.d.ts +3 -2
- package/survey-analytics.types/matrixDropdownGrouped.d.ts +3 -2
- package/survey-analytics.types/muuri-layout-engine.d.ts +13 -0
- package/survey-analytics.types/nps.d.ts +5 -10
- package/survey-analytics.types/number.d.ts +8 -7
- package/survey-analytics.types/pivot.d.ts +25 -35
- package/survey-analytics.types/ranking.d.ts +3 -2
- package/survey-analytics.types/selectBase.d.ts +12 -15
- package/survey-analytics.types/statisticCalculators.d.ts +8 -13
- package/survey-analytics.types/statistics-table.d.ts +2 -2
- package/survey-analytics.types/text.d.ts +4 -3
- package/survey-analytics.types/theme.d.ts +50 -0
- package/survey-analytics.types/themes/default-light.d.ts +965 -0
- package/survey-analytics.types/utils/calculationDateRanges.d.ts +35 -0
- package/survey-analytics.types/utils/dateRangeModel.d.ts +32 -0
- package/survey-analytics.types/utils/dateRangeWidget.d.ts +38 -0
- package/survey-analytics.types/utils/dropdownActionWidget.d.ts +31 -0
- package/survey-analytics.types/utils/dropdownBase.d.ts +47 -0
- package/survey-analytics.types/utils/dropdownWidget.d.ts +40 -0
- package/survey-analytics.types/utils/index.d.ts +25 -2
- package/survey-analytics.types/utils/toggle.d.ts +17 -0
- package/survey-analytics.types/utils/utils.d.ts +9 -0
- package/survey-analytics.types/visualizationComposite.d.ts +1 -1
- package/survey-analytics.types/visualizationManager.d.ts +5 -5
- package/survey-analytics.types/visualizationMatrixDropdown.d.ts +2 -1
- package/survey-analytics.types/visualizationMatrixDynamic.d.ts +1 -1
- package/survey-analytics.types/visualizationPanel.d.ts +20 -3
- package/survey-analytics.types/visualizationPanelDynamic.d.ts +2 -1
- package/survey-analytics.types/visualizerBase.d.ts +65 -10
- package/survey-analytics.types/visualizerDescription.d.ts +19 -0
- package/survey-analytics.types/visualizerFactory.d.ts +11 -2
- package/survey-analytics.types/wordcloud/wordcloud.d.ts +6 -4
- package/survey.analytics.core.css +1131 -99
- package/survey.analytics.core.css.map +1 -1
- package/survey.analytics.core.js +5063 -1002
- package/survey.analytics.core.js.map +1 -1
- package/survey.analytics.core.min.css +9 -6
- package/survey.analytics.core.min.js +1 -1
- package/survey.analytics.core.min.js.LICENSE.txt +1 -1
- package/survey.analytics.css +1494 -103
- package/survey.analytics.css.map +1 -1
- package/survey.analytics.d.ts +1 -2
- package/survey.analytics.fontless.css +1629 -0
- package/survey.analytics.fontless.css.map +1 -0
- package/survey.analytics.fontless.min.css +14 -0
- package/survey.analytics.js +7427 -3055
- package/survey.analytics.js.map +1 -1
- package/survey.analytics.min.css +11 -6
- package/survey.analytics.min.js +1 -1
- package/survey.analytics.min.js.LICENSE.txt +1 -1
- package/survey.analytics.mongo.js +2 -2
- package/survey.analytics.mongo.js.map +1 -1
- package/survey.analytics.mongo.min.js +1 -1
- package/survey.analytics.mongo.min.js.LICENSE.txt +1 -1
- package/survey.analytics.plotly.css +1714 -0
- package/survey.analytics.plotly.css.map +1 -0
- package/survey.analytics.plotly.d.ts +1 -0
- package/survey.analytics.plotly.fontless.css +1492 -0
- package/survey.analytics.plotly.fontless.css.map +1 -0
- package/survey.analytics.plotly.fontless.min.css +13 -0
- package/survey.analytics.plotly.js +23829 -0
- package/survey.analytics.plotly.js.map +1 -0
- package/survey.analytics.plotly.min.css +14 -0
- package/survey.analytics.plotly.min.js +2 -0
- package/survey.analytics.plotly.min.js.LICENSE.txt +22 -0
- package/survey.analytics.tabulator.css +992 -132
- package/survey.analytics.tabulator.css.map +1 -1
- package/survey.analytics.tabulator.fontless.css +1121 -0
- package/survey.analytics.tabulator.fontless.css.map +1 -0
- package/survey.analytics.tabulator.fontless.min.css +6 -0
- package/survey.analytics.tabulator.js +2634 -251
- package/survey.analytics.tabulator.js.map +1 -1
- package/survey.analytics.tabulator.min.css +3 -2
- package/survey.analytics.tabulator.min.js +1 -1
- package/survey.analytics.tabulator.min.js.LICENSE.txt +1 -1
- package/themes/default-dark.js +1032 -0
- package/themes/default-dark.js.map +1 -0
- package/themes/default-dark.min.js +2 -0
- package/themes/default-dark.min.js.LICENSE.txt +5 -0
- package/themes/default-light.js +1032 -0
- package/themes/default-light.js.map +1 -0
- package/themes/default-light.min.js +2 -0
- package/themes/default-light.min.js.LICENSE.txt +5 -0
- package/themes/index.js +2063 -0
- package/themes/index.js.map +1 -0
- package/themes/index.min.js +2 -0
- package/themes/index.min.js.LICENSE.txt +5 -0
- package/themes/themes/default-dark.d.ts +965 -0
- package/themes/themes/default-light.d.ts +965 -0
- package/themes/themes/index.d.ts +1934 -0
- package/themes/utils/helpers.d.ts +8 -0
- package/survey-analytics.types/plotly/setup.d.ts +0 -32
- /package/{survey-analytics.types/entries/summary.d.ts → survey-analytics-plotly.types/entries/plotly.fontless.d.ts} +0 -0
- /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/index.d.ts +0 -0
- /package/{survey-analytics.types → survey-analytics-plotly.types}/plotly/legacy.d.ts +0 -0
|
@@ -1,31 +1,48 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* surveyjs - SurveyJS Dashboard library
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v3.0.0-beta.0
|
|
3
3
|
* Copyright (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
4
|
* License: SEE LICENSE IN LICENSE
|
|
5
5
|
*/
|
|
6
6
|
/*!**************************************************************************************************************************************************************************!*\
|
|
7
7
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/visualizerBase.scss ***!
|
|
8
8
|
\**************************************************************************************************************************************************************************/
|
|
9
|
+
.sa-visualizer-wrapper {
|
|
10
|
+
min-width: 450px;
|
|
11
|
+
padding: var(--sjs2-spacing-x300, 24px);
|
|
12
|
+
background: var(--sjs2-color-utility-surface-dashboard, rgba(28, 27, 32, 0.05));
|
|
13
|
+
}
|
|
14
|
+
@media screen and (max-width: 600px) {
|
|
15
|
+
.sa-visualizer-wrapper {
|
|
16
|
+
padding: var(--sjs2-spacing-x150, 12px);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
9
20
|
.sa-visualizer__header {
|
|
10
|
-
font-family: var(--font-family-
|
|
11
|
-
font-
|
|
21
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
22
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
23
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
24
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
12
25
|
}
|
|
13
26
|
|
|
14
27
|
.sa-visualizer__content {
|
|
15
|
-
font-family: var(--font-family
|
|
28
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
16
29
|
display: inline-block;
|
|
17
|
-
overflow: hidden;
|
|
18
30
|
width: 100%;
|
|
19
31
|
}
|
|
20
32
|
|
|
21
|
-
.sa-visualizer__footer {
|
|
33
|
+
.sa-visualizer__footer--has-content {
|
|
22
34
|
margin-top: 10px;
|
|
35
|
+
display: flex;
|
|
36
|
+
flex-direction: column;
|
|
37
|
+
gap: 8px;
|
|
23
38
|
}
|
|
24
39
|
|
|
25
40
|
.sa-visualizer__footer-title {
|
|
41
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
42
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
43
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
44
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
26
45
|
display: inline-block;
|
|
27
|
-
font-family: var(--font-family-secondary, Raleway, Arial, sans-serif);
|
|
28
|
-
font-size: var(--root-font-size, 14px);
|
|
29
46
|
color: #404040;
|
|
30
47
|
line-height: 34px;
|
|
31
48
|
vertical-align: middle;
|
|
@@ -59,6 +76,326 @@
|
|
|
59
76
|
transform: rotate(359deg);
|
|
60
77
|
}
|
|
61
78
|
}
|
|
79
|
+
/*!************************************************************************************************************************************************************************!*\
|
|
80
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/utils/toggle.scss ***!
|
|
81
|
+
\************************************************************************************************************************************************************************/
|
|
82
|
+
.sa-toggle-container {
|
|
83
|
+
display: flex;
|
|
84
|
+
gap: var(--sjs2-spacing-x100, 8px);
|
|
85
|
+
}
|
|
86
|
+
@media screen and (max-width: 600px) {
|
|
87
|
+
.sa-toggle-container {
|
|
88
|
+
width: 100%;
|
|
89
|
+
justify-content: end;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.sa-toggle-element {
|
|
94
|
+
display: flex;
|
|
95
|
+
padding: var(--sjs2-spacing-x075, 6px);
|
|
96
|
+
width: calc(2 * var(--sjs2-size-x150, 12px) + var(--sjs2-spacing-x050, 4px));
|
|
97
|
+
align-items: center;
|
|
98
|
+
gap: var(--sjs2-spacing-x050, 4px);
|
|
99
|
+
transition: background-color 0.3s ease;
|
|
100
|
+
border-radius: var(--sjs2-radius-control-toggle, 9999px);
|
|
101
|
+
outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-false-default-border, #D4D4D4);
|
|
102
|
+
background: var(--sjs2-color-control-toggle-false-default-bg, rgba(28, 27, 32, 0.05));
|
|
103
|
+
/* sjs2/shadow/inner */
|
|
104
|
+
box-shadow: var(--sjs2-shadow-size-inner-offset-x, 0) var(--sjs2-shadow-size-inner-offset-y, 0) var(--sjs2-shadow-size-inner-blur, 0) var(--sjs2-shadow-size-inner-spread, 1px) var(--sjs2-shadow-color-inner, #D4D4D4) inset;
|
|
105
|
+
}
|
|
106
|
+
.sa-toggle-element:hover {
|
|
107
|
+
outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-false-hovered-border, #D4D4D4);
|
|
108
|
+
background: var(--sjs2-color-control-toggle-false-hovered-bg, rgba(28, 27, 32, 0.1));
|
|
109
|
+
}
|
|
110
|
+
.sa-toggle-element:hover .sa-toggle-handle {
|
|
111
|
+
outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-hovered-icon, rgba(28, 27, 32, 0.6));
|
|
112
|
+
background: var(--sjs2-color-control-toggle-false-hovered-icon, rgba(28, 27, 32, 0.6));
|
|
113
|
+
}
|
|
114
|
+
.sa-toggle-element:focus {
|
|
115
|
+
outline: var(--sjs2-border-width-focused, 2px) solid var(--sjs2-color-control-toggle-false-focused-border, #19B394);
|
|
116
|
+
background: var(--sjs2-color-control-toggle-false-focused-bg, #F5F5F5);
|
|
117
|
+
}
|
|
118
|
+
.sa-toggle-element:focus .sa-toggle-handle {
|
|
119
|
+
outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-focused-icon, rgba(28, 27, 32, 0.6));
|
|
120
|
+
background: var(--sjs2-color-control-toggle-false-focused-icon, rgba(28, 27, 32, 0.6));
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.sa-toggle-element.active {
|
|
124
|
+
outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-true-default-border, #19B394);
|
|
125
|
+
background: var(--sjs2-color-control-toggle-true-default-bg, #19B394);
|
|
126
|
+
}
|
|
127
|
+
.sa-toggle-element.active:hover {
|
|
128
|
+
outline: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-control-toggle-true-hovered-border, #19B394);
|
|
129
|
+
background: var(--sjs2-color-control-toggle-true-hovered-bg, #15987E);
|
|
130
|
+
}
|
|
131
|
+
.sa-toggle-element.active:hover .sa-toggle-handle {
|
|
132
|
+
background: var(--sjs2-color-control-toggle-true-hovered-icon, #FFF);
|
|
133
|
+
}
|
|
134
|
+
.sa-toggle-element.active:focus {
|
|
135
|
+
outline: var(--sjs2-border-width-focused, 2px) solid var(--sjs2-color-control-toggle-true-focused-border, #19B394);
|
|
136
|
+
background: var(--sjs2-color-control-toggle-true-focused-bg, #FFF);
|
|
137
|
+
}
|
|
138
|
+
.sa-toggle-element.active:focus .sa-toggle-handle {
|
|
139
|
+
background: var(--sjs2-color-control-toggle-true-focused-icon, #19B394);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.sa-toggle-handle {
|
|
143
|
+
display: flex;
|
|
144
|
+
width: var(--sjs2-size-x150, 12px);
|
|
145
|
+
height: var(--sjs2-size-x150, 12px);
|
|
146
|
+
justify-content: center;
|
|
147
|
+
align-items: center;
|
|
148
|
+
transition: transform 0.3s ease, background-color 0.3s ease;
|
|
149
|
+
border-radius: var(--sjs2-radius-control-toggle-item, 9999px);
|
|
150
|
+
outline: var(--ctr-toggle-button-thumb-border-width, 0) solid var(--sjs2-color-control-toggle-false-default-icon, rgba(28, 27, 32, 0.6));
|
|
151
|
+
background: var(--sjs2-color-control-toggle-false-default-icon, rgba(28, 27, 32, 0.6));
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.sa-toggle-element.active .sa-toggle-handle {
|
|
155
|
+
background: var(--sjs2-color-control-toggle-true-default-icon, #FFF);
|
|
156
|
+
transform: translateX(calc(var(--sjs2-size-x150, 12px) + var(--sjs2-spacing-x050, 4px)));
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.sa-toggle-text {
|
|
160
|
+
flex: 1 0 0;
|
|
161
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
162
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
163
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
164
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
165
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
166
|
+
}
|
|
167
|
+
@media screen and (max-width: 600px) {
|
|
168
|
+
.sa-toggle-text {
|
|
169
|
+
flex: unset;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
/*!*********************************************************************************************************************************************************************************!*\
|
|
173
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/utils/dateRangeWidget.scss ***!
|
|
174
|
+
\*********************************************************************************************************************************************************************************/
|
|
175
|
+
.sa-date-range {
|
|
176
|
+
display: flex;
|
|
177
|
+
align-items: center;
|
|
178
|
+
align-self: stretch;
|
|
179
|
+
align-content: center;
|
|
180
|
+
gap: 16px var(--sjs2-spacing-x200, 16px);
|
|
181
|
+
flex-wrap: wrap;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.sa-date-range-container {
|
|
185
|
+
display: flex;
|
|
186
|
+
flex-direction: column;
|
|
187
|
+
align-items: flex-start;
|
|
188
|
+
align-self: stretch;
|
|
189
|
+
max-width: min-content;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.sa-date-range_editors {
|
|
193
|
+
display: flex;
|
|
194
|
+
align-items: center;
|
|
195
|
+
gap: var(--sjs2-spacing-x150, 12px);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.sa-date-range_editor {
|
|
199
|
+
display: flex;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.sa-date-range_editor-formbox {
|
|
203
|
+
display: flex;
|
|
204
|
+
padding: var(--sjs2-layout-control-formbox-small-vertical, 4px) var(--sjs2-layout-control-formbox-small-horizontal, 4px);
|
|
205
|
+
align-items: flex-start;
|
|
206
|
+
gap: var(--sjs2-layout-control-formbox-small-gap, 4px);
|
|
207
|
+
align-self: stretch;
|
|
208
|
+
border-radius: var(--sjs2-radius-semantic-form, 8px);
|
|
209
|
+
background: var(--sjs2-color-control-formbox-default-bg, rgba(28, 27, 32, 0.05));
|
|
210
|
+
outline: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-formbox-default-border, #D4D4D4) inset;
|
|
211
|
+
}
|
|
212
|
+
.sa-date-range_editor-formbox:focus-visible {
|
|
213
|
+
background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
|
|
214
|
+
box-shadow: var(--sjs2-border-offset-x-form-focused, 0) var(--sjs2-border-offset-y-form-focused, 0) var(--sjs2-border-blur-form-focused, 0) var(--sjs2-border-spread-form-focused, 2px) var(--sjs2-color-control-formbox-focused-border, #19B394) inset;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.sa-date-range_include-today {
|
|
218
|
+
display: flex;
|
|
219
|
+
padding: var(--sjs2-spacing-x100, 8px) 0;
|
|
220
|
+
flex-direction: column;
|
|
221
|
+
align-items: flex-start;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.sa-date-range_include-today-checkbox {
|
|
225
|
+
display: flex;
|
|
226
|
+
align-items: flex-start;
|
|
227
|
+
gap: var(--sjs2-spacing-x100, 8px);
|
|
228
|
+
align-self: stretch;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.sa-date-range_include-today-button {
|
|
232
|
+
display: flex;
|
|
233
|
+
width: var(--sjs2-size-x300, 24px);
|
|
234
|
+
height: var(--sjs2-size-x300, 24px);
|
|
235
|
+
flex-direction: column;
|
|
236
|
+
justify-content: center;
|
|
237
|
+
align-items: center;
|
|
238
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
239
|
+
background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
|
|
240
|
+
box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-false-default-border, #D4D4D4) inset;
|
|
241
|
+
}
|
|
242
|
+
.sa-date-range_include-today-button .sa-date-range_include-today-check {
|
|
243
|
+
display: none;
|
|
244
|
+
width: 16px;
|
|
245
|
+
height: 16px;
|
|
246
|
+
flex-shrink: 0;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.sa-date-range_include-today-checkbox--checked {
|
|
250
|
+
background: var(--sjs2-color-control-check-true-default-bg, #19B394);
|
|
251
|
+
box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-true-default-border, #19B394) inset;
|
|
252
|
+
}
|
|
253
|
+
.sa-date-range_include-today-checkbox--checked .sa-date-range_include-today-check {
|
|
254
|
+
display: block;
|
|
255
|
+
fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.sa-date-range_include-today-caption {
|
|
259
|
+
display: flex;
|
|
260
|
+
align-items: flex-start;
|
|
261
|
+
gap: var(--sjs2-spacing-x050, 4px);
|
|
262
|
+
align-self: stretch;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.sa-date-range_include-today-caption-text {
|
|
266
|
+
color: var(--sjs2-color-fg-basic-primary, #1c1b20);
|
|
267
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
268
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
269
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
270
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.sa-date-range_dropdown {
|
|
274
|
+
align-self: self-start;
|
|
275
|
+
}
|
|
276
|
+
.sa-date-range_dropdown .sa-dropdown-header-content {
|
|
277
|
+
padding: var(--sjs2-layout-control-input-small-content-vertical, 4px) var(--sjs2-layout-control-input-small-content-horizontal, 8px);
|
|
278
|
+
}
|
|
279
|
+
.sa-date-range_dropdown .sa-dropdown-action {
|
|
280
|
+
padding: var(--sjs2-layout-control-action-x-small-box-vertical, 4px) var(--sjs2-layout-control-action-x-small-box-horizontal, 4px);
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.sa-range-error {
|
|
284
|
+
display: none;
|
|
285
|
+
align-items: flex-start;
|
|
286
|
+
align-self: stretch;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.sa-range-error_panel {
|
|
290
|
+
display: flex;
|
|
291
|
+
padding: var(--sjs2-layout-control-message-small-vertical, 8px) var(--sjs2-layout-control-message-small-horizontal, 12px);
|
|
292
|
+
align-items: flex-start;
|
|
293
|
+
gap: var(--sjs2-layout-control-message-small-gap, 8px);
|
|
294
|
+
flex: 1 0 0;
|
|
295
|
+
align-self: stretch;
|
|
296
|
+
border-radius: var(--sjs2-radius-semantic-form, 8px);
|
|
297
|
+
background: var(--sjs2-color-control-message-error-bg, rgba(229, 10, 62, 0.1));
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.sa-range-error_text {
|
|
301
|
+
flex: 1 0 0;
|
|
302
|
+
color: var(--sjs2-color-control-message-error-text, #1C1B20);
|
|
303
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
304
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
305
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
306
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.sa-date-range--invalid .sa-range-error {
|
|
310
|
+
display: flex;
|
|
311
|
+
padding-top: var(--sjs2-layout-control-message-small-spacer, 8px);
|
|
312
|
+
flex-direction: column;
|
|
313
|
+
align-items: flex-start;
|
|
314
|
+
align-self: stretch;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.sa-date-range_editor--invalid .sa-date-range_editor-formbox {
|
|
318
|
+
background: var(--sjs2-color-control-formbox-invalid-bg, #F5F5F5);
|
|
319
|
+
box-shadow: var(--sjs2-border-offset-x-form-invalid, 0) var(--sjs2-border-offset-y-form-invalid, 0) var(--sjs2-border-blur-form-invalid, 0) var(--sjs2-border-spread-form-invalid, 2px) var(--sjs2-color-control-formbox-invalid-border, #E50A3E) inset;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.sa-date-range_editor-content {
|
|
323
|
+
display: flex;
|
|
324
|
+
padding: var(--sjs2-layout-control-input-small-content-vertical, 4px) var(--sjs2-layout-control-input-small-content-horizontal, 8px);
|
|
325
|
+
align-items: flex-start;
|
|
326
|
+
flex: 1 0 0;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.sa-date-range_editor-input {
|
|
330
|
+
display: -webkit-box;
|
|
331
|
+
-webkit-box-orient: vertical;
|
|
332
|
+
-webkit-line-clamp: 1;
|
|
333
|
+
flex: 1 0 0;
|
|
334
|
+
overflow: hidden;
|
|
335
|
+
color: var(--sjs2-color-control-input-default-value, #1C1B20);
|
|
336
|
+
text-overflow: ellipsis;
|
|
337
|
+
background: transparent;
|
|
338
|
+
border: none;
|
|
339
|
+
outline: none;
|
|
340
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
341
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
342
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
343
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.sa-vertical-divider {
|
|
347
|
+
display: flex;
|
|
348
|
+
width: 1px;
|
|
349
|
+
height: 40px;
|
|
350
|
+
flex-direction: column;
|
|
351
|
+
align-items: flex-start;
|
|
352
|
+
align-self: stretch;
|
|
353
|
+
}
|
|
354
|
+
.sa-vertical-divider .sa-line {
|
|
355
|
+
display: flex;
|
|
356
|
+
flex-direction: column;
|
|
357
|
+
align-items: flex-start;
|
|
358
|
+
flex: 1 0 0;
|
|
359
|
+
align-self: stretch;
|
|
360
|
+
background: var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
@media screen and (max-width: 600px) {
|
|
364
|
+
.sa-vertical-divider {
|
|
365
|
+
display: none;
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
.sa-horizontal-divider {
|
|
369
|
+
display: flex;
|
|
370
|
+
flex-direction: column;
|
|
371
|
+
align-items: flex-start;
|
|
372
|
+
align-self: stretch;
|
|
373
|
+
}
|
|
374
|
+
.sa-horizontal-divider .sa-line {
|
|
375
|
+
display: flex;
|
|
376
|
+
flex-direction: column;
|
|
377
|
+
align-items: flex-start;
|
|
378
|
+
align-self: stretch;
|
|
379
|
+
height: var(--sjs2-border-width-static-x100, 1px);
|
|
380
|
+
background: var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.sa-count {
|
|
384
|
+
display: flex;
|
|
385
|
+
padding: var(--sjs2-spacing-x100, 8px) 0;
|
|
386
|
+
justify-content: center;
|
|
387
|
+
align-items: center;
|
|
388
|
+
align-self: self-start;
|
|
389
|
+
gap: 10px;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.sa-count_text {
|
|
393
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
394
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
395
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
396
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
397
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
398
|
+
}
|
|
62
399
|
/*!******************************************************************************************************************************************************************************!*\
|
|
63
400
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/visualizationPanel.scss ***!
|
|
64
401
|
\******************************************************************************************************************************************************************************/
|
|
@@ -113,8 +450,458 @@
|
|
|
113
450
|
}
|
|
114
451
|
}
|
|
115
452
|
|
|
453
|
+
.sa-dropdown,
|
|
454
|
+
.sa-action-dropdown {
|
|
455
|
+
position: relative;
|
|
456
|
+
cursor: pointer;
|
|
457
|
+
user-select: none;
|
|
458
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
459
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
460
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
461
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
462
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.sa-dropdown {
|
|
466
|
+
display: flex;
|
|
467
|
+
flex-grow: 1;
|
|
468
|
+
flex-direction: row;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.sa-action-dropdown:hover,
|
|
472
|
+
.sa-action-dropdown.sa-action-dropdown--opened {
|
|
473
|
+
border-radius: var(--sjs2-radius-control-action, 8px);
|
|
474
|
+
background: var(--sjs2-color-bg-positive-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.sa-dropdown-header {
|
|
478
|
+
display: flex;
|
|
479
|
+
padding: var(--sjs2-layout-control-formbox-medium-vertical, 4px) var(--sjs2-layout-control-formbox-medium-horizontal, 4px);
|
|
480
|
+
flex-grow: 1;
|
|
481
|
+
align-items: flex-start;
|
|
482
|
+
gap: var(--sjs2-layout-control-formbox-medium-gap, 4px);
|
|
483
|
+
align-self: stretch;
|
|
484
|
+
border-radius: var(--sjs2-radius-semantic-form, 8px);
|
|
485
|
+
margin: var(--sjs2-border-width-x100, 1px);
|
|
486
|
+
outline: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-control-formbox-default-border, #D4D4D4);
|
|
487
|
+
background: var(--sjs2-color-control-formbox-default-bg, rgba(28, 27, 32, 0.05));
|
|
488
|
+
}
|
|
489
|
+
.sa-dropdown-header:focus {
|
|
490
|
+
border-radius: var(--sjs2-radius-semantic-form, 8px);
|
|
491
|
+
background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
|
|
492
|
+
box-shadow: var(--sjs2-border-offset-x-form-focused, 0) var(--sjs2-border-offset-y-form-focused, 0) var(--sjs2-border-blur-form-focused, 0) var(--sjs2-border-spread-form-focused, 2px) var(--sjs2-color-control-formbox-focused-border, #19B394) inset;
|
|
493
|
+
outline: none;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
.sa-dropdown-action {
|
|
497
|
+
display: flex;
|
|
498
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
499
|
+
justify-content: center;
|
|
500
|
+
align-items: center;
|
|
501
|
+
align-self: stretch;
|
|
502
|
+
border-radius: var(--sjs2-radius-semantic-form-item, 4px);
|
|
503
|
+
background: var(--sjs2-color-bg-neutral-tertiary, rgba(28, 27, 32, 0));
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.sa-dropdown-action:hover {
|
|
507
|
+
background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.sa-dropdown--opened .sa-dropdown-arrow {
|
|
511
|
+
background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.sa-dropdown-action svg {
|
|
515
|
+
display: flex;
|
|
516
|
+
width: var(--sjs2-size-icon-medium, 24px);
|
|
517
|
+
height: var(--sjs2-size-icon-medium, 24px);
|
|
518
|
+
justify-content: center;
|
|
519
|
+
align-items: center;
|
|
520
|
+
}
|
|
521
|
+
.sa-dropdown-action svg use {
|
|
522
|
+
fill: var(--sjs2-color-fg-basic-primary-alt, rgb(66, 65, 70));
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.sa-dropdown-container {
|
|
526
|
+
display: inline-flex;
|
|
527
|
+
flex-grow: 1;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.sa-action-dropdown-container {
|
|
531
|
+
display: inline-flex;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.sa-dropdown__title {
|
|
535
|
+
padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x000, 0.001px) var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x150, 12px);
|
|
536
|
+
display: flex;
|
|
537
|
+
flex-shrink: 0;
|
|
538
|
+
margin-inline-end: var(--sjs2-spacing-static-x100, 8px);
|
|
539
|
+
overflow: hidden;
|
|
540
|
+
color: var(--sjs2-color-fg-basic-secondary, rgba(28, 27, 32, 0.6));
|
|
541
|
+
text-overflow: ellipsis;
|
|
542
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
543
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
544
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
545
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.sa-dropdown-list,
|
|
549
|
+
.sa-action-dropdown-list {
|
|
550
|
+
position: absolute;
|
|
551
|
+
min-width: 150px;
|
|
552
|
+
max-height: 50vh;
|
|
553
|
+
max-width: 80vw;
|
|
554
|
+
overflow-x: hidden;
|
|
555
|
+
overflow-y: auto;
|
|
556
|
+
border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
557
|
+
border-top: none;
|
|
558
|
+
border-radius: var(--sjs2-radius-container-drop, 16px);
|
|
559
|
+
background: var(--sjs2-color-utility-sheet, #FFF);
|
|
560
|
+
display: none;
|
|
561
|
+
z-index: 1000;
|
|
562
|
+
margin: 0;
|
|
563
|
+
list-style: none;
|
|
564
|
+
transition: all 0.3s;
|
|
565
|
+
margin-top: 8px;
|
|
566
|
+
padding: var(--sjs2-layout-container-drop-vertical, 8px) var(--sjs2-layout-container-drop-horizontal, 8px);
|
|
567
|
+
box-sizing: border-box;
|
|
568
|
+
/* sjs2/shadow/large */
|
|
569
|
+
box-shadow: var(--sjs2-shadow-size-large-offset-x, 0) var(--sjs2-shadow-size-large-offset-y, 6px) var(--sjs2-shadow-size-large-blur, 12px) var(--sjs2-shadow-size-large-spread, 4px) var(--sjs2-shadow-color-large, rgba(0, 76, 68, 0.1));
|
|
570
|
+
-webkit-font-smoothing: antialiased;
|
|
571
|
+
-webkit-tap-highlight-color: transparent;
|
|
572
|
+
}
|
|
573
|
+
@-moz-document url-prefix() {
|
|
574
|
+
.sa-dropdown-list,
|
|
575
|
+
.sa-action-dropdown-list {
|
|
576
|
+
scrollbar-width: thin;
|
|
577
|
+
scrollbar-color: rgba(0, 0, 0, 0.1490196078) transparent;
|
|
578
|
+
}
|
|
579
|
+
}
|
|
580
|
+
.sa-dropdown-list::-webkit-scrollbar,
|
|
581
|
+
.sa-action-dropdown-list::-webkit-scrollbar {
|
|
582
|
+
width: 12px;
|
|
583
|
+
height: 12px;
|
|
584
|
+
background-color: transparent;
|
|
585
|
+
}
|
|
586
|
+
.sa-dropdown-list::-webkit-scrollbar-thumb,
|
|
587
|
+
.sa-action-dropdown-list::-webkit-scrollbar-thumb {
|
|
588
|
+
border: 4px solid rgba(0, 0, 0, 0);
|
|
589
|
+
background-clip: padding-box;
|
|
590
|
+
border-radius: 1024px;
|
|
591
|
+
background-color: rgba(0, 0, 0, 0.1490196078);
|
|
592
|
+
}
|
|
593
|
+
.sa-dropdown-list::-webkit-scrollbar-track,
|
|
594
|
+
.sa-action-dropdown-list::-webkit-scrollbar-track {
|
|
595
|
+
background: transparent;
|
|
596
|
+
}
|
|
597
|
+
.sa-dropdown-list::-webkit-scrollbar-thumb:hover,
|
|
598
|
+
.sa-action-dropdown-list::-webkit-scrollbar-thumb:hover {
|
|
599
|
+
border: 2px solid rgba(0, 0, 0, 0);
|
|
600
|
+
background-color: rgba(0, 0, 0, 0.1490196078);
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
.sa-dropdown-list.sa-dropdown--opened {
|
|
604
|
+
display: block;
|
|
605
|
+
top: 100%;
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.sa-action-dropdown-list.sa-action-dropdown--opened {
|
|
609
|
+
display: block;
|
|
610
|
+
top: 100%;
|
|
611
|
+
border-radius: var(--sjs2-radius-container-drop, 16px);
|
|
612
|
+
border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
613
|
+
background: var(--sjs2-color-utility-sheet, #FFF);
|
|
614
|
+
/* sjs2/border-effect/floating/default */
|
|
615
|
+
box-shadow: var(--sjs2-border-offset-x-floating-default, 0) var(--sjs2-border-offset-y-floating-default, 6px) var(--sjs2-border-blur-floating-default, 12px) var(--sjs2-border-spread-floating-default, 4px) var(--sjs2-color-utility-shadow-floating-default, rgba(0, 76, 68, 0.2));
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.sa-action-dropdown-list.sa-action-dropdown--up.sa-action-dropdown--opened {
|
|
619
|
+
top: auto;
|
|
620
|
+
bottom: 100%;
|
|
621
|
+
margin-top: 0;
|
|
622
|
+
margin-bottom: 8px;
|
|
623
|
+
border-top: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #d4d4d4);
|
|
624
|
+
border-bottom: none;
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.sa-dropdown-item,
|
|
628
|
+
.sa-action-dropdown-item {
|
|
629
|
+
width: max-content;
|
|
630
|
+
min-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
|
|
631
|
+
max-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
|
|
632
|
+
padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x200, 16px);
|
|
633
|
+
cursor: pointer;
|
|
634
|
+
transition: all 0.3s;
|
|
635
|
+
display: flex;
|
|
636
|
+
align-items: center;
|
|
637
|
+
gap: var(--sjs2-spacing-x150, 12px);
|
|
638
|
+
border-radius: var(--sjs2-radius-control-drop-item, 8px);
|
|
639
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
640
|
+
background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
|
|
641
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
642
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
643
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
644
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
645
|
+
}
|
|
646
|
+
.sa-dropdown-item:hover,
|
|
647
|
+
.sa-action-dropdown-item:hover {
|
|
648
|
+
background-color: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
649
|
+
}
|
|
650
|
+
.sa-dropdown-item:hover .sa-action-dropdown-icon,
|
|
651
|
+
.sa-action-dropdown-item:hover .sa-action-dropdown-icon {
|
|
652
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
653
|
+
background: var(--sjs2-color-control-check-false-hovered-bg, rgba(28, 27, 32, 0.1));
|
|
654
|
+
box-shadow: var(--sjs2-border-offset-x-form-hovered, 0) var(--sjs2-border-offset-y-form-hovered, 0) var(--sjs2-border-blur-form-hovered, 0) var(--sjs2-border-spread-form-hovered, 1px) var(--sjs2-color-control-check-false-hovered-border, #D4D4D4) inset;
|
|
655
|
+
}
|
|
656
|
+
.sa-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon,
|
|
657
|
+
.sa-action-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon {
|
|
658
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
659
|
+
background: var(--sjs2-color-control-check-true-hovered-bg, #15987E);
|
|
660
|
+
box-shadow: var(--sjs2-border-offset-x-form-hovered, 0) var(--sjs2-border-offset-y-form-hovered, 0) var(--sjs2-border-blur-form-hovered, 0) var(--sjs2-border-spread-form-hovered, 1px) var(--sjs2-color-control-check-true-hovered-border, #15987E) inset;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.sa-action-dropdown-item:focus,
|
|
664
|
+
.sa-action-dropdown-item--focused,
|
|
665
|
+
.sa-dropdown-item:focus,
|
|
666
|
+
.sa-dropdown-item--focused {
|
|
667
|
+
border-radius: var(--sjs2-radius-control-drop-item, 8px);
|
|
668
|
+
background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
669
|
+
}
|
|
670
|
+
|
|
671
|
+
.sa-action-dropdown-item--selected .sa-action-dropdown-icon {
|
|
672
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
673
|
+
background: var(--sjs2-color-control-check-true-default-bg, #19B394);
|
|
674
|
+
box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-true-default-border, #19B394) inset;
|
|
675
|
+
}
|
|
676
|
+
.sa-action-dropdown-item--selected .sa-action-dropdown-icon svg {
|
|
677
|
+
display: block;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.sa-action-dropdown-icon {
|
|
681
|
+
width: var(--sjs2-size-icon-medium, 24px);
|
|
682
|
+
height: var(--sjs2-size-icon-medium, 24px);
|
|
683
|
+
min-width: var(--sjs2-size-icon-medium, 24px);
|
|
684
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
685
|
+
background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
|
|
686
|
+
box-shadow: var(--sjs2-border-offset-x-form-default, 0) var(--sjs2-border-offset-y-form-default, 0) var(--sjs2-border-blur-form-default, 0) var(--sjs2-border-spread-form-default, 1px) var(--sjs2-color-control-check-false-default-border, #D4D4D4) inset;
|
|
687
|
+
}
|
|
688
|
+
.sa-action-dropdown-icon svg {
|
|
689
|
+
display: none;
|
|
690
|
+
width: var(--sjs2-size-icon-medium, 24px);
|
|
691
|
+
height: var(--sjs2-size-icon-medium, 24px);
|
|
692
|
+
}
|
|
693
|
+
.sa-action-dropdown-icon use {
|
|
694
|
+
fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.sa-dropdown-item.sa-dropdown-item--selected {
|
|
698
|
+
background-color: var(--sjs2-color-bg-brand-primary, #19B394);
|
|
699
|
+
color: var(--sjs2-color-fg-static-main-primary, #FFF);
|
|
700
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
701
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
702
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
703
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.sa-dropdown-placeholder {
|
|
707
|
+
overflow: hidden;
|
|
708
|
+
color: var(--sjs2-color-control-input-default-placeholder, rgba(28, 27, 32, 0.6));
|
|
709
|
+
text-overflow: ellipsis;
|
|
710
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
711
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
712
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
713
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
714
|
+
}
|
|
715
|
+
|
|
716
|
+
.sa-dropdown-icon {
|
|
717
|
+
width: var(--sa-icon-size);
|
|
718
|
+
height: var(--sa-icon-size);
|
|
719
|
+
flex-shrink: 0;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
.sa-dropdown-header-icon {
|
|
723
|
+
width: var(--sa-icon-size);
|
|
724
|
+
height: var(--sa-icon-size);
|
|
725
|
+
margin-right: 8px;
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
.sa-dropdown-header-content {
|
|
729
|
+
display: flex;
|
|
730
|
+
padding: var(--sjs2-layout-control-input-medium-content-vertical, 8px) var(--sjs2-layout-control-input-medium-content-horizontal, 12px);
|
|
731
|
+
align-items: flex-start;
|
|
732
|
+
flex: 1 0 0;
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.sa-dropdown-header-text {
|
|
736
|
+
white-space: nowrap;
|
|
737
|
+
overflow: hidden;
|
|
738
|
+
text-overflow: ellipsis;
|
|
739
|
+
color: var(--sjs2-color-control-input-default-value, #1C1B20);
|
|
740
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
741
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
742
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
743
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.sa-action-dropdown-header {
|
|
747
|
+
display: flex;
|
|
748
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
749
|
+
justify-content: center;
|
|
750
|
+
align-items: center;
|
|
751
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
752
|
+
border-radius: var(--sjs2-radius-control-action, 8px);
|
|
753
|
+
background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
|
|
754
|
+
}
|
|
755
|
+
.sa-action-dropdown-header:focus-visible {
|
|
756
|
+
border-radius: var(--sjs2-radius-control-action, 8px);
|
|
757
|
+
outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
|
|
758
|
+
background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
.sa-action-dropdown-title {
|
|
762
|
+
padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.sa-action-dropdown-arrow {
|
|
766
|
+
display: flex;
|
|
767
|
+
padding: var(--sjs2-layout-control-action-small-addon-vertical, 4px) var(--sjs2-layout-control-action-small-addon-horizontal, 4px);
|
|
768
|
+
justify-content: center;
|
|
769
|
+
align-items: center;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.sa-action-dropdown-arrow svg {
|
|
773
|
+
display: flex;
|
|
774
|
+
width: 16px;
|
|
775
|
+
height: 16px;
|
|
776
|
+
justify-content: center;
|
|
777
|
+
align-items: center;
|
|
778
|
+
}
|
|
779
|
+
.sa-action-dropdown-arrow svg use {
|
|
780
|
+
fill: var(--sjs2-color-project-accent-600, rgb(25, 179, 148));
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.sa-action-dropdown-header {
|
|
784
|
+
display: flex;
|
|
785
|
+
min-width: var(--sjs2-size-semantic-small, 40px);
|
|
786
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
787
|
+
justify-content: center;
|
|
788
|
+
align-items: center;
|
|
789
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.sa-button {
|
|
793
|
+
outline: none;
|
|
794
|
+
user-select: none;
|
|
795
|
+
cursor: pointer;
|
|
796
|
+
display: flex;
|
|
797
|
+
flex-shrink: 0;
|
|
798
|
+
min-width: var(--sjs2-size-semantic-small, 40px);
|
|
799
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
800
|
+
justify-content: center;
|
|
801
|
+
align-items: center;
|
|
802
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.sa-button-text {
|
|
806
|
+
display: flex;
|
|
807
|
+
flex: 1 0 auto;
|
|
808
|
+
padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
|
|
809
|
+
justify-content: center;
|
|
810
|
+
align-items: center;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
.sa-button-brand-secondary {
|
|
814
|
+
border-radius: var(--sjs2-radius-control-button, 8px);
|
|
815
|
+
background: var(--sjs2-color-bg-brand-secondary, rgba(25, 179, 148, 0.1));
|
|
816
|
+
color: var(--sjs2-color-fg-brand-primary, #19B394);
|
|
817
|
+
}
|
|
818
|
+
.sa-button-brand-secondary:hover {
|
|
819
|
+
background: var(--sjs2-color-bg-brand-secondary-dim, rgba(25, 179, 148, 0.15));
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.sa-button-brand-tertiary {
|
|
823
|
+
border-radius: 8px;
|
|
824
|
+
background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
|
|
825
|
+
color: var(--sjs2-color-fg-brand-primary, #19B394);
|
|
826
|
+
text-align: center;
|
|
827
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
828
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
829
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
830
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
831
|
+
}
|
|
832
|
+
.sa-button-brand-tertiary:hover {
|
|
833
|
+
background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
@media screen and (max-width: 600px) {
|
|
837
|
+
.sa-dropdown {
|
|
838
|
+
width: 100%;
|
|
839
|
+
flex-direction: column;
|
|
840
|
+
}
|
|
841
|
+
.sa-dropdown-container {
|
|
842
|
+
width: 100%;
|
|
843
|
+
}
|
|
844
|
+
.sa-dropdown-list.sa-dropdown--opened {
|
|
845
|
+
min-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
|
|
846
|
+
max-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
|
|
847
|
+
}
|
|
848
|
+
}
|
|
116
849
|
.sa-panel__header {
|
|
117
|
-
|
|
850
|
+
display: flex;
|
|
851
|
+
flex-direction: column;
|
|
852
|
+
gap: var(--sjs2-spacing-x200, 16px);
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.sa-panel__header.sa-toolbar--has-content {
|
|
856
|
+
padding: var(--sjs2-spacing-x200, 16px);
|
|
857
|
+
border-radius: var(--sjs2-radius-container-panel, 16px);
|
|
858
|
+
background: var(--sjs2-color-bg-basic-primary, #FFF);
|
|
859
|
+
box-shadow: var(--sjs2-border-offset-x-surface-default, 0) var(--sjs2-border-offset-y-surface-default, 0) var(--sjs2-border-blur-surface-default, 0) var(--sjs2-border-spread-surface-default, 1px) var(--sjs2-color-utility-shadow-surface-default, rgba(17, 16, 20, 0.1));
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.sa-pivot--standalone {
|
|
863
|
+
background: var(--sjs2-color-utility-surface-dashboard, rgba(28, 27, 32, 0.05));
|
|
864
|
+
display: flex;
|
|
865
|
+
padding: var(--sjs2-spacing-x300, 24px);
|
|
866
|
+
flex-direction: column;
|
|
867
|
+
gap: var(--sjs2-spacing-x300, 24px);
|
|
868
|
+
}
|
|
869
|
+
.sa-pivot--standalone .sa-visualizer-wrapper {
|
|
870
|
+
border-radius: var(--sjs2-radius-container-panel, 16px);
|
|
871
|
+
background: var(--sjs2-color-bg-basic-primary, #FFF);
|
|
872
|
+
box-shadow: var(--sjs2-border-offset-x-surface-default, 0) var(--sjs2-border-offset-y-surface-default, 0) var(--sjs2-border-blur-surface-default, 0) var(--sjs2-border-spread-surface-default, 1px) var(--sjs2-color-utility-shadow-surface-default, rgba(17, 16, 20, 0.1));
|
|
873
|
+
padding: var(--sjs2-spacing-x400, 32px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px);
|
|
874
|
+
}
|
|
875
|
+
|
|
876
|
+
.sa-pivot__header {
|
|
877
|
+
display: flex;
|
|
878
|
+
flex-direction: column;
|
|
879
|
+
gap: var(--sjs2-spacing-x200, 16px);
|
|
880
|
+
padding-bottom: var(--sjs2-spacing-x200, 16px);
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.sa-panel__header > .sa-toolbar {
|
|
884
|
+
gap: var(--sjs2-spacing-x300, 24px);
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.sa-panel__header .sa-dropdown {
|
|
888
|
+
flex-grow: 0;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.sa-panel__content.muuri {
|
|
892
|
+
margin-inline-start: calc(-1 * var(--sjs2-spacing-x300, 24px));
|
|
893
|
+
}
|
|
894
|
+
@media screen and (max-width: 600px) {
|
|
895
|
+
.sa-panel__content.muuri {
|
|
896
|
+
margin-inline-start: calc(-1 * var(--sjs2-spacing-x150, 12px));
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.sa-panel__content:not(.muuri) {
|
|
901
|
+
display: flex;
|
|
902
|
+
flex-direction: column;
|
|
903
|
+
gap: var(--sjs2-spacing-x300, 24px);
|
|
904
|
+
margin-top: var(--sjs2-spacing-x300, 24px);
|
|
118
905
|
}
|
|
119
906
|
|
|
120
907
|
.sa-grid {
|
|
@@ -137,85 +924,209 @@
|
|
|
137
924
|
vertical-align: top;
|
|
138
925
|
box-sizing: border-box;
|
|
139
926
|
overflow: hidden;
|
|
140
|
-
|
|
927
|
+
border-radius: var(--sjs2-radius-container-panel, 16px);
|
|
928
|
+
background: var(--sjs2-color-bg-basic-primary, #FFF);
|
|
929
|
+
box-shadow: var(--sjs2-border-offset-x-surface-default, 0) var(--sjs2-border-offset-y-surface-default, 0) var(--sjs2-border-blur-surface-default, 0) var(--sjs2-border-spread-surface-default, 1px) var(--sjs2-color-utility-shadow-surface-default, rgba(17, 16, 20, 0.1));
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.sa-question .sa-question__content {
|
|
933
|
+
position: relative;
|
|
934
|
+
padding: 0 var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px) var(--sjs2-spacing-x500, 40px);
|
|
935
|
+
}
|
|
936
|
+
@media screen and (max-width: 600px) {
|
|
937
|
+
.sa-question .sa-question__content {
|
|
938
|
+
padding: 0 var(--sjs2-spacing-x150, 12px) var(--sjs2-spacing-x150, 12px) var(--sjs2-spacing-x150, 12px);
|
|
939
|
+
}
|
|
141
940
|
}
|
|
142
941
|
|
|
143
942
|
.sa-question-layouted {
|
|
943
|
+
overflow: visible;
|
|
144
944
|
position: absolute;
|
|
945
|
+
width: 100%;
|
|
946
|
+
margin-inline-start: var(--sjs2-spacing-x300, 24px);
|
|
947
|
+
margin-top: var(--sjs2-spacing-x300, 24px);
|
|
145
948
|
}
|
|
146
949
|
@media screen and (min-width: 1400px) {
|
|
147
950
|
.sa-question-layouted {
|
|
148
|
-
width: calc(50% - 1px);
|
|
951
|
+
width: calc(50% - var(--sjs2-spacing-x300, 24px) - 1px);
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
@media screen and (max-width: 600px) {
|
|
955
|
+
.sa-question-layouted {
|
|
956
|
+
margin-inline-start: var(--sjs2-spacing-x150, 12px);
|
|
957
|
+
margin-top: var(--sjs2-spacing-x150, 12px);
|
|
958
|
+
width: 100%;
|
|
149
959
|
}
|
|
150
960
|
}
|
|
151
961
|
|
|
152
|
-
.sa-
|
|
153
|
-
|
|
154
|
-
padding: 20px;
|
|
962
|
+
.sa-question-layouted:focus-within {
|
|
963
|
+
z-index: 1;
|
|
155
964
|
}
|
|
156
965
|
|
|
157
966
|
.sa-question__title {
|
|
158
|
-
margin-left: 30px;
|
|
159
|
-
font-family: var(--font-family-secondary, Raleway, Arial, sans-serif);
|
|
160
|
-
font-size: 18px;
|
|
161
|
-
font-weight: bold;
|
|
162
|
-
color: var(--text-color, #404040);
|
|
163
967
|
margin: 0;
|
|
164
|
-
|
|
968
|
+
padding-bottom: var(--sjs2-spacing-x200, 16px);
|
|
969
|
+
color: var(--sjs2-color-fg-basic-primary, #1c1b20);
|
|
970
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
971
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
972
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
973
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
974
|
+
}
|
|
975
|
+
@media screen and (max-width: 600px) {
|
|
976
|
+
.sa-question__title {
|
|
977
|
+
padding-inline-end: 40px;
|
|
978
|
+
}
|
|
165
979
|
}
|
|
166
980
|
|
|
167
|
-
.sa-
|
|
981
|
+
.sa-question__header--draggable {
|
|
168
982
|
cursor: move;
|
|
169
983
|
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
display:
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
984
|
+
|
|
985
|
+
.sa-question__drag-area {
|
|
986
|
+
display: flex;
|
|
987
|
+
flex-direction: column;
|
|
988
|
+
justify-content: center;
|
|
989
|
+
align-items: center;
|
|
990
|
+
min-height: var(--sjs2-spacing-x400, 32px);
|
|
991
|
+
}
|
|
992
|
+
@media screen and (max-width: 600px) {
|
|
993
|
+
.sa-question__drag-area {
|
|
994
|
+
min-height: 0;
|
|
995
|
+
}
|
|
177
996
|
}
|
|
178
997
|
|
|
179
|
-
|
|
180
|
-
|
|
998
|
+
.sa-question__drag-area-icon {
|
|
999
|
+
cursor: move;
|
|
1000
|
+
display: flex;
|
|
1001
|
+
padding: var(--sjs2-spacing-x100, 8px);
|
|
1002
|
+
align-items: center;
|
|
1003
|
+
}
|
|
1004
|
+
.sa-question__drag-area-icon svg {
|
|
1005
|
+
display: flex;
|
|
1006
|
+
width: var(--sjs2-size-x300, 24px);
|
|
1007
|
+
height: var(--sjs2-size-x200, 16px);
|
|
1008
|
+
flex-direction: column;
|
|
1009
|
+
align-items: center;
|
|
1010
|
+
}
|
|
1011
|
+
.sa-question__drag-area-icon use {
|
|
1012
|
+
fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.sa-question__hide-action {
|
|
1016
|
+
position: absolute;
|
|
1017
|
+
right: 8px;
|
|
1018
|
+
top: 8px;
|
|
1019
|
+
display: flex;
|
|
1020
|
+
padding: var(--ctr-actionbar-button-padding-top-large-icon, 8px) var(--ctr-actionbar-button-padding-right-large-icon, 8px) var(--ctr-actionbar-button-padding-bottom-large-icon, 8px) var(--ctr-actionbar-button-padding-left-large-icon, 8px);
|
|
1021
|
+
justify-content: center;
|
|
1022
|
+
align-items: center;
|
|
1023
|
+
gap: var(--ctr-actionbar-button-gap, 8px);
|
|
1024
|
+
border-radius: var(--sjs2-radius-control-action-icon, 8px);
|
|
1025
|
+
cursor: pointer;
|
|
1026
|
+
}
|
|
1027
|
+
.sa-question__hide-action svg {
|
|
1028
|
+
width: 24px;
|
|
1029
|
+
height: 24px;
|
|
1030
|
+
}
|
|
1031
|
+
.sa-question__hide-action use {
|
|
1032
|
+
fill: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
|
|
1033
|
+
}
|
|
1034
|
+
.sa-question__hide-action:hover {
|
|
1035
|
+
border-radius: var(--sjs2-radius-control-action-icon, 8px);
|
|
1036
|
+
background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
|
|
1037
|
+
}
|
|
1038
|
+
.sa-question__hide-action:hover use {
|
|
1039
|
+
fill: var(--sjs2-color-fg-basic-primary-muted, rgb(66, 65, 70));
|
|
1040
|
+
}
|
|
1041
|
+
.sa-question__hide-action:focus-visible {
|
|
1042
|
+
border-radius: var(--sjs2-radius-control-action-icon, 8px);
|
|
1043
|
+
outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
|
|
1044
|
+
background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
.sa-question__header:not(.sa-question__header--allow-drag) {
|
|
1048
|
+
padding-top: var(--sjs2-spacing-x400, 32px);
|
|
1049
|
+
}
|
|
1050
|
+
@media screen and (max-width: 600px) {
|
|
1051
|
+
.sa-question__header:not(.sa-question__header--allow-drag) {
|
|
1052
|
+
padding-top: var(--sjs2-spacing-x300, 24px);
|
|
1053
|
+
}
|
|
181
1054
|
}
|
|
182
1055
|
|
|
183
1056
|
.sa-toolbar {
|
|
184
|
-
font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
|
|
185
|
-
font-size: var(--root-font-size, 14px);
|
|
186
|
-
color: var(--text-color, #404040);
|
|
187
|
-
line-height: 34px;
|
|
188
|
-
margin-bottom: 25px;
|
|
189
1057
|
display: flex;
|
|
190
|
-
flex-direction: row;
|
|
191
1058
|
flex-wrap: wrap;
|
|
192
|
-
gap:
|
|
1059
|
+
column-gap: var(--sjs2-spacing-static-x100, 8px);
|
|
1060
|
+
row-gap: var(--sjs2-spacing-static-x150, 12px);
|
|
1061
|
+
align-items: center;
|
|
1062
|
+
align-self: stretch;
|
|
1063
|
+
user-select: none;
|
|
193
1064
|
}
|
|
194
1065
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
1066
|
+
@media screen and (max-width: 600px) {
|
|
1067
|
+
.sa-toolbar {
|
|
1068
|
+
align-items: flex-start;
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
.sa-question__content .sa-toolbar--has-content {
|
|
1072
|
+
padding-bottom: var(--sjs2-spacing-x200, 16px);
|
|
198
1073
|
}
|
|
199
1074
|
|
|
200
1075
|
.sa-toolbar__button {
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
1076
|
+
display: flex;
|
|
1077
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
1078
|
+
justify-content: center;
|
|
1079
|
+
align-items: center;
|
|
1080
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
1081
|
+
border-radius: var(--sjs2-radius-control-action, 8px);
|
|
1082
|
+
background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
|
|
205
1083
|
cursor: pointer;
|
|
206
|
-
border: 1px solid transparent;
|
|
207
|
-
white-space: nowrap;
|
|
208
|
-
margin: 0 10px;
|
|
209
1084
|
}
|
|
1085
|
+
|
|
210
1086
|
.sa-toolbar__button:hover {
|
|
211
|
-
|
|
212
|
-
background-blend-mode: darken;
|
|
1087
|
+
background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
213
1088
|
}
|
|
214
|
-
|
|
215
|
-
|
|
1089
|
+
|
|
1090
|
+
.sa-toolbar__button:disabled {
|
|
1091
|
+
opacity: var(--sjs2-opacity-disabled, 0.25);
|
|
216
1092
|
}
|
|
217
|
-
|
|
218
|
-
|
|
1093
|
+
|
|
1094
|
+
.sa-toolbar__button:focus-visible {
|
|
1095
|
+
border-radius: var(--sjs2-radius-control-action, 8px);
|
|
1096
|
+
outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
|
|
1097
|
+
background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.sa-toolbar__button--disabled,
|
|
1101
|
+
.sa-toolbar__button--disabled:hover {
|
|
1102
|
+
opacity: var(--sjs2-opacity-disabled, 0.25);
|
|
1103
|
+
background: transparent;
|
|
1104
|
+
cursor: default;
|
|
1105
|
+
}
|
|
1106
|
+
.sa-toolbar__button--disabled .sa-toolbar__button-text,
|
|
1107
|
+
.sa-toolbar__button--disabled:hover .sa-toolbar__button-text {
|
|
1108
|
+
color: var(--sjs2-color-fg-state-common-disabled, rgba(28, 27, 32, 0.4));
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.sa-toolbar__button-text {
|
|
1112
|
+
color: var(--sjs2-color-fg-brand-primary, #19b394);
|
|
1113
|
+
text-align: center;
|
|
1114
|
+
padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 8px);
|
|
1115
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1116
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
1117
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1118
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.sa-toolbar__button-icon {
|
|
1122
|
+
display: flex;
|
|
1123
|
+
width: var(--sjs2-size-x300, 24px);
|
|
1124
|
+
height: var(--sjs2-size-x300, 24px);
|
|
1125
|
+
justify-content: center;
|
|
1126
|
+
align-items: center;
|
|
1127
|
+
}
|
|
1128
|
+
.sa-toolbar__button-icon use {
|
|
1129
|
+
fill: var(--sjs2-color-project-accent-600, rgb(25, 179, 148));
|
|
219
1130
|
}
|
|
220
1131
|
|
|
221
1132
|
.sa-toolbar__svg-button {
|
|
@@ -295,14 +1206,38 @@
|
|
|
295
1206
|
}
|
|
296
1207
|
|
|
297
1208
|
.sa-question__filter {
|
|
298
|
-
display:
|
|
299
|
-
|
|
1209
|
+
display: flex;
|
|
1210
|
+
width: 100%;
|
|
1211
|
+
align-items: center;
|
|
1212
|
+
gap: var(--sjs2-spacing-x050, 4px);
|
|
1213
|
+
}
|
|
1214
|
+
.sa-question__filter .sa-toolbar__button-with-icon {
|
|
1215
|
+
display: flex;
|
|
1216
|
+
padding: var(--sjs2-layout-control-action-x-small-box-vertical, 4px) var(--sjs2-layout-control-action-x-small-box-horizontal, 4px);
|
|
1217
|
+
justify-content: center;
|
|
1218
|
+
align-items: center;
|
|
1219
|
+
}
|
|
1220
|
+
.sa-question__filter .sa-toolbar__button-icon {
|
|
1221
|
+
width: var(--sjs2-size-icon-small, 16px);
|
|
1222
|
+
height: var(--sjs2-size-icon-small, 16px);
|
|
1223
|
+
padding: var(--sjs2-layout-control-action-x-small-icon-vertical, 4px) var(--sjs2-layout-control-action-x-small-icon-horizontal, 4px);
|
|
1224
|
+
gap: 0;
|
|
1225
|
+
}
|
|
1226
|
+
.sa-question__filter .sa-toolbar__button-icon svg {
|
|
1227
|
+
width: var(--sjs2-size-icon-small, 16px);
|
|
1228
|
+
height: var(--sjs2-size-icon-small, 16px);
|
|
1229
|
+
}
|
|
1230
|
+
.sa-question__filter .sa-toolbar__button-text {
|
|
1231
|
+
display: none;
|
|
300
1232
|
}
|
|
301
1233
|
|
|
302
1234
|
.sa-question__filter-text {
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
1235
|
+
color: var(--sjs2-color-fg-basic-primary, #1c1b20);
|
|
1236
|
+
text-align: center;
|
|
1237
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1238
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
1239
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1240
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
306
1241
|
}
|
|
307
1242
|
|
|
308
1243
|
/* latin-ext */
|
|
@@ -348,22 +1283,28 @@
|
|
|
348
1283
|
}
|
|
349
1284
|
|
|
350
1285
|
.sa-text-table {
|
|
1286
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1287
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
1288
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1289
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
351
1290
|
width: 100%;
|
|
352
|
-
font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
|
|
353
|
-
font-size: var(--root-font-size, 14px);
|
|
354
1291
|
color: var(--text-color, #404040);
|
|
355
1292
|
border-width: 1px;
|
|
356
1293
|
border-collapse: collapse;
|
|
357
|
-
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.sa-text-table tr:first-child {
|
|
1297
|
+
border-top: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
|
|
358
1298
|
}
|
|
359
1299
|
|
|
360
1300
|
.sa-text-table__cell {
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
1301
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1302
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
1303
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1304
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
1305
|
+
color: var(--dsb-table-cell-text-color, rgba(0, 0, 0, 0.9));
|
|
1306
|
+
padding: var(--dsb-table-cell-padding-top, 8px) var(--dsb-table-cell-padding-right-no-border, 0px) var(--dsb-table-cell-padding-bottom, 8px) var(--dsb-table-cell-padding-left-no-border, 0px);
|
|
1307
|
+
border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
|
|
367
1308
|
}
|
|
368
1309
|
|
|
369
1310
|
.sa-text-table__cell--number {
|
|
@@ -371,7 +1312,11 @@
|
|
|
371
1312
|
}
|
|
372
1313
|
|
|
373
1314
|
th.sa-text-table__cell {
|
|
374
|
-
|
|
1315
|
+
color: var(--dsb-table-header-text-color, rgba(0, 0, 0, 0.9));
|
|
1316
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1317
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
1318
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1319
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
375
1320
|
}
|
|
376
1321
|
/*!****************************************************************************************************************************************************************************!*\
|
|
377
1322
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/statistics-table.scss ***!
|
|
@@ -385,76 +1330,163 @@ th.sa-text-table__cell {
|
|
|
385
1330
|
|
|
386
1331
|
.sa-statistics-table {
|
|
387
1332
|
width: 100%;
|
|
388
|
-
font-family: var(--font-family, "Segoe UI", SegoeUI, Arial, sans-serif);
|
|
389
|
-
font-size: var(--root-font-size, 14px);
|
|
390
|
-
color: var(--text-color, #404040);
|
|
391
|
-
background-color: var(--background-color, #f7f7f7);
|
|
392
1333
|
}
|
|
393
1334
|
|
|
394
1335
|
.sa-statistics-table__cell {
|
|
395
|
-
border-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
1336
|
+
border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
.sa-statistics-table__cell-text {
|
|
1340
|
+
color: var(--dsb-table-cell-text-color, rgba(0, 0, 0, 0.9));
|
|
1341
|
+
margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
|
|
1342
|
+
margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
|
|
1343
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1344
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
1345
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1346
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
401
1347
|
}
|
|
402
1348
|
|
|
403
|
-
.sa-statistics-table__cell-
|
|
1349
|
+
.sa-statistics-table__cell:first-child .sa-statistics-table__cell-text {
|
|
1350
|
+
margin-inline-start: 0;
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
.sa-statistics-table__cell:last-child .sa-statistics-table__cell-text {
|
|
1354
|
+
margin-inline-end: 0;
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1357
|
+
.sa-statistics-table__cell-value.sa-statistics-table__cell-value .sa-statistics-table__cell-text,
|
|
1358
|
+
.sa-statistics-table__cell-value.sa-statistics-table__cell-value .sa-statistics-table__cell-header-text {
|
|
404
1359
|
text-align: right;
|
|
405
|
-
min-width: 30px;
|
|
406
1360
|
}
|
|
407
1361
|
|
|
408
1362
|
.sa-statistics-table__cell-header {
|
|
409
|
-
|
|
1363
|
+
border-top: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
|
|
1364
|
+
border-bottom: var(--dsb-table-cell-border-width, 1px) dashed var(--dsb-table-cell-border-color, #DCDCDC);
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1367
|
+
.sa-statistics-table__cell-header-text {
|
|
1368
|
+
color: var(--dsb-table-header-text-color, rgba(0, 0, 0, 0.9));
|
|
1369
|
+
padding: var(--dsb-table-cell-padding-top, 8px) var(--dsb-table-cell-padding-right-no-border, 0px) var(--dsb-table-cell-padding-bottom, 8px) var(--dsb-table-cell-padding-left-no-border, 0px);
|
|
1370
|
+
margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
|
|
1371
|
+
margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
|
|
1372
|
+
text-align: left;
|
|
1373
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1374
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
1375
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1376
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
.sa-statistics-table__cell-header:first-child .sa-statistics-table__cell-header-text {
|
|
1380
|
+
margin-inline-start: 0;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
.sa-statistics-table__cell-header:last-child .sa-statistics-table__cell-header-text {
|
|
1384
|
+
margin-inline-end: 0;
|
|
410
1385
|
}
|
|
411
1386
|
|
|
412
1387
|
.sa-choices-sparkline {
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
1388
|
+
display: flex;
|
|
1389
|
+
flex: 1 0 0;
|
|
1390
|
+
flex-direction: column;
|
|
1391
|
+
align-items: flex-start;
|
|
1392
|
+
padding: var(--dsb-table-cell-padding-top-progressbar, 16px) var(--dsb-table-cell-padding-right-no-border, 0px) var(--dsb-table-cell-padding-bottom-progressbar, 16px) var(--dsb-table-cell-padding-left-no-border, 0px);
|
|
1393
|
+
margin-left: calc(var(--dsb-table-row-gap, 32px) / 2);
|
|
1394
|
+
margin-right: calc(var(--dsb-table-row-gap, 32px) / 2);
|
|
416
1395
|
}
|
|
417
1396
|
|
|
418
1397
|
.sa-choices-sparkline-value {
|
|
419
|
-
|
|
420
|
-
|
|
1398
|
+
display: flex;
|
|
1399
|
+
align-items: flex-start;
|
|
1400
|
+
height: var(--dsb-table-cell-progressbar-height, 8px);
|
|
1401
|
+
border-radius: var(--dsb-table-cell-progressbar-corner-radius, 2px);
|
|
1402
|
+
background: var(--dsb-table-cell-progressbar-color, #19B394);
|
|
421
1403
|
}
|
|
422
1404
|
/*!***************************************************************************************************************************************************************!*\
|
|
423
1405
|
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/nps.scss ***!
|
|
424
1406
|
\***************************************************************************************************************************************************************/
|
|
425
1407
|
.sa-visualizer-nps {
|
|
426
1408
|
display: flex;
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
1409
|
+
align-items: flex-start;
|
|
1410
|
+
align-content: flex-start;
|
|
1411
|
+
gap: 16px var(--dsb-nps-vizualizer-gap, 16px);
|
|
1412
|
+
align-self: stretch;
|
|
1413
|
+
flex-wrap: wrap;
|
|
430
1414
|
}
|
|
431
1415
|
|
|
432
1416
|
.sa-visualizer-nps__score-part {
|
|
433
1417
|
display: flex;
|
|
1418
|
+
min-width: var(--dsb-nps-vizualizer-item-min-width, 256px);
|
|
1419
|
+
padding: var(--dsb-nps-vizualizer-item-padding-top, 16px) var(--dsb-nps-vizualizer-item-padding-right, 24px) var(--dsb-nps-vizualizer-item-padding-bottom, 16px) var(--dsb-nps-vizualizer-item-padding-left, 24px);
|
|
434
1420
|
flex-direction: column;
|
|
435
|
-
|
|
1421
|
+
align-items: flex-start;
|
|
1422
|
+
gap: var(--dsb-nps-vizualizer-item-gap, 24px);
|
|
1423
|
+
flex: 1 0 0;
|
|
1424
|
+
border-radius: var(--dsb-nps-vizualizer-item-corner-radius, 8px);
|
|
1425
|
+
border: var(--dsb-nps-vizualizer-item-border-width, 1px) dashed var(--dsb-nps-vizualizer-item-border-color, #DCDCDC);
|
|
1426
|
+
background: var(--dsb-nps-vizualizer-item-background-color, #FFF);
|
|
436
1427
|
}
|
|
437
1428
|
|
|
438
1429
|
.sa-visualizer-nps__score-part-title {
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
1430
|
+
color: var(--dsb-nps-vizualizer-item-title-color, rgba(0, 0, 0, 0.9));
|
|
1431
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1432
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
1433
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1434
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
442
1435
|
}
|
|
443
1436
|
|
|
444
1437
|
.sa-visualizer-nps__score-part-values {
|
|
445
1438
|
display: flex;
|
|
446
|
-
|
|
447
|
-
gap:
|
|
448
|
-
align-
|
|
1439
|
+
align-items: flex-start;
|
|
1440
|
+
gap: var(--dsb-nps-vizualizer-item-text-gap, 24px);
|
|
1441
|
+
align-self: stretch;
|
|
449
1442
|
}
|
|
450
1443
|
|
|
451
1444
|
.sa-visualizer-nps__score-part-value {
|
|
452
|
-
|
|
1445
|
+
flex: 1 0 0;
|
|
1446
|
+
color: var(--dsb-nps-vizualizer-item-text-color-value, rgba(0, 0, 0, 0.9));
|
|
1447
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1448
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
1449
|
+
font-size: var(--sjs2-typography-font-size-large);
|
|
1450
|
+
line-height: var(--sjs2-typography-line-height-large);
|
|
453
1451
|
}
|
|
454
1452
|
|
|
455
1453
|
.sa-visualizer-nps__score-part-percent {
|
|
456
|
-
|
|
457
|
-
|
|
1454
|
+
color: var(--dsb-nps-vizualizer-item-text-color-percent, #19B394);
|
|
1455
|
+
text-align: right;
|
|
1456
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1457
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
1458
|
+
font-size: var(--sjs2-typography-font-size-large);
|
|
1459
|
+
line-height: var(--sjs2-typography-line-height-large);
|
|
1460
|
+
}
|
|
1461
|
+
/*!****************************************************************************************************************************************************************!*\
|
|
1462
|
+
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/card.scss ***!
|
|
1463
|
+
\****************************************************************************************************************************************************************/
|
|
1464
|
+
.sa-visualizer-card {
|
|
1465
|
+
display: flex;
|
|
1466
|
+
padding-top: var(--sjs2-spacing-x300, 24px);
|
|
1467
|
+
flex-direction: column;
|
|
1468
|
+
align-items: flex-start;
|
|
1469
|
+
align-self: stretch;
|
|
1470
|
+
}
|
|
1471
|
+
|
|
1472
|
+
.sa-visualizer-card-content {
|
|
1473
|
+
display: flex;
|
|
1474
|
+
min-width: var(--dsb-nps-vizualizer-item-min-width, 256px);
|
|
1475
|
+
padding: var(--sjs2-spacing-x200, 16px) var(--sjs2-spacing-x300, 24px);
|
|
1476
|
+
flex-direction: column;
|
|
1477
|
+
align-items: flex-start;
|
|
1478
|
+
gap: var(--sjs2-spacing-x300, 24px);
|
|
1479
|
+
border-radius: var(--dsb-nps-vizualizer-item-corner-radius, 8px);
|
|
1480
|
+
border: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
1481
|
+
background: var(--sjs2-color-bg-basic-primary, #FFF);
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.sa-visualizer-card-value {
|
|
1485
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
1486
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1487
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
1488
|
+
font-size: var(--sjs2-typography-font-size-large);
|
|
1489
|
+
line-height: var(--sjs2-typography-line-height-large);
|
|
458
1490
|
}
|
|
459
1491
|
|
|
460
1492
|
/*# sourceMappingURL=survey.analytics.core.css.map*/
|