survey-analytics 2.5.14 → 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.plotly.mjs +13 -0
- package/fesm/survey.analytics.plotly.mjs.map +1 -0
- package/fesm/survey.analytics.tabulator.mjs +335 -180
- 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 +37 -10
- 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 +7 -0
- 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 +2608 -235
- 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
|
@@ -0,0 +1,1121 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* surveyjs - SurveyJS Dashboard library v3.0.0-beta.0
|
|
3
|
+
* Copyright (c) 2015-2026 Devsoft Baltic OÜ - http://surveyjs.io/
|
|
4
|
+
* License: SEE LICENSE IN LICENSE
|
|
5
|
+
*/
|
|
6
|
+
/*!****************************************************************************************************************************************************************************!*\
|
|
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/tables/tabulator.scss ***!
|
|
8
|
+
\****************************************************************************************************************************************************************************/
|
|
9
|
+
.sa-commercial {
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
padding: var(--sjs2-spacing-static-x150, 12px) var(--sjs2-spacing-static-x600, 48px);
|
|
12
|
+
justify-content: center;
|
|
13
|
+
width: 100%;
|
|
14
|
+
background: var(--sjs2-color-bg-brand-primary, #19B394);
|
|
15
|
+
}
|
|
16
|
+
@media screen and (max-width: 600px) {
|
|
17
|
+
.sa-commercial {
|
|
18
|
+
padding: var(--sjs2-spacing-static-x100, 8px) var(--sjs2-spacing-static-x300, 24px);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.sa-commercial__text {
|
|
23
|
+
text-decoration: none;
|
|
24
|
+
color: var(--sjs2-color-fg-static-main-primary, #FFF);
|
|
25
|
+
text-align: center;
|
|
26
|
+
font-family: var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);
|
|
27
|
+
font-size: var(--sjs2-font-size-semantic-default, 16px);
|
|
28
|
+
font-style: normal;
|
|
29
|
+
font-weight: 600;
|
|
30
|
+
line-height: var(--sjs2-line-height-semantic-default, 24px);
|
|
31
|
+
}
|
|
32
|
+
@media screen and (max-width: 600px) {
|
|
33
|
+
.sa-commercial__text {
|
|
34
|
+
font-size: var(--sjs2-font-size-semantic-small, 12px);
|
|
35
|
+
line-height: var(--sjs2-line-height-semantic-small, 16px);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
.sa-commercial__text a {
|
|
39
|
+
color: var(--sjs2-color-fg-static-main-primary, #FFF);
|
|
40
|
+
text-align: center;
|
|
41
|
+
font-family: var(--sjs2-font-family-semantic-default, "Segoe UI", SegoeUI, Arial, sans-serif);
|
|
42
|
+
font-size: var(--sjs2-font-size-semantic-default, 16px);
|
|
43
|
+
font-style: normal;
|
|
44
|
+
font-weight: 600;
|
|
45
|
+
line-height: var(--sjs2-line-height-semantic-default, 24px);
|
|
46
|
+
text-decoration-line: underline;
|
|
47
|
+
text-decoration-style: solid;
|
|
48
|
+
text-decoration-skip-ink: auto;
|
|
49
|
+
text-decoration-thickness: 5%;
|
|
50
|
+
text-underline-offset: 10%;
|
|
51
|
+
text-underline-position: from-font;
|
|
52
|
+
}
|
|
53
|
+
@media screen and (max-width: 600px) {
|
|
54
|
+
.sa-commercial__text a {
|
|
55
|
+
font-size: var(--sjs2-font-size-semantic-small, 12px);
|
|
56
|
+
line-height: var(--sjs2-line-height-semantic-small, 16px);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.sa-dropdown,
|
|
61
|
+
.sa-action-dropdown {
|
|
62
|
+
position: relative;
|
|
63
|
+
cursor: pointer;
|
|
64
|
+
user-select: none;
|
|
65
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
66
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
67
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
68
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
69
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.sa-dropdown {
|
|
73
|
+
display: flex;
|
|
74
|
+
flex-grow: 1;
|
|
75
|
+
flex-direction: row;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.sa-action-dropdown:hover,
|
|
79
|
+
.sa-action-dropdown.sa-action-dropdown--opened {
|
|
80
|
+
border-radius: var(--sjs2-radius-control-action, 8px);
|
|
81
|
+
background: var(--sjs2-color-bg-positive-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.sa-dropdown-header {
|
|
85
|
+
display: flex;
|
|
86
|
+
padding: var(--sjs2-layout-control-formbox-medium-vertical, 4px) var(--sjs2-layout-control-formbox-medium-horizontal, 4px);
|
|
87
|
+
flex-grow: 1;
|
|
88
|
+
align-items: flex-start;
|
|
89
|
+
gap: var(--sjs2-layout-control-formbox-medium-gap, 4px);
|
|
90
|
+
align-self: stretch;
|
|
91
|
+
border-radius: var(--sjs2-radius-semantic-form, 8px);
|
|
92
|
+
margin: var(--sjs2-border-width-x100, 1px);
|
|
93
|
+
outline: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-control-formbox-default-border, #D4D4D4);
|
|
94
|
+
background: var(--sjs2-color-control-formbox-default-bg, rgba(28, 27, 32, 0.05));
|
|
95
|
+
}
|
|
96
|
+
.sa-dropdown-header:focus {
|
|
97
|
+
border-radius: var(--sjs2-radius-semantic-form, 8px);
|
|
98
|
+
background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
|
|
99
|
+
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;
|
|
100
|
+
outline: none;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.sa-dropdown-action {
|
|
104
|
+
display: flex;
|
|
105
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
106
|
+
justify-content: center;
|
|
107
|
+
align-items: center;
|
|
108
|
+
align-self: stretch;
|
|
109
|
+
border-radius: var(--sjs2-radius-semantic-form-item, 4px);
|
|
110
|
+
background: var(--sjs2-color-bg-neutral-tertiary, rgba(28, 27, 32, 0));
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.sa-dropdown-action:hover {
|
|
114
|
+
background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.sa-dropdown--opened .sa-dropdown-arrow {
|
|
118
|
+
background: var(--sjs2-color-bg-neutral-tertiary-dim, rgba(28, 27, 32, 0.05));
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.sa-dropdown-action svg {
|
|
122
|
+
display: flex;
|
|
123
|
+
width: var(--sjs2-size-icon-medium, 24px);
|
|
124
|
+
height: var(--sjs2-size-icon-medium, 24px);
|
|
125
|
+
justify-content: center;
|
|
126
|
+
align-items: center;
|
|
127
|
+
}
|
|
128
|
+
.sa-dropdown-action svg use {
|
|
129
|
+
fill: var(--sjs2-color-fg-basic-primary-alt, rgb(66, 65, 70));
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.sa-dropdown-container {
|
|
133
|
+
display: inline-flex;
|
|
134
|
+
flex-grow: 1;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.sa-action-dropdown-container {
|
|
138
|
+
display: inline-flex;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.sa-dropdown__title {
|
|
142
|
+
padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x000, 0.001px) var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x150, 12px);
|
|
143
|
+
display: flex;
|
|
144
|
+
flex-shrink: 0;
|
|
145
|
+
margin-inline-end: var(--sjs2-spacing-static-x100, 8px);
|
|
146
|
+
overflow: hidden;
|
|
147
|
+
color: var(--sjs2-color-fg-basic-secondary, rgba(28, 27, 32, 0.6));
|
|
148
|
+
text-overflow: ellipsis;
|
|
149
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
150
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
151
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
152
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.sa-dropdown-list,
|
|
156
|
+
.sa-action-dropdown-list {
|
|
157
|
+
position: absolute;
|
|
158
|
+
min-width: 150px;
|
|
159
|
+
max-height: 50vh;
|
|
160
|
+
max-width: 80vw;
|
|
161
|
+
overflow-x: hidden;
|
|
162
|
+
overflow-y: auto;
|
|
163
|
+
border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
164
|
+
border-top: none;
|
|
165
|
+
border-radius: var(--sjs2-radius-container-drop, 16px);
|
|
166
|
+
background: var(--sjs2-color-utility-sheet, #FFF);
|
|
167
|
+
display: none;
|
|
168
|
+
z-index: 1000;
|
|
169
|
+
margin: 0;
|
|
170
|
+
list-style: none;
|
|
171
|
+
transition: all 0.3s;
|
|
172
|
+
margin-top: 8px;
|
|
173
|
+
padding: var(--sjs2-layout-container-drop-vertical, 8px) var(--sjs2-layout-container-drop-horizontal, 8px);
|
|
174
|
+
box-sizing: border-box;
|
|
175
|
+
/* sjs2/shadow/large */
|
|
176
|
+
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));
|
|
177
|
+
-webkit-font-smoothing: antialiased;
|
|
178
|
+
-webkit-tap-highlight-color: transparent;
|
|
179
|
+
}
|
|
180
|
+
@-moz-document url-prefix() {
|
|
181
|
+
.sa-dropdown-list,
|
|
182
|
+
.sa-action-dropdown-list {
|
|
183
|
+
scrollbar-width: thin;
|
|
184
|
+
scrollbar-color: rgba(0, 0, 0, 0.1490196078) transparent;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
.sa-dropdown-list::-webkit-scrollbar,
|
|
188
|
+
.sa-action-dropdown-list::-webkit-scrollbar {
|
|
189
|
+
width: 12px;
|
|
190
|
+
height: 12px;
|
|
191
|
+
background-color: transparent;
|
|
192
|
+
}
|
|
193
|
+
.sa-dropdown-list::-webkit-scrollbar-thumb,
|
|
194
|
+
.sa-action-dropdown-list::-webkit-scrollbar-thumb {
|
|
195
|
+
border: 4px solid rgba(0, 0, 0, 0);
|
|
196
|
+
background-clip: padding-box;
|
|
197
|
+
border-radius: 1024px;
|
|
198
|
+
background-color: rgba(0, 0, 0, 0.1490196078);
|
|
199
|
+
}
|
|
200
|
+
.sa-dropdown-list::-webkit-scrollbar-track,
|
|
201
|
+
.sa-action-dropdown-list::-webkit-scrollbar-track {
|
|
202
|
+
background: transparent;
|
|
203
|
+
}
|
|
204
|
+
.sa-dropdown-list::-webkit-scrollbar-thumb:hover,
|
|
205
|
+
.sa-action-dropdown-list::-webkit-scrollbar-thumb:hover {
|
|
206
|
+
border: 2px solid rgba(0, 0, 0, 0);
|
|
207
|
+
background-color: rgba(0, 0, 0, 0.1490196078);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.sa-dropdown-list.sa-dropdown--opened {
|
|
211
|
+
display: block;
|
|
212
|
+
top: 100%;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.sa-action-dropdown-list.sa-action-dropdown--opened {
|
|
216
|
+
display: block;
|
|
217
|
+
top: 100%;
|
|
218
|
+
border-radius: var(--sjs2-radius-container-drop, 16px);
|
|
219
|
+
border: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
220
|
+
background: var(--sjs2-color-utility-sheet, #FFF);
|
|
221
|
+
/* sjs2/border-effect/floating/default */
|
|
222
|
+
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));
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.sa-action-dropdown-list.sa-action-dropdown--up.sa-action-dropdown--opened {
|
|
226
|
+
top: auto;
|
|
227
|
+
bottom: 100%;
|
|
228
|
+
margin-top: 0;
|
|
229
|
+
margin-bottom: 8px;
|
|
230
|
+
border-top: var(--sjs2-border-width-x100, 1px) solid var(--sjs2-color-border-basic-secondary, #d4d4d4);
|
|
231
|
+
border-bottom: none;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.sa-dropdown-item,
|
|
235
|
+
.sa-action-dropdown-item {
|
|
236
|
+
width: max-content;
|
|
237
|
+
min-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
|
|
238
|
+
max-width: calc(100% - 2 * var(--sjs2-size-x200, 16px));
|
|
239
|
+
padding: var(--sjs2-spacing-x150, 12px) var(--sjs2-size-x200, 16px);
|
|
240
|
+
cursor: pointer;
|
|
241
|
+
transition: all 0.3s;
|
|
242
|
+
display: flex;
|
|
243
|
+
align-items: center;
|
|
244
|
+
gap: var(--sjs2-spacing-x150, 12px);
|
|
245
|
+
border-radius: var(--sjs2-radius-control-drop-item, 8px);
|
|
246
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
247
|
+
background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
|
|
248
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
249
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
250
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
251
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
252
|
+
}
|
|
253
|
+
.sa-dropdown-item:hover,
|
|
254
|
+
.sa-action-dropdown-item:hover {
|
|
255
|
+
background-color: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
256
|
+
}
|
|
257
|
+
.sa-dropdown-item:hover .sa-action-dropdown-icon,
|
|
258
|
+
.sa-action-dropdown-item:hover .sa-action-dropdown-icon {
|
|
259
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
260
|
+
background: var(--sjs2-color-control-check-false-hovered-bg, rgba(28, 27, 32, 0.1));
|
|
261
|
+
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;
|
|
262
|
+
}
|
|
263
|
+
.sa-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon,
|
|
264
|
+
.sa-action-dropdown-item:hover.sa-action-dropdown-item--selected .sa-action-dropdown-icon {
|
|
265
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
266
|
+
background: var(--sjs2-color-control-check-true-hovered-bg, #15987E);
|
|
267
|
+
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;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.sa-action-dropdown-item:focus,
|
|
271
|
+
.sa-action-dropdown-item--focused,
|
|
272
|
+
.sa-dropdown-item:focus,
|
|
273
|
+
.sa-dropdown-item--focused {
|
|
274
|
+
border-radius: var(--sjs2-radius-control-drop-item, 8px);
|
|
275
|
+
background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.sa-action-dropdown-item--selected .sa-action-dropdown-icon {
|
|
279
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
280
|
+
background: var(--sjs2-color-control-check-true-default-bg, #19B394);
|
|
281
|
+
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;
|
|
282
|
+
}
|
|
283
|
+
.sa-action-dropdown-item--selected .sa-action-dropdown-icon svg {
|
|
284
|
+
display: block;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.sa-action-dropdown-icon {
|
|
288
|
+
width: var(--sjs2-size-icon-medium, 24px);
|
|
289
|
+
height: var(--sjs2-size-icon-medium, 24px);
|
|
290
|
+
min-width: var(--sjs2-size-icon-medium, 24px);
|
|
291
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
292
|
+
background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
|
|
293
|
+
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;
|
|
294
|
+
}
|
|
295
|
+
.sa-action-dropdown-icon svg {
|
|
296
|
+
display: none;
|
|
297
|
+
width: var(--sjs2-size-icon-medium, 24px);
|
|
298
|
+
height: var(--sjs2-size-icon-medium, 24px);
|
|
299
|
+
}
|
|
300
|
+
.sa-action-dropdown-icon use {
|
|
301
|
+
fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.sa-dropdown-item.sa-dropdown-item--selected {
|
|
305
|
+
background-color: var(--sjs2-color-bg-brand-primary, #19B394);
|
|
306
|
+
color: var(--sjs2-color-fg-static-main-primary, #FFF);
|
|
307
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
308
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
309
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
310
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.sa-dropdown-placeholder {
|
|
314
|
+
overflow: hidden;
|
|
315
|
+
color: var(--sjs2-color-control-input-default-placeholder, rgba(28, 27, 32, 0.6));
|
|
316
|
+
text-overflow: ellipsis;
|
|
317
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
318
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
319
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
320
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.sa-dropdown-icon {
|
|
324
|
+
width: var(--sa-icon-size);
|
|
325
|
+
height: var(--sa-icon-size);
|
|
326
|
+
flex-shrink: 0;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.sa-dropdown-header-icon {
|
|
330
|
+
width: var(--sa-icon-size);
|
|
331
|
+
height: var(--sa-icon-size);
|
|
332
|
+
margin-right: 8px;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.sa-dropdown-header-content {
|
|
336
|
+
display: flex;
|
|
337
|
+
padding: var(--sjs2-layout-control-input-medium-content-vertical, 8px) var(--sjs2-layout-control-input-medium-content-horizontal, 12px);
|
|
338
|
+
align-items: flex-start;
|
|
339
|
+
flex: 1 0 0;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.sa-dropdown-header-text {
|
|
343
|
+
white-space: nowrap;
|
|
344
|
+
overflow: hidden;
|
|
345
|
+
text-overflow: ellipsis;
|
|
346
|
+
color: var(--sjs2-color-control-input-default-value, #1C1B20);
|
|
347
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
348
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
349
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
350
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.sa-action-dropdown-header {
|
|
354
|
+
display: flex;
|
|
355
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
356
|
+
justify-content: center;
|
|
357
|
+
align-items: center;
|
|
358
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
359
|
+
border-radius: var(--sjs2-radius-control-action, 8px);
|
|
360
|
+
background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
|
|
361
|
+
}
|
|
362
|
+
.sa-action-dropdown-header:focus-visible {
|
|
363
|
+
border-radius: var(--sjs2-radius-control-action, 8px);
|
|
364
|
+
outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
|
|
365
|
+
background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
.sa-action-dropdown-title {
|
|
369
|
+
padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.sa-action-dropdown-arrow {
|
|
373
|
+
display: flex;
|
|
374
|
+
padding: var(--sjs2-layout-control-action-small-addon-vertical, 4px) var(--sjs2-layout-control-action-small-addon-horizontal, 4px);
|
|
375
|
+
justify-content: center;
|
|
376
|
+
align-items: center;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.sa-action-dropdown-arrow svg {
|
|
380
|
+
display: flex;
|
|
381
|
+
width: 16px;
|
|
382
|
+
height: 16px;
|
|
383
|
+
justify-content: center;
|
|
384
|
+
align-items: center;
|
|
385
|
+
}
|
|
386
|
+
.sa-action-dropdown-arrow svg use {
|
|
387
|
+
fill: var(--sjs2-color-project-accent-600, rgb(25, 179, 148));
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.sa-action-dropdown-header {
|
|
391
|
+
display: flex;
|
|
392
|
+
min-width: var(--sjs2-size-semantic-small, 40px);
|
|
393
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
394
|
+
justify-content: center;
|
|
395
|
+
align-items: center;
|
|
396
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.sa-button {
|
|
400
|
+
outline: none;
|
|
401
|
+
user-select: none;
|
|
402
|
+
cursor: pointer;
|
|
403
|
+
display: flex;
|
|
404
|
+
flex-shrink: 0;
|
|
405
|
+
min-width: var(--sjs2-size-semantic-small, 40px);
|
|
406
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
407
|
+
justify-content: center;
|
|
408
|
+
align-items: center;
|
|
409
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.sa-button-text {
|
|
413
|
+
display: flex;
|
|
414
|
+
flex: 1 0 auto;
|
|
415
|
+
padding: var(--sjs2-layout-control-action-small-label-vertical, 0) var(--sjs2-layout-control-action-small-label-horizontal, 6px);
|
|
416
|
+
justify-content: center;
|
|
417
|
+
align-items: center;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.sa-button-brand-secondary {
|
|
421
|
+
border-radius: var(--sjs2-radius-control-button, 8px);
|
|
422
|
+
background: var(--sjs2-color-bg-brand-secondary, rgba(25, 179, 148, 0.1));
|
|
423
|
+
color: var(--sjs2-color-fg-brand-primary, #19B394);
|
|
424
|
+
}
|
|
425
|
+
.sa-button-brand-secondary:hover {
|
|
426
|
+
background: var(--sjs2-color-bg-brand-secondary-dim, rgba(25, 179, 148, 0.15));
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.sa-button-brand-tertiary {
|
|
430
|
+
border-radius: 8px;
|
|
431
|
+
background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
|
|
432
|
+
color: var(--sjs2-color-fg-brand-primary, #19B394);
|
|
433
|
+
text-align: center;
|
|
434
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
435
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
436
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
437
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
438
|
+
}
|
|
439
|
+
.sa-button-brand-tertiary:hover {
|
|
440
|
+
background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
@media screen and (max-width: 600px) {
|
|
444
|
+
.sa-dropdown {
|
|
445
|
+
width: 100%;
|
|
446
|
+
flex-direction: column;
|
|
447
|
+
}
|
|
448
|
+
.sa-dropdown-container {
|
|
449
|
+
width: 100%;
|
|
450
|
+
}
|
|
451
|
+
.sa-dropdown-list.sa-dropdown--opened {
|
|
452
|
+
min-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
|
|
453
|
+
max-width: calc(100% - var(--sjs2-layout-container-drop-horizontal, 8px) * 2);
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
.sa-table {
|
|
457
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
458
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
459
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
460
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
461
|
+
}
|
|
462
|
+
.sa-table button {
|
|
463
|
+
cursor: pointer;
|
|
464
|
+
background-color: inherit;
|
|
465
|
+
outline: none;
|
|
466
|
+
}
|
|
467
|
+
.sa-table select {
|
|
468
|
+
line-height: initial;
|
|
469
|
+
appearance: none;
|
|
470
|
+
-webkit-appearance: none;
|
|
471
|
+
-moz-appearance: none;
|
|
472
|
+
background: transparent;
|
|
473
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23404040;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");
|
|
474
|
+
background-repeat: no-repeat, repeat;
|
|
475
|
+
background-position: right 0.7em top 50%, 0 0;
|
|
476
|
+
background-size: 0.57em 100%;
|
|
477
|
+
height: 34px;
|
|
478
|
+
border-radius: 2px;
|
|
479
|
+
border: solid 1px #d4d4d4;
|
|
480
|
+
box-sizing: border-box;
|
|
481
|
+
font-family: inherit;
|
|
482
|
+
font-size: inherit;
|
|
483
|
+
padding: 0.25em 2em 0.25em 0.87em;
|
|
484
|
+
}
|
|
485
|
+
.sa-table select:focus {
|
|
486
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%231AB394;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E");
|
|
487
|
+
border-color: #d4d4d4;
|
|
488
|
+
outline: none;
|
|
489
|
+
}
|
|
490
|
+
.sa-table select::-ms-expand {
|
|
491
|
+
display: none;
|
|
492
|
+
}
|
|
493
|
+
.sa-table input {
|
|
494
|
+
height: 34px;
|
|
495
|
+
border: none;
|
|
496
|
+
border-bottom: 0.06em solid #d4d4d4;
|
|
497
|
+
box-sizing: border-box;
|
|
498
|
+
font-family: inherit;
|
|
499
|
+
font-size: inherit;
|
|
500
|
+
padding: 0.25em 1.5em 0.25em 0.87em;
|
|
501
|
+
background: transparent;
|
|
502
|
+
}
|
|
503
|
+
.sa-table input:focus {
|
|
504
|
+
border-color: var(--main-color, #1ab394);
|
|
505
|
+
outline: none;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.sa-table__detail-row.sa-table__detail-row.sa-table__detail-row.sa-table__detail-row {
|
|
509
|
+
background: var(--sjs2-color-bg-basic-secondary, rgba(28, 27, 32, 0.05));
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.sa-table__detail-table.sa-table__detail-table {
|
|
513
|
+
width: 100%;
|
|
514
|
+
border-collapse: collapse;
|
|
515
|
+
border-right: 1px solid #d4d4d4;
|
|
516
|
+
border-bottom: none;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
.sa-table__detail {
|
|
520
|
+
border-top: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
521
|
+
}
|
|
522
|
+
.sa-table__detail td {
|
|
523
|
+
box-sizing: border-box;
|
|
524
|
+
border-left: none;
|
|
525
|
+
border-right: none;
|
|
526
|
+
white-space: initial;
|
|
527
|
+
padding: var(--sjs2-spacing-x200, 16px) var(--sjs2-spacing-x300, 24px);
|
|
528
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
529
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
530
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
531
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
532
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
533
|
+
}
|
|
534
|
+
.sa-table__detail td:first-child {
|
|
535
|
+
display: flex;
|
|
536
|
+
padding: var(--sjs2-spacing-x100, 8px);
|
|
537
|
+
align-items: flex-start;
|
|
538
|
+
align-self: stretch;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.sa-table__btn {
|
|
542
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
543
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
544
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
545
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
546
|
+
height: 34px;
|
|
547
|
+
width: 154px;
|
|
548
|
+
background-color: transparent;
|
|
549
|
+
box-sizing: border-box;
|
|
550
|
+
border: solid 2px;
|
|
551
|
+
border-radius: 17px;
|
|
552
|
+
padding: 0;
|
|
553
|
+
outline: none;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
a.sa-table__btn {
|
|
557
|
+
display: inline-block;
|
|
558
|
+
text-align: center;
|
|
559
|
+
padding-top: 5px;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.sa-table__btn--small {
|
|
563
|
+
width: 99px;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.sa-table__btn--gray {
|
|
567
|
+
border-color: #a0a0a0;
|
|
568
|
+
color: #a0a0a0;
|
|
569
|
+
}
|
|
570
|
+
.sa-table__btn--gray:hover {
|
|
571
|
+
background-color: #9b9b9b;
|
|
572
|
+
color: var(--text-color-inverse, #fff);
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
.sa-table__btn--green {
|
|
576
|
+
border-color: var(--main-color, #1ab394);
|
|
577
|
+
color: var(--main-color, #1ab394);
|
|
578
|
+
}
|
|
579
|
+
.sa-table__btn--green:hover {
|
|
580
|
+
background-color: var(--main-color, #1ab394);
|
|
581
|
+
color: var(--text-color-inverse, #fff);
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
.sa-table__svg-button {
|
|
585
|
+
display: flex;
|
|
586
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
587
|
+
justify-content: center;
|
|
588
|
+
align-items: center;
|
|
589
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
590
|
+
border: none;
|
|
591
|
+
box-sizing: content-box;
|
|
592
|
+
}
|
|
593
|
+
.sa-table__svg-button:hover {
|
|
594
|
+
border-radius: var(--sjs2-radius-control-action-icon, 8px);
|
|
595
|
+
background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
596
|
+
}
|
|
597
|
+
.sa-table__svg-button:focus-visible {
|
|
598
|
+
border-radius: var(--sjs2-radius-control-action-icon, 8px);
|
|
599
|
+
outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
|
|
600
|
+
background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
|
|
601
|
+
}
|
|
602
|
+
.sa-table__svg-button svg {
|
|
603
|
+
width: 24px;
|
|
604
|
+
height: 24px;
|
|
605
|
+
flex-shrink: 0;
|
|
606
|
+
}
|
|
607
|
+
.sa-table__svg-button use {
|
|
608
|
+
fill: var(--sjs2-color-fg-brand-primary, #19B394);
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
.sa-tabulator-column-header {
|
|
612
|
+
display: flex;
|
|
613
|
+
padding: var(--sjs2-spacing-x200, 16px) var(--sjs2-spacing-x300, 24px) var(--sjs2-spacing-x150, 12px) var(--sjs2-spacing-x300, 24px);
|
|
614
|
+
flex-direction: column;
|
|
615
|
+
align-items: flex-start;
|
|
616
|
+
gap: var(--sjs2-spacing-x100, 8px);
|
|
617
|
+
flex: 1 0 0;
|
|
618
|
+
background: var(--sjs2-color-bg-basic-primary, #FFF);
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.sa-tabulator-column-title-text {
|
|
622
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
623
|
+
flex: 1 0 0;
|
|
624
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
625
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
626
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
627
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.sa-table-filter {
|
|
631
|
+
display: flex;
|
|
632
|
+
padding: var(--sjs2-layout-control-formbox-small-vertical, 4px) var(--sjs2-layout-control-formbox-small-horizontal, 4px);
|
|
633
|
+
align-items: flex-start;
|
|
634
|
+
gap: var(--sjs2-layout-control-formbox-small-gap, 4px);
|
|
635
|
+
align-self: stretch;
|
|
636
|
+
border-radius: var(--sjs2-radius-semantic-form, 8px);
|
|
637
|
+
background: var(--sjs2-color-control-formbox-default-bg, #F5F5F5);
|
|
638
|
+
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-formbox-default-border, #D4D4D4) inset;
|
|
639
|
+
}
|
|
640
|
+
.sa-table-filter:focus-within {
|
|
641
|
+
background: var(--sjs2-color-control-formbox-focused-bg, #F5F5F5);
|
|
642
|
+
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;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.sa-table-filter_icon {
|
|
646
|
+
display: flex;
|
|
647
|
+
padding: var(--sjs2-layout-control-input-small-icon-vertical, 4px) var(--sjs2-layout-control-input-small-icon-right, 0) var(--sjs2-layout-control-input-small-icon-vertical, 4px) var(--sjs2-layout-control-input-small-icon-left, 4px);
|
|
648
|
+
justify-content: center;
|
|
649
|
+
align-items: center;
|
|
650
|
+
}
|
|
651
|
+
.sa-table-filter_icon svg {
|
|
652
|
+
width: 24px;
|
|
653
|
+
height: 24px;
|
|
654
|
+
flex-shrink: 0;
|
|
655
|
+
}
|
|
656
|
+
.sa-table-filter_icon use {
|
|
657
|
+
fill: var(--sjs2-color-control-input-default-icon, rgba(28, 27, 32, 0.4));
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.sa-table-filter_input.sa-table-filter_input {
|
|
661
|
+
display: flex;
|
|
662
|
+
padding: var(--sjs2-layout-control-input-small-content-vertical, 4px) var(--sjs2-layout-control-input-small-content-horizontal, 8px);
|
|
663
|
+
align-items: flex-start;
|
|
664
|
+
flex: 1 0 0;
|
|
665
|
+
border: none;
|
|
666
|
+
overflow: hidden;
|
|
667
|
+
color: var(--sjs2-color-control-input-default-value, #1C1B20);
|
|
668
|
+
text-overflow: ellipsis;
|
|
669
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
670
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
671
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
672
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
673
|
+
}
|
|
674
|
+
.sa-table-filter_input.sa-table-filter_input::placeholder {
|
|
675
|
+
overflow: hidden;
|
|
676
|
+
color: var(--sjs2-color-control-input-default-placeholder, rgba(28, 27, 32, 0.6));
|
|
677
|
+
text-overflow: ellipsis;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.sa-table__filter-container {
|
|
681
|
+
display: flex;
|
|
682
|
+
padding: var(--sjs2-spacing-x100, 8px) 0;
|
|
683
|
+
flex-direction: column;
|
|
684
|
+
align-items: flex-start;
|
|
685
|
+
align-self: stretch;
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.sa-table__action-container {
|
|
689
|
+
display: flex;
|
|
690
|
+
align-items: center;
|
|
691
|
+
align-self: stretch;
|
|
692
|
+
}
|
|
693
|
+
.sa-table__action-container .sa-table__svg-button {
|
|
694
|
+
pointer-events: all;
|
|
695
|
+
}
|
|
696
|
+
.sa-table__action-container:after {
|
|
697
|
+
content: "";
|
|
698
|
+
display: table;
|
|
699
|
+
clear: both;
|
|
700
|
+
}
|
|
701
|
+
.sa-table__action-container .sa-table__drag-button {
|
|
702
|
+
float: left;
|
|
703
|
+
cursor: move;
|
|
704
|
+
margin-inline-end: auto;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.sa-table__global-filter.sa-table__global-filter,
|
|
708
|
+
.sa-table__filter.sa-table__filter {
|
|
709
|
+
background: transparent;
|
|
710
|
+
background-image: url("data:image/svg+xml;charset=utf8,%3C?xml%20version=%271.0%27%20encoding=%27utf-8%27?%3E%3C%21--%20Generator:%20Adobe%20Illustrator%2024.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200%29%20--%3E%3Csvg%20version=%271.1%27%20id=%27Layer_1%27%20xmlns=%27http://www.w3.org/2000/svg%27%20xmlns:xlink=%27http://www.w3.org/1999/xlink%27%20x=%270px%27%20y=%270px%27%20viewBox=%270%200%2016%2016%27%20style=%27enable-background:new%200%200%2016%2016;%27%20xml:space=%27preserve%27%3E%3Cstyle%20type=%27text/css%27%3E%20.st0{fill:%239F9E9E;}%20%3C/style%3E%3Cpath%20class=%27st0%27%20d=%27M13.56,11.44L11.3,9.18C11.74,8.38,12,7.47,12,6.5C12,3.47,9.53,1,6.5,1S1,3.47,1,6.5C1,9.53,3.47,12,6.5,12%20c0.97,0,1.88-0.26,2.68-0.7l2.26,2.26c0.29,0.29,0.66,0.43,1.04,0.44c0.39,0.01,0.78-0.14,1.08-0.44c0.3-0.3,0.44-0.69,0.44-1.08%20C13.99,12.1,13.85,11.72,13.56,11.44z%20M4,6.5C4,5.12,5.12,4,6.5,4S9,5.12,9,6.5S7.88,9,6.5,9S4,7.88,4,6.5z%27/%3E%3C/svg%3E");
|
|
711
|
+
background-repeat: no-repeat, repeat;
|
|
712
|
+
background-position: left 0.7em top 50%, 0 0;
|
|
713
|
+
background-size: 1em 100%;
|
|
714
|
+
padding-left: 35px;
|
|
715
|
+
border: solid 1px #d4d4d4;
|
|
716
|
+
pointer-events: all;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
.sa-table__filter.sa-table__filter {
|
|
720
|
+
width: 100%;
|
|
721
|
+
min-width: 195px;
|
|
722
|
+
border: none;
|
|
723
|
+
border-radius: var(--dsb-table-view-column-search-corner-radius, 6px);
|
|
724
|
+
outline: var(--dsb-table-view-column-search-border-width, 0px) solid var(--dsb-table-view-column-search-border-color, #DCDCDC);
|
|
725
|
+
background: var(--dsb-table-view-column-search-background-color, #F4F4F4);
|
|
726
|
+
padding: var(--dsb-table-view-column-search-padding-top, 8px) var(--dsb-table-view-column-search-padding-right, 16px) var(--dsb-table-view-column-search-padding-bottom, 8px) var(--dsb-table-view-column-search-padding-left, 16px);
|
|
727
|
+
margin-inline-end: var(--dsb-table-view-header-toolbar-gap, 16px);
|
|
728
|
+
overflow: hidden;
|
|
729
|
+
color: var(--dsb-table-view-column-search-text-color, rgba(0, 0, 0, 0.5));
|
|
730
|
+
text-overflow: ellipsis;
|
|
731
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
732
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
733
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
734
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
.sa-table__filter.sa-table__filter:focus {
|
|
738
|
+
outline: var(--dsb-table-view-column-search-border-width-focused, 2px) solid var(--dsb-table-view-column-search-border-color-focused, #19B394);
|
|
739
|
+
}
|
|
740
|
+
|
|
741
|
+
.sa-table__entries {
|
|
742
|
+
display: flex;
|
|
743
|
+
justify-content: flex-end;
|
|
744
|
+
align-items: center;
|
|
745
|
+
gap: var(--sjs2-spacing-x100, 8px);
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
.sa-table__entries-label {
|
|
749
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
750
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
751
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
752
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
753
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.sa-table__entries-value .sa-action-dropdown-list {
|
|
757
|
+
bottom: 48px;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
.sa-table__detail-row {
|
|
761
|
+
background: var(--sjs2-color-bg-basic-secondary, rgba(28, 27, 32, 0.05));
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.sa-table input.sa-table__row-extension {
|
|
765
|
+
height: auto;
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.sa-table__row-extension + .sa-table__row-extension {
|
|
769
|
+
vertical-align: middle;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.sa-table__row-extension {
|
|
773
|
+
margin: auto;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
.sa-table__header-extensions {
|
|
777
|
+
display: flex;
|
|
778
|
+
align-items: center;
|
|
779
|
+
gap: 12px;
|
|
780
|
+
flex: 1 0 0;
|
|
781
|
+
flex-wrap: wrap;
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
.sa-checkbox.sa-checkbox {
|
|
785
|
+
display: flex;
|
|
786
|
+
width: var(--sjs2-size-x300, 24px);
|
|
787
|
+
height: var(--sjs2-size-x300, 24px);
|
|
788
|
+
flex-direction: column;
|
|
789
|
+
justify-content: center;
|
|
790
|
+
align-items: center;
|
|
791
|
+
border: none;
|
|
792
|
+
outline: none;
|
|
793
|
+
padding: 0;
|
|
794
|
+
border-radius: var(--sjs2-radius-control-checkbox, 4px);
|
|
795
|
+
background: var(--sjs2-color-control-check-false-default-bg, #F5F5F5);
|
|
796
|
+
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;
|
|
797
|
+
}
|
|
798
|
+
.sa-checkbox.sa-checkbox:hover {
|
|
799
|
+
background: var(--sjs2-color-control-check-false-hovered-bg, rgba(28, 27, 32, 0.1));
|
|
800
|
+
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;
|
|
801
|
+
}
|
|
802
|
+
.sa-checkbox.sa-checkbox svg {
|
|
803
|
+
display: none;
|
|
804
|
+
width: var(--sjs2-size-x200, 16px);
|
|
805
|
+
height: var(--sjs2-size-x200, 16px);
|
|
806
|
+
justify-content: center;
|
|
807
|
+
align-items: center;
|
|
808
|
+
flex-shrink: 0;
|
|
809
|
+
}
|
|
810
|
+
.sa-checkbox.sa-checkbox use {
|
|
811
|
+
fill: var(--sjs2-color-control-check-true-default-icon, #FFF);
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.sa-checkbox--checked.sa-checkbox--checked {
|
|
815
|
+
background: var(--sjs2-color-control-check-true-default-bg, #19B394);
|
|
816
|
+
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;
|
|
817
|
+
}
|
|
818
|
+
.sa-checkbox--checked.sa-checkbox--checked:hover {
|
|
819
|
+
background: var(--sjs2-color-control-check-true-hovered-bg, #15987E);
|
|
820
|
+
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;
|
|
821
|
+
}
|
|
822
|
+
.sa-checkbox--checked.sa-checkbox--checked svg {
|
|
823
|
+
display: flex;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
.sa-tabulator__wrapper {
|
|
827
|
+
display: flex;
|
|
828
|
+
padding: var(--sjs2-spacing-x300, 24px);
|
|
829
|
+
flex-direction: column;
|
|
830
|
+
align-items: center;
|
|
831
|
+
gap: var(--sjs2-spacing-x300, 24px);
|
|
832
|
+
align-self: stretch;
|
|
833
|
+
background: var(--sjs2-color-utility-surface-dashboard, rgba(28, 27, 32, 0.05));
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
.sa-tabulator__table-container {
|
|
837
|
+
width: 100%;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.sa-tabulator__container {
|
|
841
|
+
max-width: 100%;
|
|
842
|
+
display: flex;
|
|
843
|
+
flex-direction: column;
|
|
844
|
+
align-items: flex-start;
|
|
845
|
+
flex: 1 0 0;
|
|
846
|
+
border-radius: var(--sjs2-radius-container-panel, 16px);
|
|
847
|
+
background: var(--sjs2-color-bg-basic-primary, #FFF);
|
|
848
|
+
/* sjs2/border-effect/surface/default */
|
|
849
|
+
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));
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.sa-tabulator__header {
|
|
853
|
+
display: flex;
|
|
854
|
+
padding: var(--sjs2-spacing-x300, 24px);
|
|
855
|
+
align-items: flex-start;
|
|
856
|
+
flex: 1 0 0;
|
|
857
|
+
align-self: stretch;
|
|
858
|
+
border-bottom: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
859
|
+
}
|
|
860
|
+
.sa-tabulator__header .sa-table__entries {
|
|
861
|
+
float: none;
|
|
862
|
+
line-height: 34px;
|
|
863
|
+
display: flex;
|
|
864
|
+
flex-grow: 1;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.sa-tabulator__footer {
|
|
868
|
+
display: flex;
|
|
869
|
+
padding: var(--sjs2-spacing-x200, 16px) var(--sjs2-spacing-x300, 24px);
|
|
870
|
+
justify-content: space-between;
|
|
871
|
+
align-items: center;
|
|
872
|
+
flex: 1 0 0;
|
|
873
|
+
align-self: stretch;
|
|
874
|
+
border-top: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
.sa-tabulator__header .sa-table__btn {
|
|
878
|
+
display: flex;
|
|
879
|
+
min-width: var(--sjs2-size-semantic-small, 40px);
|
|
880
|
+
justify-content: center;
|
|
881
|
+
align-items: center;
|
|
882
|
+
color: var(--sjs2-color-fg-brand-primary, #19B394);
|
|
883
|
+
text-align: center;
|
|
884
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
885
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
886
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
887
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
888
|
+
}
|
|
889
|
+
|
|
890
|
+
.tabulator-headers {
|
|
891
|
+
border-bottom: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.sa-tabulator__pagination-container {
|
|
895
|
+
display: flex;
|
|
896
|
+
align-items: center;
|
|
897
|
+
}
|
|
898
|
+
|
|
899
|
+
.sa-tabulator__filter-container {
|
|
900
|
+
margin-bottom: 20px;
|
|
901
|
+
}
|
|
902
|
+
.sa-tabulator__filter-container input {
|
|
903
|
+
box-sizing: border-box;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
.tabulator-col.tabulator-moving .sa-table__filter.sa-table__filter {
|
|
907
|
+
pointer-events: none;
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
.sa-tabulator .tabulator-page {
|
|
911
|
+
cursor: pointer;
|
|
912
|
+
outline: none;
|
|
913
|
+
border: none;
|
|
914
|
+
display: flex;
|
|
915
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
916
|
+
justify-content: center;
|
|
917
|
+
align-items: center;
|
|
918
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
919
|
+
background: transparent;
|
|
920
|
+
}
|
|
921
|
+
.sa-tabulator .tabulator-page:hover {
|
|
922
|
+
border-radius: var(--sjs2-radius-control-action-icon, 8px);
|
|
923
|
+
background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
924
|
+
}
|
|
925
|
+
.sa-tabulator .tabulator-page:focus-visible {
|
|
926
|
+
border-radius: var(--sjs2-radius-control-action, 8px);
|
|
927
|
+
border: unset;
|
|
928
|
+
outline: var(--sjs2-border-width-a11y, 4px) solid var(--sjs2-color-utility-a11y, rgba(102, 180, 252, 0.6));
|
|
929
|
+
background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
|
|
930
|
+
}
|
|
931
|
+
.sa-tabulator .tabulator-page:disabled {
|
|
932
|
+
cursor: default;
|
|
933
|
+
opacity: var(--sjs2-opacity-disabled, 0.25);
|
|
934
|
+
}
|
|
935
|
+
.sa-tabulator .tabulator-pages {
|
|
936
|
+
display: flex;
|
|
937
|
+
align-items: center;
|
|
938
|
+
}
|
|
939
|
+
.sa-tabulator .tabulator-pages .tabulator-page {
|
|
940
|
+
display: flex;
|
|
941
|
+
min-width: var(--sjs2-size-semantic-small, 40px);
|
|
942
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
943
|
+
justify-content: center;
|
|
944
|
+
align-items: center;
|
|
945
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
946
|
+
border-radius: var(--_ctr-survey-action-button-corner-radius, 8px);
|
|
947
|
+
background: var(--sjs2-color-bg-brand-tertiary, rgba(25, 179, 148, 0));
|
|
948
|
+
color: var(--sjs2-color-fg-basic-tertiary, rgba(28, 27, 32, 0.4));
|
|
949
|
+
text-align: center;
|
|
950
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
951
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
952
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
953
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
954
|
+
}
|
|
955
|
+
.sa-tabulator .tabulator-pages .tabulator-page:hover {
|
|
956
|
+
border-radius: var(--_ctr-survey-action-button-corner-radius, 8px);
|
|
957
|
+
background: var(--sjs2-color-bg-brand-tertiary-dim, rgba(25, 179, 148, 0.1));
|
|
958
|
+
}
|
|
959
|
+
.sa-tabulator .tabulator-page[aria-label~=Prev] {
|
|
960
|
+
display: inline-block;
|
|
961
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");
|
|
962
|
+
background-repeat: no-repeat, repeat;
|
|
963
|
+
background-size: 9px 100%;
|
|
964
|
+
white-space: nowrap;
|
|
965
|
+
overflow: hidden;
|
|
966
|
+
text-indent: -9999px;
|
|
967
|
+
width: 24px;
|
|
968
|
+
height: 24px;
|
|
969
|
+
flex-shrink: 0;
|
|
970
|
+
box-sizing: content-box;
|
|
971
|
+
background-position: center 0, center 5px;
|
|
972
|
+
transform: rotate(90deg);
|
|
973
|
+
}
|
|
974
|
+
.sa-tabulator .tabulator-page[aria-label~=Next] {
|
|
975
|
+
display: inline-block;
|
|
976
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");
|
|
977
|
+
background-repeat: no-repeat, repeat;
|
|
978
|
+
background-size: 9px 100%;
|
|
979
|
+
white-space: nowrap;
|
|
980
|
+
overflow: hidden;
|
|
981
|
+
text-indent: -9999px;
|
|
982
|
+
width: 24px;
|
|
983
|
+
height: 24px;
|
|
984
|
+
flex-shrink: 0;
|
|
985
|
+
box-sizing: content-box;
|
|
986
|
+
background-position: center 0, center 5px;
|
|
987
|
+
transform: rotate(270deg);
|
|
988
|
+
}
|
|
989
|
+
.sa-tabulator .tabulator-page[aria-label~=First] {
|
|
990
|
+
display: inline-block;
|
|
991
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A"), url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");
|
|
992
|
+
background-repeat: no-repeat, no-repeat;
|
|
993
|
+
background-size: 9px 100%;
|
|
994
|
+
white-space: nowrap;
|
|
995
|
+
overflow: hidden;
|
|
996
|
+
text-indent: -9999px;
|
|
997
|
+
width: 24px;
|
|
998
|
+
height: 24px;
|
|
999
|
+
flex-shrink: 0;
|
|
1000
|
+
box-sizing: content-box;
|
|
1001
|
+
background-position: center -3px, center 3px;
|
|
1002
|
+
transform: rotate(90deg);
|
|
1003
|
+
}
|
|
1004
|
+
.sa-tabulator .tabulator-page[aria-label~=Last] {
|
|
1005
|
+
display: inline-block;
|
|
1006
|
+
background-image: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A"), url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3Csvg version=%271.1%27 id=%27Layer_1%27 xmlns=%27http://www.w3.org/2000/svg%27 xmlns:xlink=%27http://www.w3.org/1999/xlink%27 x=%270px%27 y=%270px%27 viewBox=%270 0 10 10%27 style=%27enable-background:new 0 0 10 10;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:%23a0a0a0;%7D%0A%3C/style%3E%3Cpolygon class=%27st0%27 points=%272,2 0,4 5,9 10,4 8,2 5,5 %27/%3E%3C/svg%3E%0A");
|
|
1007
|
+
background-repeat: no-repeat, no-repeat;
|
|
1008
|
+
background-size: 9px 100%;
|
|
1009
|
+
white-space: nowrap;
|
|
1010
|
+
overflow: hidden;
|
|
1011
|
+
text-indent: -9999px;
|
|
1012
|
+
width: 24px;
|
|
1013
|
+
height: 24px;
|
|
1014
|
+
flex-shrink: 0;
|
|
1015
|
+
box-sizing: content-box;
|
|
1016
|
+
background-position: center -3px, center 3px;
|
|
1017
|
+
transform: rotate(270deg);
|
|
1018
|
+
}
|
|
1019
|
+
.sa-tabulator .tabulator-page.active {
|
|
1020
|
+
display: flex;
|
|
1021
|
+
min-width: var(--sjs2-size-semantic-small, 40px);
|
|
1022
|
+
padding: var(--sjs2-layout-control-action-small-box-vertical, 8px) var(--sjs2-layout-control-action-small-box-horizontal, 8px);
|
|
1023
|
+
justify-content: center;
|
|
1024
|
+
align-items: center;
|
|
1025
|
+
gap: var(--sjs2-layout-control-action-small-box-gap, 0);
|
|
1026
|
+
border-radius: var(--_ctr-survey-action-button-corner-radius, 8px);
|
|
1027
|
+
border: var(--sjs2-border-width-default, 1px) solid var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
1028
|
+
background: var(--sjs2-color-bg-positive-tertiary, rgba(25, 179, 148, 0));
|
|
1029
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
1030
|
+
text-align: center;
|
|
1031
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1032
|
+
font-weight: var(--sjs2-typography-font-weight-strong);
|
|
1033
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1034
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
1035
|
+
}
|
|
1036
|
+
.sa-tabulator .tabulator-page.active:hover {
|
|
1037
|
+
cursor: default;
|
|
1038
|
+
background-color: transparent;
|
|
1039
|
+
}
|
|
1040
|
+
.sa-tabulator .tabulator {
|
|
1041
|
+
border: none;
|
|
1042
|
+
background-color: transparent;
|
|
1043
|
+
}
|
|
1044
|
+
.sa-tabulator .tabulator .tabulator-table {
|
|
1045
|
+
background-color: transparent;
|
|
1046
|
+
}
|
|
1047
|
+
.sa-tabulator .tabulator .tabulator-row .tabulator-cell {
|
|
1048
|
+
padding: var(--sjs2-spacing-x200, 16px) var(--sjs2-spacing-x300, 24px);
|
|
1049
|
+
border-top: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
1050
|
+
border-right: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
1051
|
+
color: var(--sjs2-color-fg-basic-primary, #1C1B20);
|
|
1052
|
+
font-family: var(--sjs2-typography-font-family-text);
|
|
1053
|
+
font-weight: var(--sjs2-typography-font-weight-basic);
|
|
1054
|
+
font-size: var(--sjs2-typography-font-size-default);
|
|
1055
|
+
line-height: var(--sjs2-typography-line-height-default);
|
|
1056
|
+
}
|
|
1057
|
+
.sa-tabulator .tabulator .tabulator-row .tabulator-cell.sa-tabulator-cell__action-details {
|
|
1058
|
+
padding: var(--sjs2-spacing-x100, 8px);
|
|
1059
|
+
}
|
|
1060
|
+
.sa-tabulator .tabulator .tabulator-row .tabulator-cell.sa-tabulator-cell__action-select {
|
|
1061
|
+
padding: var(--sjs2-spacing-x200, 16px);
|
|
1062
|
+
}
|
|
1063
|
+
.sa-tabulator .tabulator .tabulator-header .tabulator-col {
|
|
1064
|
+
border-right: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
1065
|
+
}
|
|
1066
|
+
.sa-tabulator .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
|
1067
|
+
padding: 0;
|
|
1068
|
+
}
|
|
1069
|
+
.sa-tabulator .tabulator .tabulator-header {
|
|
1070
|
+
border-bottom: none;
|
|
1071
|
+
}
|
|
1072
|
+
.sa-tabulator .tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
|
|
1073
|
+
background-color: transparent;
|
|
1074
|
+
}
|
|
1075
|
+
.sa-tabulator .tabulator .tabulator-header,
|
|
1076
|
+
.sa-tabulator .tabulator .tabulator-header .tabulator-col {
|
|
1077
|
+
background-color: transparent;
|
|
1078
|
+
}
|
|
1079
|
+
.sa-tabulator .tabulator .tabulator-col.tabulator-moving {
|
|
1080
|
+
border: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
1081
|
+
}
|
|
1082
|
+
.sa-tabulator .tabulator .tabulator-header .tabulator-col:first-child {
|
|
1083
|
+
pointer-events: none;
|
|
1084
|
+
}
|
|
1085
|
+
.sa-tabulator .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-arrow {
|
|
1086
|
+
display: none;
|
|
1087
|
+
}
|
|
1088
|
+
.sa-tabulator .tabulator .tabulator-row {
|
|
1089
|
+
background: var(--sjs2-color-bg-basic-primary, #FFF);
|
|
1090
|
+
}
|
|
1091
|
+
.sa-tabulator .tabulator .tabulator-row.tabulator-selectable:hover {
|
|
1092
|
+
cursor: default;
|
|
1093
|
+
background: var(--sjs2-color-bg-basic-primary-dim, rgba(28, 27, 32, 0.05));
|
|
1094
|
+
}
|
|
1095
|
+
.sa-tabulator .tabulator .tabulator-row.tabulator-selectable.sa-table__detail-row:hover {
|
|
1096
|
+
background: var(--sjs2-color-bg-basic-secondary, rgba(28, 27, 32, 0.05));
|
|
1097
|
+
}
|
|
1098
|
+
.sa-tabulator .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
|
1099
|
+
border-top: none;
|
|
1100
|
+
}
|
|
1101
|
+
.sa-tabulator .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
|
|
1102
|
+
padding-right: 0;
|
|
1103
|
+
}
|
|
1104
|
+
.sa-tabulator .tabulator .tabulator-tableholder::-webkit-scrollbar {
|
|
1105
|
+
width: 8px;
|
|
1106
|
+
height: 8px;
|
|
1107
|
+
background-color: transparent;
|
|
1108
|
+
}
|
|
1109
|
+
.sa-tabulator .tabulator .tabulator-tableholder::-webkit-scrollbar-thumb {
|
|
1110
|
+
background-clip: padding-box;
|
|
1111
|
+
border-radius: var(--ctr-scrollbar-corner-radius, 1024px);
|
|
1112
|
+
background: var(--sjs2-color-utility-scrollbar, rgba(17, 16, 20, 0.15));
|
|
1113
|
+
}
|
|
1114
|
+
.sa-tabulator .tabulator .tabulator-tableholder::-webkit-scrollbar-track {
|
|
1115
|
+
background: transparent;
|
|
1116
|
+
}
|
|
1117
|
+
.sa-tabulator .tabulator .tabulator-tableholder::-webkit-scrollbar-corner {
|
|
1118
|
+
background: transparent;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
/*# sourceMappingURL=survey.analytics.tabulator.fontless.css.map*/
|