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
|
@@ -1,5 +1,5 @@
|
|
|
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
|
*/
|
|
@@ -57,9 +57,407 @@
|
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
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
|
+
}
|
|
60
456
|
.sa-table {
|
|
61
|
-
font-
|
|
62
|
-
font-
|
|
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);
|
|
63
461
|
}
|
|
64
462
|
.sa-table button {
|
|
65
463
|
cursor: pointer;
|
|
@@ -108,7 +506,7 @@
|
|
|
108
506
|
}
|
|
109
507
|
|
|
110
508
|
.sa-table__detail-row.sa-table__detail-row.sa-table__detail-row.sa-table__detail-row {
|
|
111
|
-
background-color
|
|
509
|
+
background: var(--sjs2-color-bg-basic-secondary, rgba(28, 27, 32, 0.05));
|
|
112
510
|
}
|
|
113
511
|
|
|
114
512
|
.sa-table__detail-table.sa-table__detail-table {
|
|
@@ -119,29 +517,34 @@
|
|
|
119
517
|
}
|
|
120
518
|
|
|
121
519
|
.sa-table__detail {
|
|
122
|
-
border-top: 1px
|
|
520
|
+
border-top: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
123
521
|
}
|
|
124
522
|
.sa-table__detail td {
|
|
125
523
|
box-sizing: border-box;
|
|
126
|
-
padding: 20px;
|
|
127
524
|
border-left: none;
|
|
128
525
|
border-right: none;
|
|
129
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);
|
|
130
533
|
}
|
|
131
534
|
.sa-table__detail td:first-child {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
.sa-table__detail td:nth-child(2) {
|
|
137
|
-
width: 208px;
|
|
535
|
+
display: flex;
|
|
536
|
+
padding: var(--sjs2-spacing-x100, 8px);
|
|
537
|
+
align-items: flex-start;
|
|
538
|
+
align-self: stretch;
|
|
138
539
|
}
|
|
139
540
|
|
|
140
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);
|
|
141
546
|
height: 34px;
|
|
142
547
|
width: 154px;
|
|
143
|
-
font-size: var(--root-font-size, 14px);
|
|
144
|
-
font-weight: bold;
|
|
145
548
|
background-color: transparent;
|
|
146
549
|
box-sizing: border-box;
|
|
147
550
|
border: solid 2px;
|
|
@@ -179,29 +582,115 @@ a.sa-table__btn {
|
|
|
179
582
|
}
|
|
180
583
|
|
|
181
584
|
.sa-table__svg-button {
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
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);
|
|
185
590
|
border: none;
|
|
591
|
+
box-sizing: content-box;
|
|
186
592
|
}
|
|
187
|
-
.sa-table__svg-button
|
|
188
|
-
|
|
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));
|
|
189
596
|
}
|
|
190
|
-
.sa-table__svg-button:
|
|
191
|
-
|
|
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));
|
|
192
601
|
}
|
|
193
602
|
.sa-table__svg-button svg {
|
|
194
|
-
width:
|
|
195
|
-
height:
|
|
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;
|
|
196
686
|
}
|
|
197
687
|
|
|
198
688
|
.sa-table__action-container {
|
|
199
|
-
|
|
200
|
-
|
|
689
|
+
display: flex;
|
|
690
|
+
align-items: center;
|
|
691
|
+
align-self: stretch;
|
|
201
692
|
}
|
|
202
693
|
.sa-table__action-container .sa-table__svg-button {
|
|
203
|
-
float: right;
|
|
204
|
-
margin: 0 0 13px 13px;
|
|
205
694
|
pointer-events: all;
|
|
206
695
|
}
|
|
207
696
|
.sa-table__action-container:after {
|
|
@@ -212,12 +701,7 @@ a.sa-table__btn {
|
|
|
212
701
|
.sa-table__action-container .sa-table__drag-button {
|
|
213
702
|
float: left;
|
|
214
703
|
cursor: move;
|
|
215
|
-
|
|
216
|
-
.sa-table__action-container .sa-table__drag-button use {
|
|
217
|
-
fill: var(--main-color, #1ab394);
|
|
218
|
-
}
|
|
219
|
-
.sa-table__action-container .sa-table__drag-button:hover use {
|
|
220
|
-
fill: var(--main-color, #1ab394);
|
|
704
|
+
margin-inline-end: auto;
|
|
221
705
|
}
|
|
222
706
|
|
|
223
707
|
.sa-table__global-filter.sa-table__global-filter,
|
|
@@ -234,46 +718,47 @@ a.sa-table__btn {
|
|
|
234
718
|
|
|
235
719
|
.sa-table__filter.sa-table__filter {
|
|
236
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);
|
|
237
735
|
}
|
|
238
736
|
|
|
239
|
-
.sa-
|
|
240
|
-
|
|
241
|
-
background-image: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 24.0.1, 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 16 16%27 style=%27enable-background:new 0 0 16 16;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:rgba%28159, 159, 159, 0.5%29;%7D .st1%7Bfill:rgba%28159, 159, 159, 0.5%29;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class=%27st1%27 d=%27M8,2.03C3.63,2.03,0,8,0,8s3.63,6.03,8,6.03s8-6,8-6S12.37,2.03,8,2.03z M8,12c-2.58,0-5.13-2.81-6-4 c1.07-1.47,3.61-4,6-4c2.58,0,5.13,2.81,6,4C12.93,9.47,10.39,12,8,12z%27/%3E%3Ccircle class=%27st1%27 cx=%278%27 cy=%278%27 r=%273%27/%3E%3C/g%3E%3C/svg%3E"), 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");
|
|
242
|
-
background-repeat: no-repeat, no-repeat;
|
|
243
|
-
background-position: left 0.7em top 50%, right 0.7em top 50%;
|
|
244
|
-
background-size: 1em 100%, 0.57em 100%;
|
|
245
|
-
padding-left: 35px;
|
|
246
|
-
border: solid 1px #d4d4d4;
|
|
247
|
-
pointer-events: all;
|
|
248
|
-
margin-left: 20px;
|
|
249
|
-
}
|
|
250
|
-
.sa-table__show-column.sa-table__show-column:focus {
|
|
251
|
-
background-image: url("data:image/svg+xml,%3C%3Fxml version=%271.0%27 encoding=%27utf-8%27%3F%3E%3C%21-- Generator: Adobe Illustrator 24.0.1, 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 16 16%27 style=%27enable-background:new 0 0 16 16;%27 xml:space=%27preserve%27%3E%3Cstyle type=%27text/css%27%3E .st0%7Bfill:rgba%28159, 159, 159, 0.5%29;%7D .st1%7Bfill:rgba%28159, 159, 159, 0.5%29;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class=%27st1%27 d=%27M8,2.03C3.63,2.03,0,8,0,8s3.63,6.03,8,6.03s8-6,8-6S12.37,2.03,8,2.03z M8,12c-2.58,0-5.13-2.81-6-4 c1.07-1.47,3.61-4,6-4c2.58,0,5.13,2.81,6,4C12.93,9.47,10.39,12,8,12z%27/%3E%3Ccircle class=%27st1%27 cx=%278%27 cy=%278%27 r=%273%27/%3E%3C/g%3E%3C/svg%3E"), 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") !important;
|
|
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);
|
|
252
739
|
}
|
|
253
740
|
|
|
254
741
|
.sa-table__entries {
|
|
255
|
-
|
|
256
|
-
|
|
742
|
+
display: flex;
|
|
743
|
+
justify-content: flex-end;
|
|
744
|
+
align-items: center;
|
|
745
|
+
gap: var(--sjs2-spacing-x100, 8px);
|
|
257
746
|
}
|
|
258
747
|
|
|
259
748
|
.sa-table__entries-label {
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
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);
|
|
265
754
|
}
|
|
266
755
|
|
|
267
|
-
.sa-table__entries-
|
|
268
|
-
|
|
756
|
+
.sa-table__entries-value .sa-action-dropdown-list {
|
|
757
|
+
bottom: 48px;
|
|
269
758
|
}
|
|
270
759
|
|
|
271
760
|
.sa-table__detail-row {
|
|
272
|
-
background-color
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.sa-table__detail-table {
|
|
276
|
-
background-color: #f7f7f7;
|
|
761
|
+
background: var(--sjs2-color-bg-basic-secondary, rgba(28, 27, 32, 0.05));
|
|
277
762
|
}
|
|
278
763
|
|
|
279
764
|
.sa-table input.sa-table__row-extension {
|
|
@@ -281,37 +766,96 @@ a.sa-table__btn {
|
|
|
281
766
|
}
|
|
282
767
|
|
|
283
768
|
.sa-table__row-extension + .sa-table__row-extension {
|
|
284
|
-
margin-left: 10px;
|
|
285
769
|
vertical-align: middle;
|
|
286
770
|
}
|
|
287
771
|
|
|
772
|
+
.sa-table__row-extension {
|
|
773
|
+
margin: auto;
|
|
774
|
+
}
|
|
775
|
+
|
|
288
776
|
.sa-table__header-extensions {
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
777
|
+
display: flex;
|
|
778
|
+
align-items: center;
|
|
779
|
+
gap: 12px;
|
|
780
|
+
flex: 1 0 0;
|
|
781
|
+
flex-wrap: wrap;
|
|
292
782
|
}
|
|
293
783
|
|
|
294
|
-
.sa-
|
|
295
|
-
|
|
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);
|
|
296
812
|
}
|
|
297
813
|
|
|
298
|
-
.sa-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
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 {
|
|
302
823
|
display: flex;
|
|
303
|
-
flex-direction: row;
|
|
304
|
-
gap: 10px;
|
|
305
|
-
flex-wrap: wrap;
|
|
306
824
|
}
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
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));
|
|
311
834
|
}
|
|
312
|
-
|
|
835
|
+
|
|
836
|
+
.sa-tabulator__table-container {
|
|
837
|
+
width: 100%;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.sa-tabulator__container {
|
|
841
|
+
max-width: 100%;
|
|
313
842
|
display: flex;
|
|
314
|
-
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);
|
|
315
859
|
}
|
|
316
860
|
.sa-tabulator__header .sa-table__entries {
|
|
317
861
|
float: none;
|
|
@@ -320,18 +864,36 @@ a.sa-table__btn {
|
|
|
320
864
|
flex-grow: 1;
|
|
321
865
|
}
|
|
322
866
|
|
|
323
|
-
.sa-
|
|
324
|
-
|
|
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);
|
|
325
875
|
}
|
|
326
|
-
|
|
327
|
-
|
|
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);
|
|
328
892
|
}
|
|
329
893
|
|
|
330
894
|
.sa-tabulator__pagination-container {
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
min-width: 200px;
|
|
334
|
-
text-align: right;
|
|
895
|
+
display: flex;
|
|
896
|
+
align-items: center;
|
|
335
897
|
}
|
|
336
898
|
|
|
337
899
|
.sa-tabulator__filter-container {
|
|
@@ -346,95 +908,160 @@ a.sa-table__btn {
|
|
|
346
908
|
}
|
|
347
909
|
|
|
348
910
|
.sa-tabulator .tabulator-page {
|
|
349
|
-
margin-right: 15px;
|
|
350
|
-
padding: 1px;
|
|
351
|
-
vertical-align: middle;
|
|
352
|
-
color: #a0a0a0;
|
|
353
911
|
cursor: pointer;
|
|
354
912
|
outline: none;
|
|
355
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;
|
|
356
920
|
}
|
|
357
|
-
.sa-tabulator .tabulator-page:
|
|
358
|
-
|
|
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));
|
|
359
930
|
}
|
|
360
931
|
.sa-tabulator .tabulator-page:disabled {
|
|
361
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));
|
|
362
958
|
}
|
|
363
959
|
.sa-tabulator .tabulator-page[aria-label~=Prev] {
|
|
364
960
|
display: inline-block;
|
|
365
|
-
background: transparent;
|
|
366
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");
|
|
367
962
|
background-repeat: no-repeat, repeat;
|
|
368
963
|
background-size: 9px 100%;
|
|
369
|
-
height: 10px;
|
|
370
|
-
width: 10px;
|
|
371
964
|
white-space: nowrap;
|
|
372
965
|
overflow: hidden;
|
|
373
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;
|
|
374
972
|
transform: rotate(90deg);
|
|
375
|
-
margin-right: 20px;
|
|
376
973
|
}
|
|
377
974
|
.sa-tabulator .tabulator-page[aria-label~=Next] {
|
|
378
975
|
display: inline-block;
|
|
379
|
-
background: transparent;
|
|
380
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");
|
|
381
977
|
background-repeat: no-repeat, repeat;
|
|
382
978
|
background-size: 9px 100%;
|
|
383
|
-
height: 10px;
|
|
384
|
-
width: 10px;
|
|
385
979
|
white-space: nowrap;
|
|
386
980
|
overflow: hidden;
|
|
387
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;
|
|
388
987
|
transform: rotate(270deg);
|
|
389
|
-
margin-left: 20px;
|
|
390
|
-
margin-right: 0;
|
|
391
988
|
}
|
|
392
989
|
.sa-tabulator .tabulator-page[aria-label~=First] {
|
|
393
990
|
display: inline-block;
|
|
394
|
-
background: transparent;
|
|
395
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");
|
|
396
992
|
background-repeat: no-repeat, no-repeat;
|
|
397
993
|
background-size: 9px 100%;
|
|
398
|
-
background-position: left 0, left 5px;
|
|
399
|
-
height: 20px;
|
|
400
|
-
width: 10px;
|
|
401
994
|
white-space: nowrap;
|
|
402
995
|
overflow: hidden;
|
|
403
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;
|
|
404
1002
|
transform: rotate(90deg);
|
|
405
|
-
margin-right: 10px;
|
|
406
1003
|
}
|
|
407
1004
|
.sa-tabulator .tabulator-page[aria-label~=Last] {
|
|
408
1005
|
display: inline-block;
|
|
409
|
-
background: transparent;
|
|
410
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");
|
|
411
1007
|
background-repeat: no-repeat, no-repeat;
|
|
412
1008
|
background-size: 9px 100%;
|
|
413
|
-
background-position: left 0, left 5px;
|
|
414
|
-
height: 20px;
|
|
415
|
-
width: 10px;
|
|
416
1009
|
white-space: nowrap;
|
|
417
1010
|
overflow: hidden;
|
|
418
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;
|
|
419
1017
|
transform: rotate(270deg);
|
|
420
|
-
margin-left: 10px;
|
|
421
1018
|
}
|
|
422
1019
|
.sa-tabulator .tabulator-page.active {
|
|
423
|
-
|
|
424
|
-
|
|
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;
|
|
425
1039
|
}
|
|
426
1040
|
.sa-tabulator .tabulator {
|
|
427
|
-
border:
|
|
428
|
-
background-color:
|
|
1041
|
+
border: none;
|
|
1042
|
+
background-color: transparent;
|
|
1043
|
+
}
|
|
1044
|
+
.sa-tabulator .tabulator .tabulator-table {
|
|
1045
|
+
background-color: transparent;
|
|
429
1046
|
}
|
|
430
1047
|
.sa-tabulator .tabulator .tabulator-row .tabulator-cell {
|
|
431
|
-
padding:
|
|
432
|
-
border-top: 1px
|
|
433
|
-
border-right: 1px
|
|
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);
|
|
434
1062
|
}
|
|
435
1063
|
.sa-tabulator .tabulator .tabulator-header .tabulator-col {
|
|
436
|
-
|
|
437
|
-
border-right: 1px solid #ddd;
|
|
1064
|
+
border-right: var(--sjs2-border-width-default, 1px) dashed var(--sjs2-color-border-basic-secondary, #D4D4D4);
|
|
438
1065
|
}
|
|
439
1066
|
.sa-tabulator .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
|
440
1067
|
padding: 0;
|
|
@@ -443,11 +1070,14 @@ a.sa-table__btn {
|
|
|
443
1070
|
border-bottom: none;
|
|
444
1071
|
}
|
|
445
1072
|
.sa-tabulator .tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
|
|
446
|
-
background-color:
|
|
1073
|
+
background-color: transparent;
|
|
447
1074
|
}
|
|
448
1075
|
.sa-tabulator .tabulator .tabulator-header,
|
|
449
1076
|
.sa-tabulator .tabulator .tabulator-header .tabulator-col {
|
|
450
|
-
background-color:
|
|
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);
|
|
451
1081
|
}
|
|
452
1082
|
.sa-tabulator .tabulator .tabulator-header .tabulator-col:first-child {
|
|
453
1083
|
pointer-events: none;
|
|
@@ -455,15 +1085,15 @@ a.sa-table__btn {
|
|
|
455
1085
|
.sa-tabulator .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-arrow {
|
|
456
1086
|
display: none;
|
|
457
1087
|
}
|
|
1088
|
+
.sa-tabulator .tabulator .tabulator-row {
|
|
1089
|
+
background: var(--sjs2-color-bg-basic-primary, #FFF);
|
|
1090
|
+
}
|
|
458
1091
|
.sa-tabulator .tabulator .tabulator-row.tabulator-selectable:hover {
|
|
459
1092
|
cursor: default;
|
|
460
|
-
background-color
|
|
1093
|
+
background: var(--sjs2-color-bg-basic-primary-dim, rgba(28, 27, 32, 0.05));
|
|
461
1094
|
}
|
|
462
1095
|
.sa-tabulator .tabulator .tabulator-row.tabulator-selectable.sa-table__detail-row:hover {
|
|
463
|
-
background-color
|
|
464
|
-
}
|
|
465
|
-
.sa-tabulator .tabulator .tabulator-row.tabulator-row-even {
|
|
466
|
-
background-color: #ffffff;
|
|
1096
|
+
background: var(--sjs2-color-bg-basic-secondary, rgba(28, 27, 32, 0.05));
|
|
467
1097
|
}
|
|
468
1098
|
.sa-tabulator .tabulator .tabulator-header .tabulator-col .tabulator-col-content {
|
|
469
1099
|
border-top: none;
|
|
@@ -472,12 +1102,242 @@ a.sa-table__btn {
|
|
|
472
1102
|
padding-right: 0;
|
|
473
1103
|
}
|
|
474
1104
|
.sa-tabulator .tabulator .tabulator-tableholder::-webkit-scrollbar {
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
background-color:
|
|
1105
|
+
width: 8px;
|
|
1106
|
+
height: 8px;
|
|
1107
|
+
background-color: transparent;
|
|
478
1108
|
}
|
|
479
1109
|
.sa-tabulator .tabulator .tabulator-tableholder::-webkit-scrollbar-thumb {
|
|
480
|
-
background:
|
|
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
|
+
!*** 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/entries/fonts.scss ***!
|
|
1122
|
+
\*************************************************************************************************************************************************************************/
|
|
1123
|
+
/* cyrillic-ext */
|
|
1124
|
+
@font-face {
|
|
1125
|
+
font-family: "Open Sans";
|
|
1126
|
+
font-style: normal;
|
|
1127
|
+
font-weight: 400;
|
|
1128
|
+
font-stretch: 100%;
|
|
1129
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
|
|
1130
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
1131
|
+
}
|
|
1132
|
+
/* cyrillic */
|
|
1133
|
+
@font-face {
|
|
1134
|
+
font-family: "Open Sans";
|
|
1135
|
+
font-style: normal;
|
|
1136
|
+
font-weight: 400;
|
|
1137
|
+
font-stretch: 100%;
|
|
1138
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
|
|
1139
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
1140
|
+
}
|
|
1141
|
+
/* greek-ext */
|
|
1142
|
+
@font-face {
|
|
1143
|
+
font-family: "Open Sans";
|
|
1144
|
+
font-style: normal;
|
|
1145
|
+
font-weight: 400;
|
|
1146
|
+
font-stretch: 100%;
|
|
1147
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
|
|
1148
|
+
unicode-range: U+1F00-1FFF;
|
|
1149
|
+
}
|
|
1150
|
+
/* greek */
|
|
1151
|
+
@font-face {
|
|
1152
|
+
font-family: "Open Sans";
|
|
1153
|
+
font-style: normal;
|
|
1154
|
+
font-weight: 400;
|
|
1155
|
+
font-stretch: 100%;
|
|
1156
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
|
|
1157
|
+
unicode-range: U+0370-03FF;
|
|
1158
|
+
}
|
|
1159
|
+
/* hebrew */
|
|
1160
|
+
@font-face {
|
|
1161
|
+
font-family: "Open Sans";
|
|
1162
|
+
font-style: normal;
|
|
1163
|
+
font-weight: 400;
|
|
1164
|
+
font-stretch: 100%;
|
|
1165
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
|
|
1166
|
+
unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
|
1167
|
+
}
|
|
1168
|
+
/* vietnamese */
|
|
1169
|
+
@font-face {
|
|
1170
|
+
font-family: "Open Sans";
|
|
1171
|
+
font-style: normal;
|
|
1172
|
+
font-weight: 400;
|
|
1173
|
+
font-stretch: 100%;
|
|
1174
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
|
|
1175
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
|
1176
|
+
}
|
|
1177
|
+
/* latin-ext */
|
|
1178
|
+
@font-face {
|
|
1179
|
+
font-family: "Open Sans";
|
|
1180
|
+
font-style: normal;
|
|
1181
|
+
font-weight: 400;
|
|
1182
|
+
font-stretch: 100%;
|
|
1183
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
|
|
1184
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
1185
|
+
}
|
|
1186
|
+
/* latin */
|
|
1187
|
+
@font-face {
|
|
1188
|
+
font-family: "Open Sans";
|
|
1189
|
+
font-style: normal;
|
|
1190
|
+
font-weight: 400;
|
|
1191
|
+
font-stretch: 100%;
|
|
1192
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
|
|
1193
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
1194
|
+
}
|
|
1195
|
+
/* cyrillic-ext */
|
|
1196
|
+
@font-face {
|
|
1197
|
+
font-family: "Open Sans";
|
|
1198
|
+
font-style: normal;
|
|
1199
|
+
font-weight: 600;
|
|
1200
|
+
font-stretch: 100%;
|
|
1201
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
|
|
1202
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
1203
|
+
}
|
|
1204
|
+
/* cyrillic */
|
|
1205
|
+
@font-face {
|
|
1206
|
+
font-family: "Open Sans";
|
|
1207
|
+
font-style: normal;
|
|
1208
|
+
font-weight: 600;
|
|
1209
|
+
font-stretch: 100%;
|
|
1210
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
|
|
1211
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
1212
|
+
}
|
|
1213
|
+
/* greek-ext */
|
|
1214
|
+
@font-face {
|
|
1215
|
+
font-family: "Open Sans";
|
|
1216
|
+
font-style: normal;
|
|
1217
|
+
font-weight: 600;
|
|
1218
|
+
font-stretch: 100%;
|
|
1219
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
|
|
1220
|
+
unicode-range: U+1F00-1FFF;
|
|
1221
|
+
}
|
|
1222
|
+
/* greek */
|
|
1223
|
+
@font-face {
|
|
1224
|
+
font-family: "Open Sans";
|
|
1225
|
+
font-style: normal;
|
|
1226
|
+
font-weight: 600;
|
|
1227
|
+
font-stretch: 100%;
|
|
1228
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
|
|
1229
|
+
unicode-range: U+0370-03FF;
|
|
1230
|
+
}
|
|
1231
|
+
/* hebrew */
|
|
1232
|
+
@font-face {
|
|
1233
|
+
font-family: "Open Sans";
|
|
1234
|
+
font-style: normal;
|
|
1235
|
+
font-weight: 600;
|
|
1236
|
+
font-stretch: 100%;
|
|
1237
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
|
|
1238
|
+
unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
|
1239
|
+
}
|
|
1240
|
+
/* vietnamese */
|
|
1241
|
+
@font-face {
|
|
1242
|
+
font-family: "Open Sans";
|
|
1243
|
+
font-style: normal;
|
|
1244
|
+
font-weight: 600;
|
|
1245
|
+
font-stretch: 100%;
|
|
1246
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
|
|
1247
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
|
1248
|
+
}
|
|
1249
|
+
/* latin-ext */
|
|
1250
|
+
@font-face {
|
|
1251
|
+
font-family: "Open Sans";
|
|
1252
|
+
font-style: normal;
|
|
1253
|
+
font-weight: 600;
|
|
1254
|
+
font-stretch: 100%;
|
|
1255
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
|
|
1256
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
1257
|
+
}
|
|
1258
|
+
/* latin */
|
|
1259
|
+
@font-face {
|
|
1260
|
+
font-family: "Open Sans";
|
|
1261
|
+
font-style: normal;
|
|
1262
|
+
font-weight: 600;
|
|
1263
|
+
font-stretch: 100%;
|
|
1264
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
|
|
1265
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
1266
|
+
}
|
|
1267
|
+
/* cyrillic-ext */
|
|
1268
|
+
@font-face {
|
|
1269
|
+
font-family: "Open Sans";
|
|
1270
|
+
font-style: normal;
|
|
1271
|
+
font-weight: 700;
|
|
1272
|
+
font-stretch: 100%;
|
|
1273
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
|
|
1274
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
|
|
1275
|
+
}
|
|
1276
|
+
/* cyrillic */
|
|
1277
|
+
@font-face {
|
|
1278
|
+
font-family: "Open Sans";
|
|
1279
|
+
font-style: normal;
|
|
1280
|
+
font-weight: 700;
|
|
1281
|
+
font-stretch: 100%;
|
|
1282
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
|
|
1283
|
+
unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
1284
|
+
}
|
|
1285
|
+
/* greek-ext */
|
|
1286
|
+
@font-face {
|
|
1287
|
+
font-family: "Open Sans";
|
|
1288
|
+
font-style: normal;
|
|
1289
|
+
font-weight: 700;
|
|
1290
|
+
font-stretch: 100%;
|
|
1291
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
|
|
1292
|
+
unicode-range: U+1F00-1FFF;
|
|
1293
|
+
}
|
|
1294
|
+
/* greek */
|
|
1295
|
+
@font-face {
|
|
1296
|
+
font-family: "Open Sans";
|
|
1297
|
+
font-style: normal;
|
|
1298
|
+
font-weight: 700;
|
|
1299
|
+
font-stretch: 100%;
|
|
1300
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
|
|
1301
|
+
unicode-range: U+0370-03FF;
|
|
1302
|
+
}
|
|
1303
|
+
/* hebrew */
|
|
1304
|
+
@font-face {
|
|
1305
|
+
font-family: "Open Sans";
|
|
1306
|
+
font-style: normal;
|
|
1307
|
+
font-weight: 700;
|
|
1308
|
+
font-stretch: 100%;
|
|
1309
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
|
|
1310
|
+
unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
|
|
1311
|
+
}
|
|
1312
|
+
/* vietnamese */
|
|
1313
|
+
@font-face {
|
|
1314
|
+
font-family: "Open Sans";
|
|
1315
|
+
font-style: normal;
|
|
1316
|
+
font-weight: 700;
|
|
1317
|
+
font-stretch: 100%;
|
|
1318
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
|
|
1319
|
+
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
|
|
1320
|
+
}
|
|
1321
|
+
/* latin-ext */
|
|
1322
|
+
@font-face {
|
|
1323
|
+
font-family: "Open Sans";
|
|
1324
|
+
font-style: normal;
|
|
1325
|
+
font-weight: 700;
|
|
1326
|
+
font-stretch: 100%;
|
|
1327
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
|
|
1328
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
1329
|
+
}
|
|
1330
|
+
/* latin */
|
|
1331
|
+
@font-face {
|
|
1332
|
+
font-family: "Open Sans";
|
|
1333
|
+
font-style: normal;
|
|
1334
|
+
font-weight: 700;
|
|
1335
|
+
font-stretch: 100%;
|
|
1336
|
+
src: url(https://fonts.gstatic.com/s/opensans/v34/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
|
|
1337
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
1338
|
+
}
|
|
1339
|
+
:root {
|
|
1340
|
+
--sjs-font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
481
1341
|
}
|
|
482
1342
|
|
|
483
1343
|
/*# sourceMappingURL=survey.analytics.tabulator.css.map*/
|