@geotab/zenith 3.2.1 → 3.3.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/README.md +25 -1
- package/dist/card/card.d.ts +3 -0
- package/dist/card/card.js +15 -5
- package/dist/card/components/cardToggle/cardToggle.d.ts +5 -0
- package/dist/card/components/cardToggle/cardToggle.js +7 -0
- package/dist/card/components/title.js +3 -3
- package/dist/cardContainer/cardContainer.d.ts +2 -1
- package/dist/cardContainer/cardContainer.js +4 -3
- package/dist/chart/barChart/getDefaultDatasetStyle.js +8 -6
- package/dist/chart/lineChart/getDatasetColor.js +8 -6
- package/dist/chart/lineChart/useSummary.js +1 -1
- package/dist/chart/pieChart/getDefaultDatasetStyle.js +8 -6
- package/dist/chart/plugins/linePlugin/getInterpolatedValue.js +1 -1
- package/dist/chart/plugins/linePlugin/linePlugin.js +16 -4
- package/dist/commonHelpers/hooks/useEscape.js +4 -0
- package/dist/commonHelpers/hooks/usePillSize.d.ts +2 -1
- package/dist/commonHelpers/hooks/usePillSize.js +6 -3
- package/dist/commonStyles/colors/colors.less +9 -0
- package/dist/dataFeed/dataFeed.d.ts +2 -1
- package/dist/dataFeed/dataFeed.js +18 -3
- package/dist/dataFeed/dataFeedColumnsItems.d.ts +2 -1
- package/dist/dataFeed/dataFeedColumnsItems.js +6 -4
- package/dist/dataGrid/cell/cell.d.ts +2 -1
- package/dist/dataGrid/cell/cell.js +2 -1
- package/dist/dataGrid/dataGrid.d.ts +3 -1
- package/dist/dataGrid/dataGrid.js +7 -2
- package/dist/dataGrid/row/row.d.ts +3 -1
- package/dist/dataGrid/row/row.js +3 -3
- package/dist/dataGrid/withFlexibleColumns/components/columnSettingsSidePanel.js +8 -4
- package/dist/divider/divider.d.ts +5 -5
- package/dist/divider/divider.js +6 -2
- package/dist/filtersBar/components/filtersBarPeriodPicker/filtersBarPeriodPicker.js +2 -2
- package/dist/footerButtons/footerButtons.d.ts +4 -0
- package/dist/footerButtons/footerButtons.js +4 -6
- package/dist/groupsFilterRaw/groupsFilterRaw.js +1 -0
- package/dist/index.css +475 -255
- package/dist/index.d.ts +3 -1
- package/dist/index.js +20 -18
- package/dist/lineChart/utils.js +2 -9
- package/dist/list/listItem/listItem.js +26 -0
- package/dist/mobileSheet/components/mobileSheetFooter.d.ts +1 -0
- package/dist/mobileSheet/components/mobileSheetFooter.js +1 -1
- package/dist/mobileSheet/mobileSheet.js +1 -1
- package/dist/pill/components/pillActionable/pillActionable.js +5 -4
- package/dist/pill/components/pillNonActionable/pillNonActionable.js +11 -5
- package/dist/pill/interfaces/pillActionable.interface.d.ts +1 -0
- package/dist/pill/interfaces/pillNonActionable.interface.d.ts +1 -0
- package/dist/pillExpandable/pillExpandable.js +6 -6
- package/dist/rangeRaw/rangeRaw.js +1 -0
- package/dist/selectRaw/selectRaw.js +6 -3
- package/dist/sidePanel/sidePanel.d.ts +1 -1
- package/dist/sidePanel/sidePanel.js +7 -3
- package/dist/table/children/tableDetailPanel.d.ts +9 -0
- package/dist/table/children/tableDetailPanel.js +6 -0
- package/dist/table/children/useTableChildren.d.ts +2 -1
- package/dist/table/children/useTableChildren.js +17 -2
- package/dist/table/detailPanel/detailPanel.d.ts +4 -0
- package/dist/table/detailPanel/detailPanel.js +140 -0
- package/dist/table/detailPanel/detailPanelHeader.d.ts +4 -0
- package/dist/table/detailPanel/detailPanelHeader.js +105 -0
- package/dist/table/detailPanel/interfaces.d.ts +8 -0
- package/dist/table/detailPanel/interfaces.js +2 -0
- package/dist/table/table.d.ts +6 -1
- package/dist/table/table.js +248 -68
- package/dist/utils/localization/translations/cs.json +3 -1
- package/dist/utils/localization/translations/da-DK.json +3 -1
- package/dist/utils/localization/translations/de.json +3 -1
- package/dist/utils/localization/translations/en-json.d.ts +315 -0
- package/dist/utils/localization/translations/en-json.js +318 -0
- package/dist/utils/localization/translations/en.json +5 -1
- package/dist/utils/localization/translations/es.json +3 -1
- package/dist/utils/localization/translations/fi-FI.json +3 -1
- package/dist/utils/localization/translations/fr-FR.json +3 -1
- package/dist/utils/localization/translations/fr.json +3 -1
- package/dist/utils/localization/translations/hu-HU.json +3 -1
- package/dist/utils/localization/translations/id.json +3 -1
- package/dist/utils/localization/translations/it.json +3 -1
- package/dist/utils/localization/translations/ja.json +3 -1
- package/dist/utils/localization/translations/ko-KR.json +3 -1
- package/dist/utils/localization/translations/ms.json +3 -1
- package/dist/utils/localization/translations/nb-NO.json +3 -1
- package/dist/utils/localization/translations/nl.json +3 -1
- package/dist/utils/localization/translations/pl.json +3 -1
- package/dist/utils/localization/translations/pt-BR.json +3 -1
- package/dist/utils/localization/translations/sk-SK.json +3 -1
- package/dist/utils/localization/translations/sv.json +3 -1
- package/dist/utils/localization/translations/th.json +3 -1
- package/dist/utils/localization/translations/tr.json +3 -1
- package/dist/utils/localization/translations/zh-Hans.json +3 -1
- package/dist/utils/localization/translations/zh-TW.json +3 -1
- package/esm/card/card.d.ts +3 -0
- package/esm/card/card.js +15 -5
- package/esm/card/components/cardToggle/cardToggle.d.ts +5 -0
- package/esm/card/components/cardToggle/cardToggle.js +3 -0
- package/esm/card/components/title.js +3 -3
- package/esm/cardContainer/cardContainer.d.ts +2 -1
- package/esm/cardContainer/cardContainer.js +4 -3
- package/esm/chart/barChart/getDefaultDatasetStyle.js +8 -6
- package/esm/chart/lineChart/getDatasetColor.js +8 -6
- package/esm/chart/lineChart/useSummary.js +1 -1
- package/esm/chart/pieChart/getDefaultDatasetStyle.js +8 -6
- package/esm/chart/plugins/linePlugin/getInterpolatedValue.js +1 -1
- package/esm/chart/plugins/linePlugin/linePlugin.js +16 -4
- package/esm/commonHelpers/hooks/useEscape.js +4 -0
- package/esm/commonHelpers/hooks/usePillSize.d.ts +2 -1
- package/esm/commonHelpers/hooks/usePillSize.js +6 -3
- package/esm/commonStyles/colors/colorsConstant.d.ts +6 -0
- package/esm/commonStyles/colors/colorsConstant.js +50 -0
- package/esm/dataFeed/dataFeed.d.ts +2 -1
- package/esm/dataFeed/dataFeed.js +18 -3
- package/esm/dataFeed/dataFeedColumnsItems.d.ts +2 -1
- package/esm/dataFeed/dataFeedColumnsItems.js +6 -4
- package/esm/dataGrid/cell/cell.d.ts +2 -1
- package/esm/dataGrid/cell/cell.js +2 -1
- package/esm/dataGrid/dataGrid.d.ts +3 -1
- package/esm/dataGrid/dataGrid.js +7 -2
- package/esm/dataGrid/row/row.d.ts +3 -1
- package/esm/dataGrid/row/row.js +3 -3
- package/esm/dataGrid/withFlexibleColumns/components/columnSettingsSidePanel.js +8 -4
- package/esm/divider/divider.d.ts +5 -5
- package/esm/divider/divider.js +6 -2
- package/esm/filtersBar/components/filtersBarPeriodPicker/filtersBarPeriodPicker.js +2 -2
- package/esm/footerButtons/footerButtons.d.ts +4 -0
- package/esm/footerButtons/footerButtons.js +4 -6
- package/esm/groupsFilterRaw/groupsFilterRaw.js +1 -0
- package/esm/index.d.ts +3 -1
- package/esm/index.js +1 -0
- package/esm/lineChart/utils.js +2 -9
- package/esm/list/listItem/listItem.js +26 -0
- package/esm/mobileSheet/components/mobileSheetFooter.d.ts +1 -0
- package/esm/mobileSheet/components/mobileSheetFooter.js +1 -1
- package/esm/mobileSheet/mobileSheet.js +1 -1
- package/esm/pill/components/pillActionable/pillActionable.js +5 -4
- package/esm/pill/components/pillNonActionable/pillNonActionable.js +11 -5
- package/esm/pill/interfaces/pillActionable.interface.d.ts +1 -0
- package/esm/pill/interfaces/pillNonActionable.interface.d.ts +1 -0
- package/esm/pillExpandable/pillExpandable.js +6 -6
- package/esm/rangeRaw/rangeRaw.js +1 -0
- package/esm/selectRaw/selectRaw.js +6 -3
- package/esm/sidePanel/sidePanel.d.ts +1 -1
- package/esm/sidePanel/sidePanel.js +7 -3
- package/esm/table/children/tableDetailPanel.d.ts +9 -0
- package/esm/table/children/tableDetailPanel.js +2 -0
- package/esm/table/children/useTableChildren.d.ts +2 -1
- package/esm/table/children/useTableChildren.js +17 -2
- package/esm/table/detailPanel/detailPanel.d.ts +4 -0
- package/esm/table/detailPanel/detailPanel.js +131 -0
- package/esm/table/detailPanel/detailPanelHeader.d.ts +4 -0
- package/esm/table/detailPanel/detailPanelHeader.js +96 -0
- package/esm/table/detailPanel/interfaces.d.ts +8 -0
- package/esm/table/table.d.ts +6 -1
- package/esm/table/table.js +201 -61
- package/esm/utils/localization/translations/cs.json +3 -1
- package/esm/utils/localization/translations/da-DK.json +3 -1
- package/esm/utils/localization/translations/de.json +3 -1
- package/esm/utils/localization/translations/en-json.d.ts +315 -0
- package/esm/utils/localization/translations/en-json.js +315 -0
- package/esm/utils/localization/translations/en.json +5 -1
- package/esm/utils/localization/translations/es.json +3 -1
- package/esm/utils/localization/translations/fi-FI.json +3 -1
- package/esm/utils/localization/translations/fr-FR.json +3 -1
- package/esm/utils/localization/translations/fr.json +3 -1
- package/esm/utils/localization/translations/hu-HU.json +3 -1
- package/esm/utils/localization/translations/id.json +3 -1
- package/esm/utils/localization/translations/it.json +3 -1
- package/esm/utils/localization/translations/ja.json +3 -1
- package/esm/utils/localization/translations/ko-KR.json +3 -1
- package/esm/utils/localization/translations/ms.json +3 -1
- package/esm/utils/localization/translations/nb-NO.json +3 -1
- package/esm/utils/localization/translations/nl.json +3 -1
- package/esm/utils/localization/translations/pl.json +3 -1
- package/esm/utils/localization/translations/pt-BR.json +3 -1
- package/esm/utils/localization/translations/sk-SK.json +3 -1
- package/esm/utils/localization/translations/sv.json +3 -1
- package/esm/utils/localization/translations/th.json +3 -1
- package/esm/utils/localization/translations/tr.json +3 -1
- package/esm/utils/localization/translations/zh-Hans.json +3 -1
- package/esm/utils/localization/translations/zh-TW.json +3 -1
- package/package.json +10 -10
- package/dist/nav/storyHelpers/storyDecorator.d.ts +0 -35
- package/dist/nav/storyHelpers/storyDecorator.js +0 -79
- package/esm/nav/storyHelpers/storyDecorator.d.ts +0 -35
- package/esm/nav/storyHelpers/storyDecorator.js +0 -74
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/api/fetchEntities.d.ts +0 -3
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/api/fetchEntities.js +0 -32
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/api/gridModel.d.ts +0 -81
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/api/gridModel.js +0 -113
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/components/ColumnWaiting.d.ts +0 -4
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/components/ColumnWaiting.js +0 -4
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/components/EntitiesListAction.d.ts +0 -18
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/components/EntitiesListAction.js +0 -193
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/constants/index.d.ts +0 -1
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/constants/index.js +0 -1
- package/esm/storybookHelpers/dataGridWithDifferentCellOptions/interfaces/entity.d.ts +0 -7
- package/esm/storybookHelpers/fieldDelayRenderer.d.ts +0 -5
- package/esm/storybookHelpers/fieldDelayRenderer.js +0 -20
- package/esm/storybookHelpers/storyFeedbackProviderDecorator.d.ts +0 -2
- package/esm/storybookHelpers/storyFeedbackProviderDecorator.js +0 -16
- package/esm/storybookHelpers/storyGlobalWrapper.d.ts +0 -2
- package/esm/storybookHelpers/storyGlobalWrapper.js +0 -3
- package/esm/storybookHelpers/storyItem.d.ts +0 -8
- package/esm/storybookHelpers/storyItem.js +0 -17
- package/esm/storybookHelpers/storyLanguageDecorator.d.ts +0 -2
- package/esm/storybookHelpers/storyLanguageDecorator.js +0 -4
- package/esm/storybookHelpers/storyQueryClientProvider.d.ts +0 -2
- package/esm/storybookHelpers/storyQueryClientProvider.js +0 -15
- package/esm/storybookHelpers/storyThemeDecorator.d.ts +0 -2
- package/esm/storybookHelpers/storyThemeDecorator.js +0 -15
- package/esm/storybookHelpers/storyTopWindowDecorator.d.ts +0 -2
- package/esm/storybookHelpers/storyTopWindowDecorator.js +0 -4
- /package/esm/{storybookHelpers/dataGridWithDifferentCellOptions/interfaces/entity.js → table/detailPanel/interfaces.js} +0 -0
package/dist/index.css
CHANGED
|
@@ -104,6 +104,14 @@
|
|
|
104
104
|
--duty-status-rest: #FE6867;
|
|
105
105
|
--duty-status-drive: #49C649;
|
|
106
106
|
--duty-status-exemption: #4E677E;
|
|
107
|
+
--data--categorical-light-blue: #3CCDE5;
|
|
108
|
+
--data--categorical-blue: #428AFF;
|
|
109
|
+
--data--categorical-purple: #8256E5;
|
|
110
|
+
--data--categorical-green: #06C989;
|
|
111
|
+
--data--categorical-orange: #F98C41;
|
|
112
|
+
--data--categorical-yellow: #F5BD60;
|
|
113
|
+
--data--categorical-red: #E56A6A;
|
|
114
|
+
--data--categorical-grey: #8A94A2;
|
|
107
115
|
}
|
|
108
116
|
.zen-dark {
|
|
109
117
|
--text-primary: #FFFFFF;
|
|
@@ -2255,6 +2263,10 @@
|
|
|
2255
2263
|
min-height: unset;
|
|
2256
2264
|
align-self: flex-start;
|
|
2257
2265
|
}
|
|
2266
|
+
.zen-card-container.zen-card-container--no-width-constraint {
|
|
2267
|
+
min-width: 0;
|
|
2268
|
+
max-width: unset;
|
|
2269
|
+
}
|
|
2258
2270
|
@media (max-width: 640px) {
|
|
2259
2271
|
.zen-card-container {
|
|
2260
2272
|
max-width: unset;
|
|
@@ -2418,16 +2430,18 @@
|
|
|
2418
2430
|
.zen-shield-faded--visible {
|
|
2419
2431
|
opacity: 0.1;
|
|
2420
2432
|
}
|
|
2421
|
-
.mobile-sheet-footer {
|
|
2433
|
+
.zen-mobile-sheet-footer {
|
|
2422
2434
|
box-sizing: border-box;
|
|
2423
2435
|
border-top: 1px solid var(--borders-general);
|
|
2424
2436
|
display: grid;
|
|
2425
|
-
padding: 12px;
|
|
2426
2437
|
gap: 12px;
|
|
2427
2438
|
}
|
|
2428
|
-
.mobile-sheet-footer * {
|
|
2439
|
+
.zen-mobile-sheet-footer * {
|
|
2429
2440
|
box-sizing: border-box;
|
|
2430
2441
|
}
|
|
2442
|
+
.zen-mobile-sheet-footer--borderless {
|
|
2443
|
+
border-top-width: 0;
|
|
2444
|
+
}
|
|
2431
2445
|
.zen-mobile-sheet-wrapper {
|
|
2432
2446
|
z-index: 11010;
|
|
2433
2447
|
}
|
|
@@ -2514,6 +2528,9 @@
|
|
|
2514
2528
|
overflow-y: hidden;
|
|
2515
2529
|
position: fixed;
|
|
2516
2530
|
}
|
|
2531
|
+
.zen-mobile-sheet__footer {
|
|
2532
|
+
flex: 0 0 auto;
|
|
2533
|
+
}
|
|
2517
2534
|
.zen-mobile-sheet-wrapper--drive.zen-mobile-sheet-wrapper--drive,
|
|
2518
2535
|
.zen-mobile-sheet-wrapper--drive-tablet.zen-mobile-sheet-wrapper--drive-tablet {
|
|
2519
2536
|
max-width: 520px;
|
|
@@ -2740,32 +2757,13 @@
|
|
|
2740
2757
|
background-color: var(--backgrounds-content-1);
|
|
2741
2758
|
fill: var(--text-secondary);
|
|
2742
2759
|
}
|
|
2743
|
-
.zen-card-title__text {
|
|
2744
|
-
font-family: var(--main-font);
|
|
2745
|
-
font-size: 14px;
|
|
2746
|
-
font-style: normal;
|
|
2747
|
-
font-weight: 500;
|
|
2748
|
-
letter-spacing: 0.16px;
|
|
2749
|
-
line-height: 16px;
|
|
2750
|
-
text-transform: none;
|
|
2751
|
-
max-width: 520px;
|
|
2752
|
-
display: -webkit-box;
|
|
2753
|
-
-webkit-box-orient: vertical;
|
|
2754
|
-
-webkit-line-clamp: 2;
|
|
2755
|
-
overflow: hidden;
|
|
2756
|
-
text-overflow: ellipsis;
|
|
2757
|
-
text-align: start;
|
|
2758
|
-
color: var(--text-primary);
|
|
2759
|
-
}
|
|
2760
2760
|
.zen-card-title__link {
|
|
2761
2761
|
display: flex;
|
|
2762
|
-
align-items: center;
|
|
2763
|
-
justify-content: center;
|
|
2764
|
-
flex: 1 1 auto;
|
|
2765
2762
|
gap: 4px;
|
|
2766
2763
|
text-decoration: none;
|
|
2767
2764
|
min-width: 0;
|
|
2768
2765
|
}
|
|
2766
|
+
.zen-card-title__text,
|
|
2769
2767
|
.zen-card-title__link-text {
|
|
2770
2768
|
font-family: var(--main-font);
|
|
2771
2769
|
font-size: 14px;
|
|
@@ -2774,18 +2772,22 @@
|
|
|
2774
2772
|
letter-spacing: 0.16px;
|
|
2775
2773
|
line-height: 16px;
|
|
2776
2774
|
text-transform: none;
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2775
|
+
max-width: 520px;
|
|
2776
|
+
display: -webkit-box;
|
|
2777
|
+
-webkit-box-orient: vertical;
|
|
2778
|
+
-webkit-line-clamp: 2;
|
|
2780
2779
|
overflow: hidden;
|
|
2781
|
-
|
|
2782
|
-
|
|
2780
|
+
text-overflow: ellipsis;
|
|
2781
|
+
text-align: start;
|
|
2782
|
+
color: var(--text-primary);
|
|
2783
2783
|
}
|
|
2784
2784
|
.zen-card-title__link-chevron {
|
|
2785
|
+
display: inline-flex;
|
|
2786
|
+
align-items: center;
|
|
2787
|
+
vertical-align: middle;
|
|
2785
2788
|
width: 16px;
|
|
2786
2789
|
height: 16px;
|
|
2787
2790
|
fill: var(--text-primary);
|
|
2788
|
-
flex: 0 0 auto;
|
|
2789
2791
|
}
|
|
2790
2792
|
.zen-card-title__clickable {
|
|
2791
2793
|
gap: 4px;
|
|
@@ -3370,6 +3372,9 @@
|
|
|
3370
3372
|
position: sticky;
|
|
3371
3373
|
right: 0;
|
|
3372
3374
|
}
|
|
3375
|
+
.zen-data-grid__row:hover > .zen-data-grid__row-cell--active {
|
|
3376
|
+
background-color: var(--backgrounds-content-2);
|
|
3377
|
+
}
|
|
3373
3378
|
.zen-data-grid__row--selected > .zen-data-grid__row-cell {
|
|
3374
3379
|
background-color: var(--backgrounds-content-0);
|
|
3375
3380
|
}
|
|
@@ -3415,6 +3420,9 @@
|
|
|
3415
3420
|
.zen-data-grid__row-cell--clickable {
|
|
3416
3421
|
cursor: pointer;
|
|
3417
3422
|
}
|
|
3423
|
+
.zen-data-grid__row-cell--active {
|
|
3424
|
+
background-color: var(--backgrounds-content-2);
|
|
3425
|
+
}
|
|
3418
3426
|
.zen-data-grid__empty {
|
|
3419
3427
|
flex: 1 1 auto;
|
|
3420
3428
|
}
|
|
@@ -4546,6 +4554,183 @@
|
|
|
4546
4554
|
line-height: 16px;
|
|
4547
4555
|
text-transform: none;
|
|
4548
4556
|
}
|
|
4557
|
+
.zen-table__detail-panel--header {
|
|
4558
|
+
background-color: var(--backgrounds-main);
|
|
4559
|
+
border-bottom: 1px solid var(--borders-general);
|
|
4560
|
+
position: sticky;
|
|
4561
|
+
top: 0;
|
|
4562
|
+
left: 0;
|
|
4563
|
+
box-sizing: border-box;
|
|
4564
|
+
width: 100%;
|
|
4565
|
+
z-index: 10;
|
|
4566
|
+
display: flex;
|
|
4567
|
+
flex-direction: column;
|
|
4568
|
+
gap: 8px;
|
|
4569
|
+
padding: 16px;
|
|
4570
|
+
}
|
|
4571
|
+
.zen-table__detail-panel--header-content,
|
|
4572
|
+
.zen-table__detail-panel--header-description {
|
|
4573
|
+
box-sizing: border-box;
|
|
4574
|
+
gap: 8px;
|
|
4575
|
+
display: flex;
|
|
4576
|
+
width: 100%;
|
|
4577
|
+
}
|
|
4578
|
+
.zen-table__detail-panel--header-content {
|
|
4579
|
+
justify-content: space-between;
|
|
4580
|
+
justify-items: center;
|
|
4581
|
+
align-items: center;
|
|
4582
|
+
}
|
|
4583
|
+
.zen-table__detail-panel--header-description {
|
|
4584
|
+
font-family: var(--main-font);
|
|
4585
|
+
font-size: 14px;
|
|
4586
|
+
font-style: normal;
|
|
4587
|
+
font-weight: 500;
|
|
4588
|
+
letter-spacing: 0.16px;
|
|
4589
|
+
line-height: 16px;
|
|
4590
|
+
text-transform: none;
|
|
4591
|
+
color: var(--text-primary);
|
|
4592
|
+
justify-content: flex-start;
|
|
4593
|
+
align-items: flex-start;
|
|
4594
|
+
flex-direction: column;
|
|
4595
|
+
}
|
|
4596
|
+
.zen-table__detail-panel--header-description * {
|
|
4597
|
+
font-family: var(--main-font);
|
|
4598
|
+
font-size: 12px;
|
|
4599
|
+
font-style: normal;
|
|
4600
|
+
font-weight: 400;
|
|
4601
|
+
letter-spacing: 0.32px;
|
|
4602
|
+
line-height: 16px;
|
|
4603
|
+
text-transform: none;
|
|
4604
|
+
}
|
|
4605
|
+
.zen-table__detail-panel--header-title {
|
|
4606
|
+
font-family: var(--main-font);
|
|
4607
|
+
font-size: 16px;
|
|
4608
|
+
font-style: normal;
|
|
4609
|
+
font-weight: 500;
|
|
4610
|
+
letter-spacing: 0;
|
|
4611
|
+
line-height: 24px;
|
|
4612
|
+
text-transform: none;
|
|
4613
|
+
color: var(--text-primary);
|
|
4614
|
+
display: -webkit-box;
|
|
4615
|
+
line-clamp: 2;
|
|
4616
|
+
-webkit-line-clamp: 2;
|
|
4617
|
+
-webkit-box-orient: vertical;
|
|
4618
|
+
overflow: hidden;
|
|
4619
|
+
text-overflow: ellipsis;
|
|
4620
|
+
}
|
|
4621
|
+
.zen-table__detail-panel--header-details {
|
|
4622
|
+
font-family: var(--main-font);
|
|
4623
|
+
font-size: 14px;
|
|
4624
|
+
font-style: normal;
|
|
4625
|
+
font-weight: 500;
|
|
4626
|
+
letter-spacing: 0.16px;
|
|
4627
|
+
line-height: 16px;
|
|
4628
|
+
text-transform: none;
|
|
4629
|
+
color: var(--text-primary);
|
|
4630
|
+
display: flex;
|
|
4631
|
+
gap: 8px;
|
|
4632
|
+
flex: 1 1 auto;
|
|
4633
|
+
}
|
|
4634
|
+
.zen-table__detail-panel--header-actions {
|
|
4635
|
+
display: flex;
|
|
4636
|
+
justify-content: flex-end;
|
|
4637
|
+
gap: 8px;
|
|
4638
|
+
}
|
|
4639
|
+
.zen-table-detail-panel__header * {
|
|
4640
|
+
box-sizing: border-box;
|
|
4641
|
+
}
|
|
4642
|
+
.zen-table__detail-panel-mobile .zen-table__detail-panel--header {
|
|
4643
|
+
padding: 0;
|
|
4644
|
+
border-bottom: none;
|
|
4645
|
+
}
|
|
4646
|
+
.zen-table__detail-panel-mobile .zen-mobile-sheet__title {
|
|
4647
|
+
border-bottom: 1px solid var(--borders-general);
|
|
4648
|
+
}
|
|
4649
|
+
.zen-table__detail-panel {
|
|
4650
|
+
position: relative;
|
|
4651
|
+
width: 360px;
|
|
4652
|
+
max-width: 600px;
|
|
4653
|
+
height: 100%;
|
|
4654
|
+
min-height: 400px;
|
|
4655
|
+
max-height: 1920px;
|
|
4656
|
+
overflow: hidden;
|
|
4657
|
+
display: flex;
|
|
4658
|
+
flex-direction: column;
|
|
4659
|
+
opacity: 0;
|
|
4660
|
+
flex: 0 0 0;
|
|
4661
|
+
transform: translateX(20px);
|
|
4662
|
+
will-change: opacity, transform, flex-basis;
|
|
4663
|
+
transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), flex-basis 0.35s cubic-bezier(0.4, 0, 0.2, 1);
|
|
4664
|
+
}
|
|
4665
|
+
.zen-table__detail-panel--shown {
|
|
4666
|
+
opacity: 1;
|
|
4667
|
+
flex: 0 0 360px;
|
|
4668
|
+
transform: translateX(0);
|
|
4669
|
+
}
|
|
4670
|
+
@container table-content (max-width: 600px) {
|
|
4671
|
+
.zen-table__detail-panel {
|
|
4672
|
+
position: absolute;
|
|
4673
|
+
top: 0;
|
|
4674
|
+
right: 0;
|
|
4675
|
+
width: 100%;
|
|
4676
|
+
max-width: 100%;
|
|
4677
|
+
min-width: 0;
|
|
4678
|
+
transform: translateX(100%);
|
|
4679
|
+
overflow-y: hidden;
|
|
4680
|
+
will-change: opacity, transform;
|
|
4681
|
+
transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
|
|
4682
|
+
}
|
|
4683
|
+
.zen-table__detail-panel--shown {
|
|
4684
|
+
opacity: 1;
|
|
4685
|
+
transform: translateX(0);
|
|
4686
|
+
overflow-y: auto;
|
|
4687
|
+
}
|
|
4688
|
+
}
|
|
4689
|
+
.zen-table__detail-panel-content {
|
|
4690
|
+
overflow-y: auto;
|
|
4691
|
+
flex: 1;
|
|
4692
|
+
padding: 12px;
|
|
4693
|
+
}
|
|
4694
|
+
.zen-table__detail-panel-footer {
|
|
4695
|
+
padding: 12px;
|
|
4696
|
+
}
|
|
4697
|
+
.zen-table__detail-panel .zen-page-header__page-name {
|
|
4698
|
+
font-family: var(--main-font);
|
|
4699
|
+
font-size: 16px;
|
|
4700
|
+
font-style: normal;
|
|
4701
|
+
font-weight: 500;
|
|
4702
|
+
letter-spacing: 0;
|
|
4703
|
+
line-height: 24px;
|
|
4704
|
+
text-transform: none;
|
|
4705
|
+
}
|
|
4706
|
+
.zen-table__detail-panel-footer {
|
|
4707
|
+
font-family: var(--main-font);
|
|
4708
|
+
font-size: 14px;
|
|
4709
|
+
font-style: normal;
|
|
4710
|
+
font-weight: 500;
|
|
4711
|
+
letter-spacing: 0.16px;
|
|
4712
|
+
line-height: 16px;
|
|
4713
|
+
text-transform: none;
|
|
4714
|
+
color: var(--text-primary);
|
|
4715
|
+
background-color: var(--backgrounds-main);
|
|
4716
|
+
display: flex;
|
|
4717
|
+
justify-content: flex-end;
|
|
4718
|
+
gap: 8px;
|
|
4719
|
+
position: sticky;
|
|
4720
|
+
bottom: 0;
|
|
4721
|
+
}
|
|
4722
|
+
.zen-table__detail-panel.zen-card-container {
|
|
4723
|
+
padding: 0;
|
|
4724
|
+
width: 360px;
|
|
4725
|
+
}
|
|
4726
|
+
@container table-content (max-width: 600px) {
|
|
4727
|
+
.zen-table__detail-panel.zen-card-container.zen-table__detail-panel--shown {
|
|
4728
|
+
max-width: min(100%, 600px);
|
|
4729
|
+
}
|
|
4730
|
+
}
|
|
4731
|
+
.zen-table__detail-panel-mobile {
|
|
4732
|
+
max-height: 90%;
|
|
4733
|
+
}
|
|
4549
4734
|
:root {
|
|
4550
4735
|
--grid-header-height: 52px;
|
|
4551
4736
|
}
|
|
@@ -4584,6 +4769,24 @@
|
|
|
4584
4769
|
.zen-table-wrapper--with-toolbar .zen-data-grid-wrapper {
|
|
4585
4770
|
height: calc(100% - 48px);
|
|
4586
4771
|
}
|
|
4772
|
+
.zen-table__content {
|
|
4773
|
+
height: 100%;
|
|
4774
|
+
position: relative;
|
|
4775
|
+
display: flex;
|
|
4776
|
+
gap: 12px;
|
|
4777
|
+
container-type: inline-size;
|
|
4778
|
+
container-name: table-content;
|
|
4779
|
+
}
|
|
4780
|
+
.zen-table__table {
|
|
4781
|
+
height: 100%;
|
|
4782
|
+
flex: 1 1 auto;
|
|
4783
|
+
min-width: 0;
|
|
4784
|
+
transition: flex 0.35s cubic-bezier(0.4, 0, 0.2, 1);
|
|
4785
|
+
}
|
|
4786
|
+
.pie-chart-1 {
|
|
4787
|
+
width: 100%;
|
|
4788
|
+
height: 200px;
|
|
4789
|
+
}
|
|
4587
4790
|
.zen-action-link-column {
|
|
4588
4791
|
display: flex;
|
|
4589
4792
|
align-items: center;
|
|
@@ -5427,7 +5630,7 @@
|
|
|
5427
5630
|
}
|
|
5428
5631
|
.zen-pill-actionable--keyboard-nav.zen-pill-actionable--default {
|
|
5429
5632
|
outline: 1px solid var(--borders-form-field--active);
|
|
5430
|
-
outline-offset:
|
|
5633
|
+
outline-offset: 2px;
|
|
5431
5634
|
}
|
|
5432
5635
|
.zen-pill-actionable--active {
|
|
5433
5636
|
background-color: var(--action-primary--default);
|
|
@@ -5435,6 +5638,10 @@
|
|
|
5435
5638
|
color: var(--text-reverse-primary);
|
|
5436
5639
|
fill: var(--text-reverse-primary);
|
|
5437
5640
|
}
|
|
5641
|
+
.zen-pill-actionable--active.zen-pill-actionable--keyboard-nav {
|
|
5642
|
+
outline: 1px solid var(--borders-form-field--active);
|
|
5643
|
+
outline-offset: 2px;
|
|
5644
|
+
}
|
|
5438
5645
|
.zen-pill-actionable--readonly {
|
|
5439
5646
|
color: var(--text-secondary);
|
|
5440
5647
|
background-color: var(--backgrounds-content-0);
|
|
@@ -5568,224 +5775,41 @@
|
|
|
5568
5775
|
align-items: center;
|
|
5569
5776
|
gap: 4px;
|
|
5570
5777
|
}
|
|
5571
|
-
.zen-form-list-label {
|
|
5572
|
-
max-height: 32px;
|
|
5573
|
-
display: flex;
|
|
5574
|
-
align-items: center;
|
|
5575
|
-
}
|
|
5576
|
-
.zen-form-control {
|
|
5577
|
-
align-items: start;
|
|
5578
|
-
}
|
|
5579
|
-
.zen-form-group-list-label {
|
|
5580
|
-
font-style: italic;
|
|
5581
|
-
}
|
|
5582
|
-
.zen-divider {
|
|
5583
|
-
width: 100%;
|
|
5584
|
-
border-top: 1px solid var(--borders-general);
|
|
5585
|
-
}
|
|
5586
|
-
.zen-additional-sub-section__secondary {
|
|
5587
|
-
margin: 16px 0;
|
|
5588
|
-
font-family: var(--main-font);
|
|
5589
|
-
font-size: 12px;
|
|
5590
|
-
font-style: normal;
|
|
5591
|
-
font-weight: 400;
|
|
5592
|
-
letter-spacing: 0.32px;
|
|
5593
|
-
line-height: 16px;
|
|
5594
|
-
text-transform: none;
|
|
5595
|
-
color: var(--text-secondary);
|
|
5596
|
-
}
|
|
5597
|
-
.zen-additional-sub-section__content {
|
|
5598
|
-
padding: 16px;
|
|
5599
|
-
}
|
|
5600
|
-
.zen-additional-sub-section .zen-accordion__content {
|
|
5601
|
-
padding: 0;
|
|
5602
|
-
}
|
|
5603
|
-
.zen-form-section-default-title {
|
|
5604
|
-
font-family: var(--main-font);
|
|
5605
|
-
font-size: 14px;
|
|
5606
|
-
font-style: normal;
|
|
5607
|
-
font-weight: 500;
|
|
5608
|
-
letter-spacing: 0.16px;
|
|
5609
|
-
line-height: 16px;
|
|
5610
|
-
text-transform: none;
|
|
5611
|
-
color: var(--text-primary);
|
|
5612
|
-
}
|
|
5613
|
-
.zen-form-section-card-content {
|
|
5614
|
-
display: grid;
|
|
5615
|
-
gap: 16px;
|
|
5616
|
-
}
|
|
5617
|
-
.zen-form-section-error-banner {
|
|
5618
|
-
height: fit-content;
|
|
5619
|
-
}
|
|
5620
|
-
.zen-form-layout-title {
|
|
5621
|
-
font-family: var(--main-font);
|
|
5622
|
-
font-size: 16px;
|
|
5623
|
-
font-style: normal;
|
|
5624
|
-
font-weight: 500;
|
|
5625
|
-
letter-spacing: 0;
|
|
5626
|
-
line-height: 24px;
|
|
5627
|
-
text-transform: none;
|
|
5628
|
-
}
|
|
5629
|
-
.zen-modal {
|
|
5630
|
-
box-sizing: border-box;
|
|
5631
|
-
box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
|
|
5632
|
-
position: absolute;
|
|
5633
|
-
width: 100%;
|
|
5634
|
-
height: 100%;
|
|
5635
|
-
top: 0;
|
|
5636
|
-
bottom: 0;
|
|
5637
|
-
left: 0;
|
|
5638
|
-
right: 0;
|
|
5639
|
-
display: flex;
|
|
5640
|
-
align-items: center;
|
|
5641
|
-
justify-content: center;
|
|
5642
|
-
}
|
|
5643
|
-
.zen-modal * {
|
|
5644
|
-
box-sizing: border-box;
|
|
5645
|
-
}
|
|
5646
|
-
.zen-modal__shield {
|
|
5647
|
-
box-sizing: border-box;
|
|
5648
|
-
position: absolute;
|
|
5649
|
-
top: 0;
|
|
5650
|
-
bottom: 0;
|
|
5651
|
-
left: 0;
|
|
5652
|
-
right: 0;
|
|
5653
|
-
z-index: 11000;
|
|
5654
|
-
background-color: var(--backgrounds-hover);
|
|
5655
|
-
opacity: 0.5;
|
|
5656
|
-
}
|
|
5657
|
-
.zen-modal__shield * {
|
|
5658
|
-
box-sizing: border-box;
|
|
5659
|
-
}
|
|
5660
|
-
.zen-modal-content {
|
|
5661
|
-
box-sizing: border-box;
|
|
5662
|
-
z-index: 11001;
|
|
5663
|
-
width: 100%;
|
|
5664
|
-
display: flex;
|
|
5665
|
-
flex-direction: column;
|
|
5666
|
-
background-color: var(--backgrounds-main);
|
|
5667
|
-
color: var(--text-primary);
|
|
5668
|
-
padding: 0;
|
|
5669
|
-
box-shadow: 0px 2px 6px rgba(11, 32, 50, 0.2);
|
|
5670
|
-
max-height: 90vh;
|
|
5671
|
-
border-radius: 4px;
|
|
5672
|
-
overflow: hidden;
|
|
5673
|
-
}
|
|
5674
|
-
.zen-modal-content * {
|
|
5675
|
-
box-sizing: border-box;
|
|
5676
|
-
}
|
|
5677
|
-
.zen-modal-content--hidden-overflow.zen-modal-content--hidden-overflow {
|
|
5678
|
-
overflow-y: hidden;
|
|
5679
|
-
}
|
|
5680
|
-
.zen-modal-content__header {
|
|
5681
|
-
display: flex;
|
|
5682
|
-
justify-content: space-between;
|
|
5683
|
-
align-items: center;
|
|
5684
|
-
flex-wrap: nowrap;
|
|
5685
|
-
padding: 24px 24px 16px 24px;
|
|
5686
|
-
min-height: 72px;
|
|
5687
|
-
}
|
|
5688
|
-
.zen-modal-content__header-title {
|
|
5689
|
-
display: flex;
|
|
5690
|
-
align-items: center;
|
|
5691
|
-
gap: 4px;
|
|
5692
|
-
flex-grow: 2;
|
|
5693
|
-
}
|
|
5694
|
-
.zen-modal-content__header-close-button.zen-modal-content__header-close-button {
|
|
5695
|
-
display: flex;
|
|
5696
|
-
align-items: center;
|
|
5697
|
-
justify-content: center;
|
|
5698
|
-
flex-shrink: 0;
|
|
5699
|
-
border: none;
|
|
5700
|
-
padding: 0;
|
|
5701
|
-
cursor: pointer;
|
|
5702
|
-
align-self: flex-start;
|
|
5703
|
-
border-radius: 50%;
|
|
5704
|
-
padding: 8px;
|
|
5705
|
-
}
|
|
5706
|
-
.zen-modal-content__body {
|
|
5707
|
-
overflow: auto;
|
|
5708
|
-
padding: 12px 24px 32px 24px;
|
|
5709
|
-
}
|
|
5710
|
-
.zen-modal-content__body--no-footer {
|
|
5711
|
-
padding-bottom: 16px;
|
|
5712
|
-
}
|
|
5713
|
-
.zen-modal-content__footer {
|
|
5714
|
-
display: flex;
|
|
5715
|
-
justify-content: space-between;
|
|
5716
|
-
padding: 16px 24px;
|
|
5717
|
-
min-height: 59px;
|
|
5718
|
-
background-color: var(--backgrounds-content-0);
|
|
5719
|
-
}
|
|
5720
|
-
.zen-modal-content__footer--mobile {
|
|
5721
|
-
display: flex;
|
|
5722
|
-
flex-direction: column-reverse;
|
|
5723
|
-
gap: 8px;
|
|
5724
|
-
}
|
|
5725
|
-
.zen-modal-content__footer--mobile .zen-modal-content__icon-button {
|
|
5726
|
-
justify-content: center;
|
|
5727
|
-
}
|
|
5728
|
-
.zen-modal-content__footer--mobile .zen-modal-content__icon-button .zen-caption__content {
|
|
5729
|
-
margin-right: 0;
|
|
5730
|
-
}
|
|
5731
|
-
.zen-modal-content__footer-left {
|
|
5732
|
-
display: flex;
|
|
5733
|
-
align-items: center;
|
|
5734
|
-
}
|
|
5735
|
-
.zen-modal-content__footer-left--mobile {
|
|
5736
|
-
display: block;
|
|
5737
|
-
align-items: unset;
|
|
5738
|
-
}
|
|
5739
|
-
.zen-modal-content__footer-right {
|
|
5740
|
-
display: flex;
|
|
5741
|
-
align-items: center;
|
|
5742
|
-
gap: 8px;
|
|
5743
|
-
}
|
|
5744
|
-
.zen-modal-content__footer-right--mobile {
|
|
5745
|
-
display: flex;
|
|
5746
|
-
align-items: unset;
|
|
5747
|
-
flex-direction: column;
|
|
5748
|
-
gap: 8px;
|
|
5749
|
-
}
|
|
5750
|
-
.zen-modal-content__left-button {
|
|
5751
|
-
width: 100%;
|
|
5752
|
-
}
|
|
5753
|
-
.zen-modal-content__icon {
|
|
5754
|
-
display: flex;
|
|
5755
|
-
align-items: center;
|
|
5756
|
-
margin-right: 4px;
|
|
5757
|
-
padding: 4px;
|
|
5758
|
-
border-radius: 99px;
|
|
5759
|
-
}
|
|
5760
|
-
.zen-modal-content__icon--default {
|
|
5761
|
-
fill: var(--action-secondary--default);
|
|
5762
|
-
color: var(--action-secondary--default);
|
|
5763
|
-
}
|
|
5764
|
-
.zen-modal-content__icon--info {
|
|
5765
|
-
fill: var(--accents-general--detail);
|
|
5766
|
-
color: var(--accents-general--detail);
|
|
5767
|
-
background-color: var(--accents-general--main);
|
|
5778
|
+
.zen-form-list-label {
|
|
5779
|
+
max-height: 32px;
|
|
5780
|
+
display: flex;
|
|
5781
|
+
align-items: center;
|
|
5768
5782
|
}
|
|
5769
|
-
.zen-
|
|
5770
|
-
|
|
5771
|
-
color: var(--accents-warning--detail);
|
|
5772
|
-
background-color: var(--accents-warning--main);
|
|
5783
|
+
.zen-form-control {
|
|
5784
|
+
align-items: start;
|
|
5773
5785
|
}
|
|
5774
|
-
.zen-
|
|
5775
|
-
|
|
5776
|
-
color: var(--accents-success--detail);
|
|
5777
|
-
background-color: var(--accents-success--main);
|
|
5786
|
+
.zen-form-group-list-label {
|
|
5787
|
+
font-style: italic;
|
|
5778
5788
|
}
|
|
5779
|
-
.zen-
|
|
5780
|
-
|
|
5781
|
-
|
|
5782
|
-
|
|
5789
|
+
.zen-divider {
|
|
5790
|
+
height: 1px;
|
|
5791
|
+
width: 100%;
|
|
5792
|
+
border: none;
|
|
5793
|
+
background-color: var(--borders-general);
|
|
5794
|
+
margin: 0;
|
|
5795
|
+
padding: 0;
|
|
5783
5796
|
}
|
|
5784
|
-
.zen-
|
|
5785
|
-
|
|
5797
|
+
.zen-additional-sub-section__secondary {
|
|
5798
|
+
margin: 16px 0;
|
|
5799
|
+
font-family: var(--main-font);
|
|
5800
|
+
font-size: 12px;
|
|
5801
|
+
font-style: normal;
|
|
5802
|
+
font-weight: 400;
|
|
5803
|
+
letter-spacing: 0.32px;
|
|
5804
|
+
line-height: 16px;
|
|
5805
|
+
text-transform: none;
|
|
5806
|
+
color: var(--text-secondary);
|
|
5786
5807
|
}
|
|
5787
|
-
.zen-
|
|
5788
|
-
|
|
5808
|
+
.zen-additional-sub-section__content {
|
|
5809
|
+
padding: 16px;
|
|
5810
|
+
}
|
|
5811
|
+
.zen-additional-sub-section .zen-accordion__content {
|
|
5812
|
+
padding: 0;
|
|
5789
5813
|
}
|
|
5790
5814
|
.zen-form-field {
|
|
5791
5815
|
box-sizing: border-box;
|
|
@@ -7320,6 +7344,9 @@
|
|
|
7320
7344
|
.zen-footer-buttons {
|
|
7321
7345
|
box-sizing: border-box;
|
|
7322
7346
|
display: flex;
|
|
7347
|
+
flex-direction: column;
|
|
7348
|
+
gap: 4px;
|
|
7349
|
+
padding: 12px;
|
|
7323
7350
|
}
|
|
7324
7351
|
.zen-footer-buttons * {
|
|
7325
7352
|
box-sizing: border-box;
|
|
@@ -7327,13 +7354,6 @@
|
|
|
7327
7354
|
.zen-footer-buttons .zen-footer-buttons__item {
|
|
7328
7355
|
flex-grow: 1;
|
|
7329
7356
|
padding: 11px 8px;
|
|
7330
|
-
border-radius: 0;
|
|
7331
|
-
}
|
|
7332
|
-
.zen-footer-buttons .zen-footer-buttons__item--separate {
|
|
7333
|
-
margin-bottom: 8px;
|
|
7334
|
-
}
|
|
7335
|
-
.zen-footer-buttons--stacked {
|
|
7336
|
-
flex-direction: column;
|
|
7337
7357
|
}
|
|
7338
7358
|
.zen-footer-buttons--sticky {
|
|
7339
7359
|
position: fixed;
|
|
@@ -7346,9 +7366,6 @@
|
|
|
7346
7366
|
z-index: 11005;
|
|
7347
7367
|
background-color: var(--backgrounds-main);
|
|
7348
7368
|
}
|
|
7349
|
-
.zen-footer-buttons--indented {
|
|
7350
|
-
padding: 12px;
|
|
7351
|
-
}
|
|
7352
7369
|
.zen-footer-buttons.zen-footer-buttons--drive .zen-footer-buttons__item,
|
|
7353
7370
|
.zen-footer-buttons.zen-footer-buttons--drive-tablet .zen-footer-buttons__item {
|
|
7354
7371
|
padding: 15px 12px;
|
|
@@ -7625,6 +7642,167 @@
|
|
|
7625
7642
|
line-height: 28px;
|
|
7626
7643
|
text-transform: none;
|
|
7627
7644
|
}
|
|
7645
|
+
.zen-modal {
|
|
7646
|
+
box-sizing: border-box;
|
|
7647
|
+
box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
|
|
7648
|
+
position: absolute;
|
|
7649
|
+
width: 100%;
|
|
7650
|
+
height: 100%;
|
|
7651
|
+
top: 0;
|
|
7652
|
+
bottom: 0;
|
|
7653
|
+
left: 0;
|
|
7654
|
+
right: 0;
|
|
7655
|
+
display: flex;
|
|
7656
|
+
align-items: center;
|
|
7657
|
+
justify-content: center;
|
|
7658
|
+
}
|
|
7659
|
+
.zen-modal * {
|
|
7660
|
+
box-sizing: border-box;
|
|
7661
|
+
}
|
|
7662
|
+
.zen-modal__shield {
|
|
7663
|
+
box-sizing: border-box;
|
|
7664
|
+
position: absolute;
|
|
7665
|
+
top: 0;
|
|
7666
|
+
bottom: 0;
|
|
7667
|
+
left: 0;
|
|
7668
|
+
right: 0;
|
|
7669
|
+
z-index: 11000;
|
|
7670
|
+
background-color: var(--backgrounds-hover);
|
|
7671
|
+
opacity: 0.5;
|
|
7672
|
+
}
|
|
7673
|
+
.zen-modal__shield * {
|
|
7674
|
+
box-sizing: border-box;
|
|
7675
|
+
}
|
|
7676
|
+
.zen-modal-content {
|
|
7677
|
+
box-sizing: border-box;
|
|
7678
|
+
z-index: 11001;
|
|
7679
|
+
width: 100%;
|
|
7680
|
+
display: flex;
|
|
7681
|
+
flex-direction: column;
|
|
7682
|
+
background-color: var(--backgrounds-main);
|
|
7683
|
+
color: var(--text-primary);
|
|
7684
|
+
padding: 0;
|
|
7685
|
+
box-shadow: 0px 2px 6px rgba(11, 32, 50, 0.2);
|
|
7686
|
+
max-height: 90vh;
|
|
7687
|
+
border-radius: 4px;
|
|
7688
|
+
overflow: hidden;
|
|
7689
|
+
}
|
|
7690
|
+
.zen-modal-content * {
|
|
7691
|
+
box-sizing: border-box;
|
|
7692
|
+
}
|
|
7693
|
+
.zen-modal-content--hidden-overflow.zen-modal-content--hidden-overflow {
|
|
7694
|
+
overflow-y: hidden;
|
|
7695
|
+
}
|
|
7696
|
+
.zen-modal-content__header {
|
|
7697
|
+
display: flex;
|
|
7698
|
+
justify-content: space-between;
|
|
7699
|
+
align-items: center;
|
|
7700
|
+
flex-wrap: nowrap;
|
|
7701
|
+
padding: 24px 24px 16px 24px;
|
|
7702
|
+
min-height: 72px;
|
|
7703
|
+
}
|
|
7704
|
+
.zen-modal-content__header-title {
|
|
7705
|
+
display: flex;
|
|
7706
|
+
align-items: center;
|
|
7707
|
+
gap: 4px;
|
|
7708
|
+
flex-grow: 2;
|
|
7709
|
+
}
|
|
7710
|
+
.zen-modal-content__header-close-button.zen-modal-content__header-close-button {
|
|
7711
|
+
display: flex;
|
|
7712
|
+
align-items: center;
|
|
7713
|
+
justify-content: center;
|
|
7714
|
+
flex-shrink: 0;
|
|
7715
|
+
border: none;
|
|
7716
|
+
padding: 0;
|
|
7717
|
+
cursor: pointer;
|
|
7718
|
+
align-self: flex-start;
|
|
7719
|
+
border-radius: 50%;
|
|
7720
|
+
padding: 8px;
|
|
7721
|
+
}
|
|
7722
|
+
.zen-modal-content__body {
|
|
7723
|
+
overflow: auto;
|
|
7724
|
+
padding: 12px 24px 32px 24px;
|
|
7725
|
+
}
|
|
7726
|
+
.zen-modal-content__body--no-footer {
|
|
7727
|
+
padding-bottom: 16px;
|
|
7728
|
+
}
|
|
7729
|
+
.zen-modal-content__footer {
|
|
7730
|
+
display: flex;
|
|
7731
|
+
justify-content: space-between;
|
|
7732
|
+
padding: 16px 24px;
|
|
7733
|
+
min-height: 59px;
|
|
7734
|
+
background-color: var(--backgrounds-content-0);
|
|
7735
|
+
}
|
|
7736
|
+
.zen-modal-content__footer--mobile {
|
|
7737
|
+
display: flex;
|
|
7738
|
+
flex-direction: column-reverse;
|
|
7739
|
+
gap: 8px;
|
|
7740
|
+
}
|
|
7741
|
+
.zen-modal-content__footer--mobile .zen-modal-content__icon-button {
|
|
7742
|
+
justify-content: center;
|
|
7743
|
+
}
|
|
7744
|
+
.zen-modal-content__footer--mobile .zen-modal-content__icon-button .zen-caption__content {
|
|
7745
|
+
margin-right: 0;
|
|
7746
|
+
}
|
|
7747
|
+
.zen-modal-content__footer-left {
|
|
7748
|
+
display: flex;
|
|
7749
|
+
align-items: center;
|
|
7750
|
+
}
|
|
7751
|
+
.zen-modal-content__footer-left--mobile {
|
|
7752
|
+
display: block;
|
|
7753
|
+
align-items: unset;
|
|
7754
|
+
}
|
|
7755
|
+
.zen-modal-content__footer-right {
|
|
7756
|
+
display: flex;
|
|
7757
|
+
align-items: center;
|
|
7758
|
+
gap: 8px;
|
|
7759
|
+
}
|
|
7760
|
+
.zen-modal-content__footer-right--mobile {
|
|
7761
|
+
display: flex;
|
|
7762
|
+
align-items: unset;
|
|
7763
|
+
flex-direction: column;
|
|
7764
|
+
gap: 8px;
|
|
7765
|
+
}
|
|
7766
|
+
.zen-modal-content__left-button {
|
|
7767
|
+
width: 100%;
|
|
7768
|
+
}
|
|
7769
|
+
.zen-modal-content__icon {
|
|
7770
|
+
display: flex;
|
|
7771
|
+
align-items: center;
|
|
7772
|
+
margin-right: 4px;
|
|
7773
|
+
padding: 4px;
|
|
7774
|
+
border-radius: 99px;
|
|
7775
|
+
}
|
|
7776
|
+
.zen-modal-content__icon--default {
|
|
7777
|
+
fill: var(--action-secondary--default);
|
|
7778
|
+
color: var(--action-secondary--default);
|
|
7779
|
+
}
|
|
7780
|
+
.zen-modal-content__icon--info {
|
|
7781
|
+
fill: var(--accents-general--detail);
|
|
7782
|
+
color: var(--accents-general--detail);
|
|
7783
|
+
background-color: var(--accents-general--main);
|
|
7784
|
+
}
|
|
7785
|
+
.zen-modal-content__icon--warning {
|
|
7786
|
+
fill: var(--accents-warning--detail);
|
|
7787
|
+
color: var(--accents-warning--detail);
|
|
7788
|
+
background-color: var(--accents-warning--main);
|
|
7789
|
+
}
|
|
7790
|
+
.zen-modal-content__icon--success {
|
|
7791
|
+
fill: var(--accents-success--detail);
|
|
7792
|
+
color: var(--accents-success--detail);
|
|
7793
|
+
background-color: var(--accents-success--main);
|
|
7794
|
+
}
|
|
7795
|
+
.zen-modal-content__icon--error {
|
|
7796
|
+
fill: var(--accents-error--detail);
|
|
7797
|
+
color: var(--accents-error--detail);
|
|
7798
|
+
background-color: var(--accents-error--main);
|
|
7799
|
+
}
|
|
7800
|
+
.zen-modal-content--small {
|
|
7801
|
+
max-width: 400px;
|
|
7802
|
+
}
|
|
7803
|
+
.zen-modal-content--normal {
|
|
7804
|
+
max-width: 600px;
|
|
7805
|
+
}
|
|
7628
7806
|
.zen-toast {
|
|
7629
7807
|
box-sizing: border-box;
|
|
7630
7808
|
display: grid;
|
|
@@ -7983,6 +8161,7 @@
|
|
|
7983
8161
|
align-items: center;
|
|
7984
8162
|
gap: 8px;
|
|
7985
8163
|
position: relative;
|
|
8164
|
+
cursor: pointer;
|
|
7986
8165
|
}
|
|
7987
8166
|
.zen-status-pill__pill-container:hover .zen-status-pill__container--default {
|
|
7988
8167
|
border-color: var(--action-secondary--default);
|
|
@@ -10978,6 +11157,11 @@ button.zen-summary__clickable {
|
|
|
10978
11157
|
.zen-groups-filter-menu__reset-button {
|
|
10979
11158
|
margin-left: 8px;
|
|
10980
11159
|
}
|
|
11160
|
+
.zen-groups-filter-menu__mobile-sheet .zen-groups-filter-menu__reset-button,
|
|
11161
|
+
.zen-groups-filter-menu__mobile-sheet .zen-groups-filter-menu__cancel-button,
|
|
11162
|
+
.zen-groups-filter-menu__mobile-sheet .zen-groups-filter-menu__apply-button {
|
|
11163
|
+
margin: 0;
|
|
11164
|
+
}
|
|
10981
11165
|
.zen-groups-filter-menu__item-wrapper {
|
|
10982
11166
|
display: flex;
|
|
10983
11167
|
flex-wrap: nowrap;
|
|
@@ -11674,6 +11858,11 @@ button.zen-summary__clickable {
|
|
|
11674
11858
|
.zen-range--error .zen-range__trigger-button {
|
|
11675
11859
|
border: 1px solid var(--text-error-message);
|
|
11676
11860
|
}
|
|
11861
|
+
.zen-range__mobile-sheet .zen-range__clear-button,
|
|
11862
|
+
.zen-range__mobile-sheet .zen-range__cancel-button,
|
|
11863
|
+
.zen-range__mobile-sheet .zen-range__apply-button {
|
|
11864
|
+
margin: 0;
|
|
11865
|
+
}
|
|
11677
11866
|
.zen-range-popup.zen-range-popup {
|
|
11678
11867
|
font-family: var(--main-font);
|
|
11679
11868
|
font-size: 14px;
|
|
@@ -13124,6 +13313,32 @@ button.zen-summary__clickable {
|
|
|
13124
13313
|
.zen-filters-bar-dropdown-with-checkbox__pill-box {
|
|
13125
13314
|
margin-top: 8px;
|
|
13126
13315
|
}
|
|
13316
|
+
.zen-form-section-default-title {
|
|
13317
|
+
font-family: var(--main-font);
|
|
13318
|
+
font-size: 14px;
|
|
13319
|
+
font-style: normal;
|
|
13320
|
+
font-weight: 500;
|
|
13321
|
+
letter-spacing: 0.16px;
|
|
13322
|
+
line-height: 16px;
|
|
13323
|
+
text-transform: none;
|
|
13324
|
+
color: var(--text-primary);
|
|
13325
|
+
}
|
|
13326
|
+
.zen-form-section-card-content {
|
|
13327
|
+
display: grid;
|
|
13328
|
+
gap: 16px;
|
|
13329
|
+
}
|
|
13330
|
+
.zen-form-section-error-banner {
|
|
13331
|
+
height: fit-content;
|
|
13332
|
+
}
|
|
13333
|
+
.zen-form-layout-title {
|
|
13334
|
+
font-family: var(--main-font);
|
|
13335
|
+
font-size: 16px;
|
|
13336
|
+
font-style: normal;
|
|
13337
|
+
font-weight: 500;
|
|
13338
|
+
letter-spacing: 0;
|
|
13339
|
+
line-height: 24px;
|
|
13340
|
+
text-transform: none;
|
|
13341
|
+
}
|
|
13127
13342
|
.zen-grid {
|
|
13128
13343
|
display: grid;
|
|
13129
13344
|
align-items: start;
|
|
@@ -13866,7 +14081,7 @@ button.zen-summary__clickable {
|
|
|
13866
14081
|
.zen-card-deck {
|
|
13867
14082
|
box-sizing: border-box;
|
|
13868
14083
|
display: flex;
|
|
13869
|
-
padding:
|
|
14084
|
+
padding: 2px 21px;
|
|
13870
14085
|
flex-direction: column;
|
|
13871
14086
|
align-items: center;
|
|
13872
14087
|
border-bottom: 1px solid var(--borders-general);
|
|
@@ -13877,13 +14092,14 @@ button.zen-summary__clickable {
|
|
|
13877
14092
|
box-sizing: border-box;
|
|
13878
14093
|
}
|
|
13879
14094
|
.zen-card-deck--mobile {
|
|
13880
|
-
padding:
|
|
14095
|
+
padding: 2px 12px 1px 12px;
|
|
13881
14096
|
}
|
|
13882
14097
|
.zen-card-deck__cards {
|
|
13883
14098
|
display: flex;
|
|
13884
14099
|
flex-direction: row;
|
|
13885
14100
|
align-items: center;
|
|
13886
14101
|
gap: 16px;
|
|
14102
|
+
padding: 6px 3px;
|
|
13887
14103
|
}
|
|
13888
14104
|
.zen-card-deck__cards-container {
|
|
13889
14105
|
width: 100%;
|
|
@@ -14002,24 +14218,28 @@ button.zen-summary__clickable {
|
|
|
14002
14218
|
}
|
|
14003
14219
|
.zen-mini-tabs--small {
|
|
14004
14220
|
width: 336px;
|
|
14221
|
+
max-width: 100%;
|
|
14005
14222
|
}
|
|
14006
14223
|
.zen-mini-tabs--small .zen-mini-tabs__header-item {
|
|
14007
14224
|
max-width: 104px;
|
|
14008
14225
|
}
|
|
14009
14226
|
.zen-mini-tabs--medium {
|
|
14010
14227
|
width: 528px;
|
|
14228
|
+
max-width: 100%;
|
|
14011
14229
|
}
|
|
14012
14230
|
.zen-mini-tabs--medium .zen-mini-tabs__header-item {
|
|
14013
14231
|
max-width: 144px;
|
|
14014
14232
|
}
|
|
14015
14233
|
.zen-mini-tabs--large {
|
|
14016
14234
|
width: 720px;
|
|
14235
|
+
max-width: 100%;
|
|
14017
14236
|
}
|
|
14018
14237
|
.zen-mini-tabs--large .zen-mini-tabs__header-item {
|
|
14019
14238
|
max-width: 168px;
|
|
14020
14239
|
}
|
|
14021
14240
|
.zen-mini-tabs--xlarge {
|
|
14022
14241
|
width: 1104px;
|
|
14242
|
+
max-width: 100%;
|
|
14023
14243
|
}
|
|
14024
14244
|
.zen-mini-tabs--xlarge .zen-mini-tabs__header-item {
|
|
14025
14245
|
max-width: 200px;
|