amis 1.4.1 → 1.4.2-beta.1
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 +1 -1
- package/lib/Schema.d.ts +17 -0
- package/lib/Schema.js.map +1 -1
- package/lib/components/Alert.js +3 -1
- package/lib/components/Alert.js.map +2 -2
- package/lib/components/Badge.d.ts +2 -2
- package/lib/components/Badge.js +12 -6
- package/lib/components/Badge.js.map +2 -2
- package/lib/components/Collapse.js +1 -1
- package/lib/components/Collapse.js.map +2 -2
- package/lib/components/DatePicker.js +1 -1
- package/lib/components/DatePicker.js.map +2 -2
- package/lib/components/DateRangePicker.js +1 -1
- package/lib/components/DateRangePicker.js.map +2 -2
- package/lib/components/InputBox.js +1 -1
- package/lib/components/InputBox.js.map +2 -2
- package/lib/components/Link.d.ts +91 -0
- package/lib/components/Link.js +44 -0
- package/lib/components/Link.js.map +13 -0
- package/lib/components/MonthRangePicker.js +1 -1
- package/lib/components/MonthRangePicker.js.map +2 -2
- package/lib/components/RichText.js +17 -53
- package/lib/components/RichText.js.map +2 -2
- package/lib/components/Select.js +3 -0
- package/lib/components/Select.js.map +2 -2
- package/lib/components/SparkLine.d.ts +85 -84
- package/lib/components/SparkLine.js +2 -2
- package/lib/components/SparkLine.js.map +2 -2
- package/lib/components/Toast.js +2 -2
- package/lib/components/Toast.js.map +2 -2
- package/lib/components/Tree.js +5 -3
- package/lib/components/Tree.js.map +2 -2
- package/lib/components/icons.js +12 -0
- package/lib/components/icons.js.map +2 -2
- package/lib/icons/clock.js +10 -0
- package/lib/icons/status-close.js +11 -0
- package/lib/icons/status-fail.js +11 -0
- package/lib/icons/status-info.js +10 -0
- package/lib/icons/status-success.js +11 -0
- package/lib/icons/status-warning.js +10 -0
- package/lib/index.js +1 -1
- package/lib/locale/de-DE.js +2 -0
- package/lib/locale/de-DE.js.map +2 -2
- package/lib/locale/en-US.js +2 -0
- package/lib/locale/en-US.js.map +2 -2
- package/lib/locale/zh-CN.js +3 -1
- package/lib/locale/zh-CN.js.map +2 -2
- package/lib/renderers/Action.d.ts +7 -0
- package/lib/renderers/Action.js.map +2 -2
- package/lib/renderers/CRUD.js +21 -6
- package/lib/renderers/CRUD.js.map +2 -2
- package/lib/renderers/Collapse.js +2 -2
- package/lib/renderers/Collapse.js.map +2 -2
- package/lib/renderers/Dialog.js +0 -3
- package/lib/renderers/Dialog.js.map +2 -2
- package/lib/renderers/Drawer.js +0 -3
- package/lib/renderers/Drawer.js.map +2 -2
- package/lib/renderers/DropDownButton.d.ts +5 -1
- package/lib/renderers/DropDownButton.js +8 -6
- package/lib/renderers/DropDownButton.js.map +2 -2
- package/lib/renderers/Form/Checkbox.d.ts +5 -0
- package/lib/renderers/Form/Checkbox.js +4 -0
- package/lib/renderers/Form/Checkbox.js.map +2 -2
- package/lib/renderers/Form/Combo.js +2 -2
- package/lib/renderers/Form/Combo.js.map +2 -2
- package/lib/renderers/Form/InputFile.js +2 -2
- package/lib/renderers/Form/InputFile.js.map +2 -2
- package/lib/renderers/Form/InputImage.js +5 -3
- package/lib/renderers/Form/InputImage.js.map +2 -2
- package/lib/renderers/Form/Options.js +6 -3
- package/lib/renderers/Form/Options.js.map +2 -2
- package/lib/renderers/Form/Picker.js +2 -2
- package/lib/renderers/Form/Picker.js.map +2 -2
- package/lib/renderers/Form/wrapControl.js +2 -2
- package/lib/renderers/Form/wrapControl.js.map +2 -2
- package/lib/renderers/IFrame.js +2 -2
- package/lib/renderers/IFrame.js.map +2 -2
- package/lib/renderers/Image.d.ts +1 -0
- package/lib/renderers/Image.js +15 -1
- package/lib/renderers/Image.js.map +2 -2
- package/lib/renderers/Link.d.ts +16 -3
- package/lib/renderers/Link.js +16 -13
- package/lib/renderers/Link.js.map +2 -2
- package/lib/renderers/Log.d.ts +2 -2
- package/lib/renderers/Log.js +7 -1
- package/lib/renderers/Log.js.map +2 -2
- package/lib/renderers/Nav.d.ts +62 -36
- package/lib/renderers/Nav.js +248 -90
- package/lib/renderers/Nav.js.map +2 -2
- package/lib/renderers/SparkLine.d.ts +4 -0
- package/lib/renderers/SparkLine.js.map +2 -2
- package/lib/renderers/Table/ColumnToggler.d.ts +113 -0
- package/lib/renderers/Table/ColumnToggler.js +216 -0
- package/lib/renderers/Table/ColumnToggler.js.map +13 -0
- package/lib/renderers/Table/ItemActionsWrapper.d.ts +11 -0
- package/lib/renderers/Table/ItemActionsWrapper.js +31 -0
- package/lib/renderers/Table/ItemActionsWrapper.js.map +13 -0
- package/lib/renderers/Table/TableBody.d.ts +4 -0
- package/lib/renderers/Table/TableCell.js +3 -1
- package/lib/renderers/Table/TableCell.js.map +2 -2
- package/lib/renderers/Table/index.d.ts +14 -1
- package/lib/renderers/Table/index.js +116 -36
- package/lib/renderers/Table/index.js.map +2 -2
- package/lib/store/table.d.ts +257 -1
- package/lib/store/table.js +41 -6
- package/lib/store/table.js.map +2 -2
- package/lib/themes/ang-ie11.css +393 -90
- package/lib/themes/ang.css +393 -90
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +393 -90
- package/lib/themes/antd.css +393 -90
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +904 -263
- package/lib/themes/cxd.css +904 -263
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +393 -90
- package/lib/themes/dark.css +393 -90
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +904 -263
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/api.js +4 -4
- package/lib/utils/api.js.map +2 -2
- package/lib/utils/handleAction.d.ts +7 -0
- package/lib/utils/handleAction.js +30 -0
- package/lib/utils/handleAction.js.map +13 -0
- package/lib/utils/helper.d.ts +1 -1
- package/lib/utils/helper.js +3 -3
- package/lib/utils/helper.js.map +2 -2
- package/lib/utils/tpl-builtin.d.ts +1 -1
- package/lib/utils/tpl-builtin.js +25 -15
- package/lib/utils/tpl-builtin.js.map +2 -2
- package/package.json +1 -1
- package/schema.json +322 -261
- package/scss/_properties.scss +39 -4
- package/scss/_utilities.scss +4 -0
- package/scss/components/_button.scss +4 -5
- package/scss/components/_collapse.scss +26 -8
- package/scss/components/_column-toggler.scss +234 -0
- package/scss/components/_dropdown.scss +2 -1
- package/scss/components/_images.scss +2 -1
- package/scss/components/_link.scss +6 -0
- package/scss/components/_nav.scss +231 -223
- package/scss/components/_page.scss +5 -4
- package/scss/components/_progress.scss +2 -0
- package/scss/components/_steps.scss +1 -1
- package/scss/components/_table.scss +25 -1
- package/scss/components/form/_color.scss +1 -0
- package/scss/components/form/_date-range.scss +2 -0
- package/scss/components/form/_date.scss +2 -0
- package/scss/components/form/_fieldset.scss +1 -2
- package/scss/components/form/_file.scss +5 -4
- package/scss/components/form/_image.scss +7 -2
- package/scss/components/form/_list.scss +1 -0
- package/scss/components/form/_location.scss +1 -1
- package/scss/components/form/_text.scss +13 -0
- package/scss/components/form/_textarea.scss +10 -0
- package/scss/components/form/_transfer.scss +2 -0
- package/scss/themes/_common.scss +2 -0
- package/scss/themes/_cxd-colors.scss +56 -0
- package/scss/themes/_cxd-variables.scss +215 -90
- package/scss/themes/cxd.scss +366 -0
- package/sdk/ang-ie11.css +569 -235
- package/sdk/ang.css +512 -151
- package/sdk/antd-ie11.css +558 -224
- package/sdk/antd.css +512 -151
- package/sdk/charts.js +13 -13
- package/sdk/color-picker.js +67 -67
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +1506 -870
- package/sdk/cxd.css +1064 -324
- package/sdk/dark-ie11.css +569 -235
- package/sdk/dark.css +512 -151
- package/sdk/exceljs.js +1 -1
- package/sdk/ie11-patch.css +1 -0
- package/sdk/locale/de-DE.js +2 -0
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +22 -22
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +1506 -870
- package/sdk/sdk.css +1064 -324
- package/sdk/sdk.js +1138 -1118
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +1 -1
- package/sdk/tinymce.js +57 -57
- package/src/Schema.ts +18 -0
- package/src/components/Alert.tsx +3 -1
- package/src/components/Badge.tsx +36 -24
- package/src/components/Collapse.tsx +14 -9
- package/src/components/DatePicker.tsx +1 -1
- package/src/components/DateRangePicker.tsx +23 -11
- package/src/components/InputBox.tsx +1 -1
- package/src/components/Link.tsx +94 -0
- package/src/components/MonthRangePicker.tsx +10 -2
- package/src/components/RichText.tsx +17 -57
- package/src/components/Select.tsx +3 -0
- package/src/components/SparkLine.tsx +4 -1
- package/src/components/Toast.tsx +5 -5
- package/src/components/Tree.tsx +6 -8
- package/src/components/icons.tsx +13 -0
- package/src/icons/clock.svg +1 -0
- package/src/icons/status-close.svg +10 -0
- package/src/icons/status-fail.svg +10 -0
- package/src/icons/status-info.svg +8 -0
- package/src/icons/status-success.svg +10 -0
- package/src/icons/status-warning.svg +8 -0
- package/src/locale/de-DE.ts +2 -0
- package/src/locale/en-US.ts +2 -0
- package/src/locale/zh-CN.ts +3 -1
- package/src/renderers/Action.tsx +5 -0
- package/src/renderers/CRUD.tsx +31 -26
- package/src/renderers/Collapse.tsx +1 -1
- package/src/renderers/Dialog.tsx +0 -4
- package/src/renderers/Drawer.tsx +0 -4
- package/src/renderers/DropDownButton.tsx +19 -14
- package/src/renderers/Form/Checkbox.tsx +8 -0
- package/src/renderers/Form/Combo.tsx +2 -3
- package/src/renderers/Form/InputFile.tsx +2 -1
- package/src/renderers/Form/InputImage.tsx +5 -2
- package/src/renderers/Form/Options.tsx +16 -5
- package/src/renderers/Form/Picker.tsx +3 -2
- package/src/renderers/Form/wrapControl.tsx +2 -2
- package/src/renderers/IFrame.tsx +2 -1
- package/src/renderers/Image.tsx +10 -0
- package/src/renderers/Link.tsx +36 -11
- package/src/renderers/Log.tsx +16 -3
- package/src/renderers/Nav.tsx +255 -100
- package/src/renderers/SparkLine.tsx +5 -0
- package/src/renderers/Table/ColumnToggler.tsx +544 -0
- package/src/renderers/Table/ItemActionsWrapper.tsx +44 -0
- package/src/renderers/Table/TableCell.tsx +16 -1
- package/src/renderers/Table/index.tsx +179 -47
- package/src/store/table.ts +57 -6
- package/src/utils/api.ts +13 -4
- package/src/utils/handleAction.ts +41 -0
- package/src/utils/helper.ts +4 -4
- package/src/utils/tpl-builtin.ts +48 -17
- package/sdk.zip +0 -0
package/sdk/cxd.css
CHANGED
@@ -19134,24 +19134,24 @@ readers do not read off random characters that represent icons */
|
|
19134
19134
|
--black: #000;
|
19135
19135
|
--white: #fff;
|
19136
19136
|
--primary: #2468f2;
|
19137
|
-
--primary-onHover: #
|
19138
|
-
--primary-onActive: #
|
19139
|
-
--secondary: #
|
19140
|
-
--secondary-onHover: #
|
19141
|
-
--secondary-onActive: #
|
19142
|
-
--success: #
|
19143
|
-
--success-onHover: #
|
19144
|
-
--success-onActive: #
|
19137
|
+
--primary-onHover: #4f86f4;
|
19138
|
+
--primary-onActive: #1c53c1;
|
19139
|
+
--secondary: #b4b6ba;
|
19140
|
+
--secondary-onHover: #a0a3a8;
|
19141
|
+
--secondary-onActive: #999ca2;
|
19142
|
+
--success: #0bc286;
|
19143
|
+
--success-onHover: #099e6d;
|
19144
|
+
--success-onActive: #089265;
|
19145
19145
|
--info: #2468f2;
|
19146
19146
|
--info-onHover: #0d54e2;
|
19147
19147
|
--info-onActive: #0d4fd6;
|
19148
|
-
--warning: #
|
19149
|
-
--warning-onHover: #
|
19150
|
-
--warning-onActive: #
|
19151
|
-
--danger: #
|
19152
|
-
--danger-onHover: #
|
19153
|
-
--danger-onActive: #
|
19154
|
-
--light: #
|
19148
|
+
--warning: #ffb200;
|
19149
|
+
--warning-onHover: #d99700;
|
19150
|
+
--warning-onActive: #cc8e00;
|
19151
|
+
--danger: #e8684a;
|
19152
|
+
--danger-onHover: #e44c28;
|
19153
|
+
--danger-onActive: #e2421d;
|
19154
|
+
--light: #1ac5ff;
|
19155
19155
|
--dark: #343a40;
|
19156
19156
|
--fontFamilyMonospace: SFMono-Regular, Menlo, Monaco, Consolas,
|
19157
19157
|
"Liberation Mono", "Courier New", monospace;
|
@@ -19278,7 +19278,7 @@ readers do not read off random characters that represent icons */
|
|
19278
19278
|
--Button--danger-border: var(--Button--danger-bg);
|
19279
19279
|
--Button--danger-color: var(--button-color);
|
19280
19280
|
--Button--danger-onActive-bg: var(--danger-onActive);
|
19281
|
-
--Button--danger-onActive-border: #
|
19281
|
+
--Button--danger-onActive-border: #d73f1b;
|
19282
19282
|
--Button--danger-onActive-color: var(--Button--danger-color);
|
19283
19283
|
--Button--danger-onHover-bg: var(--danger-onHover);
|
19284
19284
|
--Button--danger-onHover-border: var(--danger-onActive);
|
@@ -19325,11 +19325,11 @@ readers do not read off random characters that represent icons */
|
|
19325
19325
|
--Button--light-bg: var(--light);
|
19326
19326
|
--Button--light-border: var(--borderColor);
|
19327
19327
|
--Button--light-color: var(--text-color);
|
19328
|
-
--Button--light-onActive-bg: #
|
19329
|
-
--Button--light-onActive-border: #
|
19328
|
+
--Button--light-onActive-bg: #00ace6;
|
19329
|
+
--Button--light-onActive-border: #00a2d9;
|
19330
19330
|
--Button--light-onActive-color: var(--Button--light-color);
|
19331
|
-
--Button--light-onHover-bg: #
|
19332
|
-
--Button--light-onHover-border: #
|
19331
|
+
--Button--light-onHover-bg: #00b5f3;
|
19332
|
+
--Button--light-onHover-border: #00ace6;
|
19333
19333
|
--Button--light-onHover-color: var(--Button--light-color);
|
19334
19334
|
--Button--link-color: var(--primary);
|
19335
19335
|
--Button--link-onDisabled-color: #4b5563;
|
@@ -19358,7 +19358,7 @@ readers do not read off random characters that represent icons */
|
|
19358
19358
|
--Button--secondary-border: var(--Button--secondary-bg);
|
19359
19359
|
--Button--secondary-color: var(--button-color);
|
19360
19360
|
--Button--secondary-onActive-bg: var(--secondary-onActive);
|
19361
|
-
--Button--secondary-onActive-border: #
|
19361
|
+
--Button--secondary-onActive-border: #93969b;
|
19362
19362
|
--Button--secondary-onActive-color: var(--Button--secondary-color);
|
19363
19363
|
--Button--secondary-onHover-bg: var(--secondary-onHover);
|
19364
19364
|
--Button--secondary-onHover-border: var(--secondary-onActive);
|
@@ -19378,7 +19378,7 @@ readers do not read off random characters that represent icons */
|
|
19378
19378
|
--Button--success-border: var(--Button--success-bg);
|
19379
19379
|
--Button--success-color: var(--button-color);
|
19380
19380
|
--Button--success-onActive-bg: var(--success-onActive);
|
19381
|
-
--Button--success-onActive-border: #
|
19381
|
+
--Button--success-onActive-border: #08865c;
|
19382
19382
|
--Button--success-onActive-color: var(--Button--success-color);
|
19383
19383
|
--Button--success-onHover-bg: var(--success-onHover);
|
19384
19384
|
--Button--success-onHover-border: var(--success-onActive);
|
@@ -19395,7 +19395,7 @@ readers do not read off random characters that represent icons */
|
|
19395
19395
|
--Button--warning-border: var(--Button--warning-bg);
|
19396
19396
|
--Button--warning-color: var(--button-color);
|
19397
19397
|
--Button--warning-onActive-bg: var(--warning-onActive);
|
19398
|
-
--Button--warning-onActive-border: #
|
19398
|
+
--Button--warning-onActive-border: #bf8600;
|
19399
19399
|
--Button--warning-onActive-color: var(--Button--warning-color);
|
19400
19400
|
--Button--warning-onHover-bg: var(--warning-onHover);
|
19401
19401
|
--Button--warning-onHover-border: var(--warning-onActive);
|
@@ -19427,6 +19427,7 @@ readers do not read off random characters that represent icons */
|
|
19427
19427
|
--Button-onActive-border: var(--primary);
|
19428
19428
|
--Button-onDisabled-borderColor: #dee2e6;
|
19429
19429
|
--Button-onDisabled-opacity: 0.65;
|
19430
|
+
--Button-onDisabled-bg: #f2f3f3;
|
19430
19431
|
--Button-onFocus-boxShadow: none;
|
19431
19432
|
--Button-paddingX: 0.75rem;
|
19432
19433
|
--Button-paddingX-right: 0.625rem;
|
@@ -19615,6 +19616,19 @@ readers do not read off random characters that represent icons */
|
|
19615
19616
|
--Combo-toolbarBtn-paddingY: 0.125rem;
|
19616
19617
|
--Copyable-iconColor: var(--icon-color);
|
19617
19618
|
--Copyable-onHover-iconColor: var(--icon-onHover-color);
|
19619
|
+
--Collapse-border: none;
|
19620
|
+
--Collapse-border-color: var(--borderColorLight);
|
19621
|
+
--Collapse-header-fontSize: var(--fontSizeMd);
|
19622
|
+
--Collapse-header-fontWeight: var(--fontWeightNormal);
|
19623
|
+
--Collapse-header-padding: 1.125rem 0 var(--gap-xs) 0;
|
19624
|
+
--Collapse-header-bg: transparent;
|
19625
|
+
--Collapse-header-onHover-bg: transparent;
|
19626
|
+
--Collapse-header-collapsed-borderBottom: var(--borderWidth) solid
|
19627
|
+
var(--Collapse-border-color);
|
19628
|
+
--Collapse-content-padding: 1.125rem 0;
|
19629
|
+
--Collapse-content-color: var(--body-color);
|
19630
|
+
--Collapse-content-fontSize: var(--body-size);
|
19631
|
+
--Collapse-content-fontWeight: var(--body-weight);
|
19618
19632
|
--Crud-toolbar-gap: var(--gap-xs);
|
19619
19633
|
--Crud-toolbar-height: 1.875rem;
|
19620
19634
|
--Crud-toolbar-lineHeight: var(--lineHeightBase);
|
@@ -19640,6 +19654,7 @@ readers do not read off random characters that represent icons */
|
|
19640
19654
|
) / 2 - var(--DatePicker-borderWidth)
|
19641
19655
|
);
|
19642
19656
|
--DatePicker-placeholderColor: var(--Form-input-placeholderColor);
|
19657
|
+
--LocationPicker-borderRadius: var(--Form-input-borderWidth);
|
19643
19658
|
--Divider-borderStyle: dashed;
|
19644
19659
|
--Drawer-bg: var(--background);
|
19645
19660
|
--Drawer-body-padding: var(--gap-base);
|
@@ -19673,8 +19688,9 @@ readers do not read off random characters that represent icons */
|
|
19673
19688
|
--DropDown-menu-paddingX: 0;
|
19674
19689
|
--DropDown-menu-paddingY: var(--gap-xs);
|
19675
19690
|
--DropDown-menuItem-onHover-bg: var(--ListMenu-item--onHover-bg);
|
19676
|
-
--DropDown-menuItem-
|
19677
|
-
--DropDown-menuItem-
|
19691
|
+
--DropDown-menuItem-color: var(--text-color);
|
19692
|
+
--DropDown-menuItem-onHover-color: var(--primary);
|
19693
|
+
--DropDown-menuItem-onActive-color: var(--primary);
|
19678
19694
|
--DropDown-menuItem-onDisabled-color: var(--text--muted-color);
|
19679
19695
|
--DropDown-menuItem-paddingX: var(--gap-sm);
|
19680
19696
|
--DropDown-menuItem-paddingY: calc(
|
@@ -19736,6 +19752,7 @@ readers do not read off random characters that represent icons */
|
|
19736
19752
|
) / 2
|
19737
19753
|
);
|
19738
19754
|
--Form-input-placeholderColor: var(--text--muted-color);
|
19755
|
+
--Form-input-onDisabled-color: var(--text--muted-color);
|
19739
19756
|
--Form-item-gap: var(--gap-base);
|
19740
19757
|
--Form-label-paddingTop: calc(
|
19741
19758
|
(
|
@@ -19794,6 +19811,7 @@ readers do not read off random characters that represent icons */
|
|
19794
19811
|
--IconPicker-tabs-bg: #f0f3f4;
|
19795
19812
|
--ImageControl-addBtn-bg: var(--Button--default-bg);
|
19796
19813
|
--ImageControl-addBtn-border: var(--Button--default-border);
|
19814
|
+
--ImageControl-addBtn-borderRadius: 0;
|
19797
19815
|
--ImageControl-addBtn-color: var(--Button--default-color);
|
19798
19816
|
--ImageControl-addBtn-onActive-bg: #e6e6e6;
|
19799
19817
|
--ImageControl-addBtn-onActive-border: #adb4bf;
|
@@ -19806,6 +19824,8 @@ readers do not read off random characters that represent icons */
|
|
19806
19824
|
--ImageControl-addBtn-onHover-bg: #ececec;
|
19807
19825
|
--ImageControl-addBtn-onHover-border: #b4bbc5;
|
19808
19826
|
--ImageControl-addBtn-onHover-color: var(--Button--default-color);
|
19827
|
+
--ImageControl-progress-borderRadius: 0;
|
19828
|
+
--FileControl-progress-borderRadius: 0;
|
19809
19829
|
--InputGroup-addOn-bg: var(--Form-input-addOnBg);
|
19810
19830
|
--InputGroup-addOn-borderColor: var(--Form-input-borderColor);
|
19811
19831
|
--InputGroup-addOn-borderRadius: var(--Form-input-borderRadius);
|
@@ -19921,6 +19941,7 @@ readers do not read off random characters that represent icons */
|
|
19921
19941
|
--ListControl-item-bg: var(--white);
|
19922
19942
|
--ListControl-item-borderColor: var(--borderColor);
|
19923
19943
|
--ListControl-item-borderWidth: var(--borderWidth);
|
19944
|
+
--ListControl-item-borderRadius: 0.1875rem;
|
19924
19945
|
--ListControl-item-color: var(--text-color);
|
19925
19946
|
--ListControl-item-onActive-after-borderColor: var(--primary);
|
19926
19947
|
--ListControl-item-onActive-before-bg: var(--white);
|
@@ -20041,7 +20062,7 @@ readers do not read off random characters that represent icons */
|
|
20041
20062
|
--Number-handler-onHover-color: var(--text-color);
|
20042
20063
|
--Number-handler-width: var(--gap-lg);
|
20043
20064
|
--Number-onDisabled-bg: var(--Form-input-bg);
|
20044
|
-
--Page-aside-bg: #
|
20065
|
+
--Page-aside-bg: #0ec0fc;
|
20045
20066
|
--Page-aside-maxWidth: 18.75rem;
|
20046
20067
|
--Page-aside-width: 12.5rem;
|
20047
20068
|
--Page-body-padding: var(--gap-base);
|
@@ -20188,6 +20209,8 @@ readers do not read off random characters that represent icons */
|
|
20188
20209
|
--Table-toolbar-marginX: 0;
|
20189
20210
|
--Table-toolbar-marginY: var(--gap-base);
|
20190
20211
|
--Table-tree-borderColor: var(--Table-borderColor);
|
20212
|
+
--Table-searchableForm-backgroundColor: #f6f7f8;
|
20213
|
+
--Table-searchableForm-borderRadius: 0.25rem;
|
20191
20214
|
--TableCell--edge-paddingX: var(--gap-md);
|
20192
20215
|
--TableCell-filterBtn--onActive-color: var(--primary);
|
20193
20216
|
--TableCell-filterBtn-width: 1rem;
|
@@ -20373,15 +20396,24 @@ readers do not read off random characters that represent icons */
|
|
20373
20396
|
--Steps-sub-title-color: var(--text-color);
|
20374
20397
|
--Steps-line-bg: var(--Steps-bg);
|
20375
20398
|
--Steps-line-success-bg: var(--Steps-status-success);
|
20399
|
+
--Progress-borderRadius: var(--borderRadius);
|
20400
|
+
--ColumnToggler-backgroundColor: var(--white);
|
20401
|
+
--ColumnToggler-borderRadius: 0.25rem;
|
20402
|
+
--ColumnToggler-lineHeight: 1.5rem;
|
20403
|
+
--ColumnToggler-title-fontColor: #080e1a;
|
20404
|
+
--ColumnToggler-fontColor: #151a26;
|
20405
|
+
--ColumnToggler-item-backgroundColor: #f6f7f8;
|
20406
|
+
--ColumnToggler-item-backgroundColor-onHover: rgba(36, 104, 242, 0.1);
|
20376
20407
|
}
|
20377
20408
|
|
20378
20409
|
:root {
|
20379
20410
|
--borderColor: #eceff8;
|
20411
|
+
--borderRadius: 0.25rem;
|
20380
20412
|
--body-bg: #ffffff;
|
20381
20413
|
--text-color: #151a26;
|
20382
20414
|
--text--muted-color: #b4b6ba;
|
20383
20415
|
--text--loud-color: #333;
|
20384
|
-
--link-onHover-decoration:
|
20416
|
+
--link-onHover-decoration: underline;
|
20385
20417
|
--icon-color: #999;
|
20386
20418
|
--icon-onHover-color: var(--primary);
|
20387
20419
|
--Layout-header-boxShadow: none;
|
@@ -20414,16 +20446,21 @@ readers do not read off random characters that represent icons */
|
|
20414
20446
|
--Page-header-paddingX: var(--gap-md);
|
20415
20447
|
--Page-header-paddingY: 0.625rem;
|
20416
20448
|
--Form-item-gap: var(--gap-base);
|
20417
|
-
--Form-input-
|
20418
|
-
--Form-input-
|
20419
|
-
--Form-input-
|
20420
|
-
--Form-input-
|
20421
|
-
--Form-input-
|
20449
|
+
--Form-input-bg: #ffffff;
|
20450
|
+
--Form-input-color: #151a26;
|
20451
|
+
--Form-input-height: 2rem;
|
20452
|
+
--Form-input-borderColor: #dadbdd;
|
20453
|
+
--Form-input-borderRadius: 0.25rem;
|
20454
|
+
--Form-input-onHover-borderColor: #2468f2;
|
20455
|
+
--Form-input-onFocused-bg: #ffffff;
|
20456
|
+
--Form-input-onFocused-borderColor: #1c53c1;
|
20457
|
+
--Form-input-onError-borderColor: #e8684a;
|
20458
|
+
--Form-input-onError-bg: #ffffff;
|
20459
|
+
--Form-input-onDisabled-bg: #f2f2f4;
|
20460
|
+
--Form-input-onDisabled-borderColor: #dadbdd;
|
20461
|
+
--Form-input-onDisabled-color: #83868c;
|
20422
20462
|
--Form-input-paddingX: 0.625rem;
|
20423
20463
|
--Form-description-color: #999;
|
20424
|
-
--Form-input-onError-bg: #fffbfb;
|
20425
|
-
--Form-input-onDisabled-bg: #f5f5f5;
|
20426
|
-
--Form-input-onDisabled-borderColor: #ebebeb;
|
20427
20464
|
--Form--horizontal-label-whiteSpace: normal;
|
20428
20465
|
--Form--horizontal-label-widthXs: 3.125rem;
|
20429
20466
|
--Form--horizontal-label-widthSm: 4.375rem;
|
@@ -20435,24 +20472,25 @@ readers do not read off random characters that represent icons */
|
|
20435
20472
|
--Form-input-onFocus-addOnColor: var(--primary);
|
20436
20473
|
--Form-input-addOnDividerBorderWidth: 0;
|
20437
20474
|
--Form-select-borderWidth: 0.0625rem;
|
20438
|
-
--Form-select-borderRadius: 0;
|
20439
|
-
--Form-select-borderColor: #
|
20475
|
+
--Form-select-borderRadius: 0.25rem;
|
20476
|
+
--Form-select-borderColor: #dadbdd;
|
20440
20477
|
--Form-select-bg: var(--white);
|
20441
20478
|
--Form-select-onHover-bg: var(--white);
|
20442
20479
|
--Form-select-onHover-borderColor: var(--primary);
|
20443
20480
|
--Form-select-placeholderColor: #999;
|
20444
20481
|
--Form-select-color: #000;
|
20445
|
-
--Form-select-caret-iconColor: #
|
20446
|
-
--Form-select-caret-onHover-iconColor:
|
20482
|
+
--Form-select-caret-iconColor: #83868c;
|
20483
|
+
--Form-select-caret-onHover-iconColor: #83868c;
|
20447
20484
|
--Form-select-caret-fontSize: 0.75rem;
|
20448
20485
|
--Form-select-outer-borderWidth: 0;
|
20449
20486
|
--Form-select-outer-top: 2rem;
|
20450
20487
|
--Form-select-outer-boxShadow: 0.125rem 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
|
20451
|
-
--Form-select-menu-color: #
|
20452
|
-
--Form-select-menu-onHover-color: #
|
20453
|
-
--Form-select-menu-onHover-bg: #
|
20488
|
+
--Form-select-menu-color: #151a26;
|
20489
|
+
--Form-select-menu-onHover-color: #151a26;
|
20490
|
+
--Form-select-menu-onHover-bg: #e9f0fd;
|
20491
|
+
--Form-select-menu-onActive-color: #2468f2;
|
20454
20492
|
--Form-select-menu-height: 1.5rem;
|
20455
|
-
--Form-select-popoverGap: 0.
|
20493
|
+
--Form-select-popoverGap: 0.25rem;
|
20456
20494
|
--Form-select-search-height: 1.875rem;
|
20457
20495
|
--Form-selectValue-color: var(--primary);
|
20458
20496
|
--InputGroup-select-borderWidth: 0.0625rem;
|
@@ -20486,14 +20524,19 @@ readers do not read off random characters that represent icons */
|
|
20486
20524
|
--Checkbox--sm--full-inner-size: 0.625rem;
|
20487
20525
|
--Radio-size: 1rem;
|
20488
20526
|
--Radio-inner-size: 0.625rem;
|
20489
|
-
--Switch-
|
20490
|
-
--Switch-
|
20491
|
-
--Switch-
|
20492
|
-
--Switch-
|
20493
|
-
--Switch-
|
20494
|
-
--Switch-
|
20527
|
+
--Switch-height: 1.25rem;
|
20528
|
+
--Switch-width: 2.75rem;
|
20529
|
+
--Switch-valueColor: #ffffff;
|
20530
|
+
--Switch-bgColor: #cecfd1;
|
20531
|
+
--Switch-onActive-bgColor: #b4b6ba;
|
20532
|
+
--Switch-onHover-bgColor: #b4b6ba;
|
20533
|
+
--Switch-checked-bgColor: var(--primary);
|
20534
|
+
--Switch-checked-onHover-bgColor: #1c53c1;
|
20535
|
+
--Switch-checked-onActive-bgColor: #1c53c1;
|
20536
|
+
--Switch-onDisabled-bgColor: #d3e0fc;
|
20537
|
+
--Switch-onDisabled-color: #ffffff;
|
20495
20538
|
--ColorPicker-borderWidth: 0.0625rem;
|
20496
|
-
--ColorPicker-borderRadius: 0;
|
20539
|
+
--ColorPicker-borderRadius: 0.25rem;
|
20497
20540
|
--ColorPicker-bg: var(--white);
|
20498
20541
|
--ColorPicker-onHover-bg: var(--white);
|
20499
20542
|
--ColorPicker-onHover-borderColor: var(--primary);
|
@@ -20501,8 +20544,20 @@ readers do not read off random characters that represent icons */
|
|
20501
20544
|
--ColorPicker-placeholderColor: #999;
|
20502
20545
|
--ColorPicker-onDisabled-bg: #f5f5f5;
|
20503
20546
|
--ColorPicker-onDisabled-color: #999;
|
20547
|
+
--Collapse-border: 0.0625rem solid #dadbdd;
|
20548
|
+
--Collapse-border-color: #dadbdd;
|
20549
|
+
--Collapse-header-fontSize: 14px;
|
20550
|
+
--Collapse-header-fontWeight: 500;
|
20551
|
+
--Collapse-header-padding: 1rem;
|
20552
|
+
--Collapse-header-bg: #f2f2f4;
|
20553
|
+
--Collapse-header-onHover-bg: #e6e6e8;
|
20554
|
+
--Collapse-header-collapsed-borderBottom: none;
|
20555
|
+
--Collapse-content-padding: 1rem;
|
20556
|
+
--Collapse-content-color: #5e626a;
|
20557
|
+
--Collapse-content-fontSize: 12px;
|
20558
|
+
--Collapse-content-fontWeight: 400;
|
20504
20559
|
--DatePicker-borderWidth: 0.0625rem;
|
20505
|
-
--DatePicker-borderRadius: 0;
|
20560
|
+
--DatePicker-borderRadius: 0.25rem;
|
20506
20561
|
--DatePicker-bg: var(--white);
|
20507
20562
|
--DatePicker-onHover-bg: var(--white);
|
20508
20563
|
--DatePicker-color: #000;
|
@@ -20512,30 +20567,59 @@ readers do not read off random characters that represent icons */
|
|
20512
20567
|
--DatePicker-iconColor: #666;
|
20513
20568
|
--DatePicker-onHover-iconColor: var(--primary);
|
20514
20569
|
--DatePicker-onHover-borderColor: var(--primary);
|
20570
|
+
--LocationPicker-borderRadius: 0.25rem;
|
20515
20571
|
--Calendar-input-borderRadius: 0;
|
20572
|
+
--Calendar-input-borderRadius: 0.25rem;
|
20516
20573
|
--Calendar-shortcuts-bg: #f5f5f5;
|
20517
20574
|
--Calendar-shortcuts-height: 1.875rem;
|
20518
20575
|
--Button-borderWidth: 0.0625rem;
|
20519
20576
|
--Button-boxShadow: none;
|
20520
20577
|
--Button-onActive-boxShadow: none;
|
20521
|
-
--Button
|
20522
|
-
--Button
|
20523
|
-
--Button-paddingX: 0.625rem;
|
20578
|
+
--Button-borderRadius: 0.25rem;
|
20579
|
+
--Button-paddingX: 0.75rem;
|
20524
20580
|
--Button--lg-height: 2.5rem;
|
20525
20581
|
--Button--lg-fontSize: 0.875rem;
|
20526
|
-
--Button--
|
20527
|
-
--Button--
|
20582
|
+
--Button--lg-lineHeight: 30 / 20;
|
20583
|
+
--Button--lg-paddingX: 1rem;
|
20584
|
+
--Button--default-bg: #ffffff;
|
20585
|
+
--Button--default-border: #dadbdd;
|
20586
|
+
--Button--default-color: #151a26;
|
20587
|
+
--Button--default-onHover-bg: #ffffff;
|
20588
|
+
--Button--default-onHover-border: var(--primary);
|
20589
|
+
--Button--default-onHover-color: var(--primary);
|
20590
|
+
--Button--default-onActive-bg: #ffffff;
|
20591
|
+
--Button--default-onActive-border: #1c53c1;
|
20592
|
+
--Button--default-onActive-color: #1c53c1;
|
20593
|
+
--Button--emphasize-bg: #ffffff;
|
20594
|
+
--Button--emphasize-color: var(--primary);
|
20595
|
+
--Button--emphasize-onHover-bg: #ffffff;
|
20596
|
+
--Button--emphasize-onHover-border: var(--primary);
|
20597
|
+
--Button--emphasize-onHover-color: #4f86f4;
|
20598
|
+
--Button--emphasize-onActive-bg: #ffffff;
|
20599
|
+
--Button--emphasize-onActive-border: #1c53c1;
|
20600
|
+
--Button--emphasize-onActive-color: #1c53c1;
|
20528
20601
|
--Button--primary-bg: var(--primary);
|
20529
20602
|
--Button--primary-border: var(--primary);
|
20530
|
-
--Button--primary-onHover-
|
20531
|
-
--Button--primary-
|
20603
|
+
--Button--primary-onHover-bg: #4f86f4;
|
20604
|
+
--Button--primary-onHover-border: #4f86f4;
|
20605
|
+
--Button--primary-onHover-color: #ffffff;
|
20606
|
+
--Button--primary-onActive-bg: #1c53c1;
|
20607
|
+
--Button--primary-onActive-border: #1c53c1;
|
20608
|
+
--Button--primary-onActive-color: #ffffff;
|
20609
|
+
--Button--light-border: var(--light);
|
20610
|
+
--Button--light-color: var(--button-color);
|
20611
|
+
--Button-onDisabled-borderColor: #e6e6e8;
|
20612
|
+
--Button-onDisabled-opacity: 0.65;
|
20613
|
+
--Button-onDisabled-bg: #e6e6e8;
|
20532
20614
|
--Button--danger-bg: #ea2e2e;
|
20533
20615
|
--Button--danger-onHover-bg: #f64545;
|
20616
|
+
--Button--danger-onHover-border: #f64545;
|
20534
20617
|
--Button--danger-onActive-bg: #d72b2b;
|
20618
|
+
--Button--danger-onActive-border: #d72b2b;
|
20535
20619
|
--ButtonGroup-divider-width: 0.0625rem;
|
20536
20620
|
--ButtonGroup-divider-color: #fff;
|
20537
20621
|
--ButtonGroup--primary-isActive-color: var(--primary);
|
20538
|
-
--ButtonGroup--primary-isActive-bg:
|
20622
|
+
--ButtonGroup--primary-isActive-bg: #ffffff;
|
20539
20623
|
--Button--link-color: var(--primary);
|
20540
20624
|
--Button--link-onHover-color: #209bfd;
|
20541
20625
|
--Spinner-bg: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIKImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB3aWR0aD0iMTkycHgiIGhlaWdodD0iMTkycHgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMzQuNSA2MC41IEw5NiAyNC41IEwxNTguNSA2MC41IFYxMzIgTDk2LjUgMTY3LjUgTDM0LjUgMTMyIEwzNC41IDYwLjUgWiIgc3Ryb2tlPSIjMTA4Y2VlIgpzdHlsZT0ic3Ryb2tlLXdpZHRoOiAxNnB4OwogICAgICAgc3Ryb2tlLW9wYWNpdHk6IDE7CiAgICAgICBmaWxsLW9wYWNpdHk6IDA7CiAgICAgICBzdHJva2UtZGFzaGFycmF5OiA4MDAgODAwOwogICAgICAgc3Ryb2tlLWRhc2hvZmZzZXQ6IDgwMDsiPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuNSAwIC41IDEiIGF0dHJpYnV0ZU5hbWU9InN0cm9rZS1kYXNoYXJyYXkiIGlkPSJsaW5lIiBmcm9tPSI4MDAgODAwIiB0bz0iODAwIDgwMCIgYmVnaW49ImZpcnN0LmVuZCIgZHVyPSIxLjJzIiBmaWxsID0gImZyZWV6ZSIvPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuNSAwIC41IDEiIGF0dHJpYnV0ZU5hbWU9InN0cm9rZS1kYXNob2Zmc2V0IiBmcm9tPSI4MDAiIHRvPSItODAwIiBiZWdpbj0iZmlyc3QuZW5kIiBkdXI9IjEuMnMiIGZpbGwgPSAiZnJlZXplIi8+PC9wYXRoPjxjaXJjbGUgY3g9Ijk2LjUiIGN5PSI5Ni41IiByPSIxMCIgZmlsbD0iIzEwOGNlZSI+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iY3giIGlkPSJmaXJzdCIgdG89IjM0LjUiIGJlZ2luPSIwczsgc2Vjb25kLmVuZCArIDAuNyIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuOSAwIC4zIDEiIGF0dHJpYnV0ZU5hbWU9ImN5IiB0bz0iNjAuNSIgYmVnaW49IjBzOyBzZWNvbmQuZW5kICsgMC43IiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iciIgIHRvPSIyMCIgYmVnaW49IjBzOyBzZWNvbmQuZW5kICsgMC43IiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iY3giIGlkPSJzZWNvbmQiIGZyb209IjM0LjUiIHRvPSI5Ni41IiBiZWdpbj0iZmlyc3QuZW5kICsgMS4yIiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iY3kiIGZyb209IjYwLjUiIHRvPSI5Ni41IiBiZWdpbj0iZmlyc3QuZW5kICsgMS4yIiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iciIgIHRvPSIxMCIgYmVnaW49ImZpcnN0LmVuZCArIDEuMiIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjwvY2lyY2xlPjxjaXJjbGUgY3g9Ijk2LjUiIGN5PSI5Ni41IiByPSIxMCIgZmlsbD0iIzEwOGNlZSI+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iY3kiIHRvPSIyNC41IiBiZWdpbj0iMHM7IHNlY29uZC5lbmQgKyAwLjciIGR1cj0iMC41cyIgZmlsbCA9ICJmcmVlemUiLz48YW5pbWF0ZSBjYWxjTW9kZT0ic3BsaW5lIiBrZXlUaW1lcz0iMDsgMSIga2V5U3BsaW5lcz0iLjkgMCAuMyAxIiBhdHRyaWJ1dGVOYW1lPSJyIiAgdG89IjIwIiBiZWdpbj0iMHM7IHNlY29uZC5lbmQgKyAwLjciIGR1cj0iMC41cyIgZmlsbCA9ICJmcmVlemUiLz48YW5pbWF0ZSBjYWxjTW9kZT0ic3BsaW5lIiBrZXlUaW1lcz0iMDsgMSIga2V5U3BsaW5lcz0iLjkgMCAuMyAxIiBhdHRyaWJ1dGVOYW1lPSJjeSIgZnJvbT0iMjQuNSIgdG89Ijk2LjUiIGJlZ2luPSJmaXJzdC5lbmQgKyAxLjIiIGR1cj0iMC41cyIgZmlsbCA9ICJmcmVlemUiLz48YW5pbWF0ZSBjYWxjTW9kZT0ic3BsaW5lIiBrZXlUaW1lcz0iMDsgMSIga2V5U3BsaW5lcz0iLjkgMCAuMyAxIiBhdHRyaWJ1dGVOYW1lPSJyIiAgdG89IjEwIiBiZWdpbj0iZmlyc3QuZW5kICsgMS4yIiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PC9jaXJjbGU+PGNpcmNsZSBjeD0iOTYuNSIgY3k9Ijk2LjUiIHI9IjEwIiBmaWxsPSIjMTA4Y2VlIj48YW5pbWF0ZSBjYWxjTW9kZT0ic3BsaW5lIiBrZXlUaW1lcz0iMDsgMSIga2V5U3BsaW5lcz0iLjkgMCAuMyAxIiBhdHRyaWJ1dGVOYW1lPSJjeCIgZnJvbT0iOTYuNSIgdG89IjE1OC41IiBiZWdpbj0iMHM7IHNlY29uZC5lbmQgKyAwLjciIGR1cj0iMC41cyIgZmlsbCA9ICJmcmVlemUiLz48YW5pbWF0ZSBjYWxjTW9kZT0ic3BsaW5lIiBrZXlUaW1lcz0iMDsgMSIga2V5U3BsaW5lcz0iLjkgMCAuMyAxIiBhdHRyaWJ1dGVOYW1lPSJjeSIgZnJvbT0iOTYuNSIgdG89IjYwLjUiIGJlZ2luPSIwczsgc2Vjb25kLmVuZCArIDAuNyIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuOSAwIC4zIDEiIGF0dHJpYnV0ZU5hbWU9InIiICB0bz0iMjAiIGJlZ2luPSIwczsgc2Vjb25kLmVuZCArIDAuNyIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuOSAwIC4zIDEiIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSIxNTguNSIgdG89Ijk2LjUiIGJlZ2luPSJmaXJzdC5lbmQgKyAxLjIiIGR1cj0iMC41cyIgZmlsbCA9ICJmcmVlemUiLz48YW5pbWF0ZSBjYWxjTW9kZT0ic3BsaW5lIiBrZXlUaW1lcz0iMDsgMSIga2V5U3BsaW5lcz0iLjkgMCAuMyAxIiBhdHRyaWJ1dGVOYW1lPSJjeSIgZnJvbT0iNjAuNSIgdG89Ijk2LjUiIGJlZ2luPSJmaXJzdC5lbmQgKyAxLjIiIGR1cj0iMC41cyIgZmlsbCA9ICJmcmVlemUiLz48YW5pbWF0ZSBjYWxjTW9kZT0ic3BsaW5lIiBrZXlUaW1lcz0iMDsgMSIga2V5U3BsaW5lcz0iLjkgMCAuMyAxIiBhdHRyaWJ1dGVOYW1lPSJyIiAgdG89IjEwIiBiZWdpbj0iZmlyc3QuZW5kICsgMS4yIiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PC9jaXJjbGU+PGNpcmNsZSBjeD0iOTYuNSIgY3k9Ijk2LjUiIHI9IjEwIiBmaWxsPSIjMTA4Y2VlIj48YW5pbWF0ZSBjYWxjTW9kZT0ic3BsaW5lIiBrZXlUaW1lcz0iMDsgMSIga2V5U3BsaW5lcz0iLjkgMCAuMyAxIiBhdHRyaWJ1dGVOYW1lPSJjeCIgZnJvbT0iOTYuNSIgdG89IjE1OC41IiBiZWdpbj0iMHM7IHNlY29uZC5lbmQgKyAwLjciIGR1cj0iMC41cyIgZmlsbCA9ICJmcmVlemUiLz48YW5pbWF0ZSBjYWxjTW9kZT0ic3BsaW5lIiBrZXlUaW1lcz0iMDsgMSIga2V5U3BsaW5lcz0iLjkgMCAuMyAxIiBhdHRyaWJ1dGVOYW1lPSJjeSIgZnJvbT0iOTYuNSIgdG89IjEzMiIgYmVnaW49IjBzOyBzZWNvbmQuZW5kICsgMC43IiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iciIgIHRvPSIyMCIgYmVnaW49IjBzOyBzZWNvbmQuZW5kICsgMC43IiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iY3giIGZyb209IjE1OC41IiB0bz0iOTYuNSIgYmVnaW49ImZpcnN0LmVuZCArIDEuMiIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuOSAwIC4zIDEiIGF0dHJpYnV0ZU5hbWU9ImN5IiBmcm9tPSIxMzIiIHRvPSI5Ni41IiBiZWdpbj0iZmlyc3QuZW5kICsgMS4yIiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iciIgIHRvPSIxMCIgYmVnaW49ImZpcnN0LmVuZCArIDEuMiIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjwvY2lyY2xlPjxjaXJjbGUgY3g9Ijk2LjUiIGN5PSI5Ni41IiByPSIxMCIgZmlsbD0iIzEwOGNlZSI+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iY3kiIGZyb209Ijk2LjUiIHRvPSIxNjcuNSIgYmVnaW49IjBzOyBzZWNvbmQuZW5kICsgMC43IiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iciIgIHRvPSIyMCIgYmVnaW49IjBzOyBzZWNvbmQuZW5kICsgMC43IiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iY3kiIGZyb209IjE2Ny41IiB0bz0iOTYuNSIgYmVnaW49ImZpcnN0LmVuZCArIDEuMiIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuOSAwIC4zIDEiIGF0dHJpYnV0ZU5hbWU9InIiICB0bz0iMTAiIGJlZ2luPSJmaXJzdC5lbmQgKyAxLjIiIGR1cj0iMC41cyIgZmlsbCA9ICJmcmVlemUiLz48L2NpcmNsZT48Y2lyY2xlIGN4PSI5Ni41IiBjeT0iOTYuNSIgcj0iMTAiIGZpbGw9IiMxMDhjZWUiPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuOSAwIC4zIDEiIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSI5Ni41IiB0bz0iMzQuNSIgYmVnaW49IjBzOyBzZWNvbmQuZW5kICsgMC43IiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iY3kiIGZyb209Ijk2LjUiIHRvPSIxMzIiIGJlZ2luPSIwczsgc2Vjb25kLmVuZCArIDAuNyIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuOSAwIC4zIDEiIGF0dHJpYnV0ZU5hbWU9InIiICB0bz0iMjAiIGJlZ2luPSIwczsgc2Vjb25kLmVuZCArIDAuNyIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuOSAwIC4zIDEiIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSIzNC41IiB0bz0iOTYuNSIgYmVnaW49ImZpcnN0LmVuZCArIDEuMiIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjxhbmltYXRlIGNhbGNNb2RlPSJzcGxpbmUiIGtleVRpbWVzPSIwOyAxIiBrZXlTcGxpbmVzPSIuOSAwIC4zIDEiIGF0dHJpYnV0ZU5hbWU9ImN5IiBmcm9tPSIxMzIiIHRvPSI5Ni41IiBiZWdpbj0iZmlyc3QuZW5kICsgMS4yIiBkdXI9IjAuNXMiIGZpbGwgPSAiZnJlZXplIi8+PGFuaW1hdGUgY2FsY01vZGU9InNwbGluZSIga2V5VGltZXM9IjA7IDEiIGtleVNwbGluZXM9Ii45IDAgLjMgMSIgYXR0cmlidXRlTmFtZT0iciIgIHRvPSIxMCIgYmVnaW49ImZpcnN0LmVuZCArIDEuMiIgZHVyPSIwLjVzIiBmaWxsID0gImZyZWV6ZSIvPjwvY2lyY2xlPjwvc3ZnPg==");
|
@@ -20566,24 +20650,26 @@ readers do not read off random characters that represent icons */
|
|
20566
20650
|
--TableCell-filterPopOver-dropDownItem-padding: 0 0.625rem;
|
20567
20651
|
--ListControl-item-borderWidth: 0.0625rem;
|
20568
20652
|
--ListControl-item-borderColor: #ccc;
|
20653
|
+
--ListControl-item-borderRadius: 0.25rem;
|
20569
20654
|
--ListControl-item-paddingX: 0.625rem;
|
20570
20655
|
--ListControl-item-bg: var(--Button--default-bg);
|
20571
20656
|
--ListControl-item-color: var(--Button--default-color);
|
20572
20657
|
--ListControl-item-onHover-color: var(--primary);
|
20573
20658
|
--ListControl-item-onHover-bg: var(--Button--default-onHover-bg);
|
20574
20659
|
--ListControl-item-onHover-borderColor: var(--primary);
|
20575
|
-
--ListControl-item-onActive-bg:
|
20576
|
-
--ListControl-item-onActive-onHover-bg:
|
20577
|
-
--ListControl-item-onActive-color:
|
20578
|
-
--ListControl-item-onActive-borderColor:
|
20579
|
-
--ListControl-item-onActive-before-bg:
|
20580
|
-
--ListControl-item-onActive-after-borderColor:
|
20660
|
+
--ListControl-item-onActive-bg: #ffffff;
|
20661
|
+
--ListControl-item-onActive-onHover-bg: #ffffff;
|
20662
|
+
--ListControl-item-onActive-color: #1c53c1;
|
20663
|
+
--ListControl-item-onActive-borderColor: #1c53c1;
|
20664
|
+
--ListControl-item-onActive-before-bg: #1c53c1;
|
20665
|
+
--ListControl-item-onActive-after-borderColor: #ffffff;
|
20581
20666
|
--ListControl-item-onDisabled-opacity: 1;
|
20582
|
-
--ListControl-item-onDisabled-bg: #
|
20583
|
-
--ListControl-item-onDisabled-color: #
|
20584
|
-
--ListControl-item-onDisabled-borderColor: #
|
20667
|
+
--ListControl-item-onDisabled-bg: #e6e6e8;
|
20668
|
+
--ListControl-item-onDisabled-color: #b4b6ba;
|
20669
|
+
--ListControl-item-onDisabled-borderColor: #e6e6e8;
|
20585
20670
|
--ImageControl-addBtn-bg: #fff;
|
20586
20671
|
--ImageControl-addBtn-border: #dbdbdb;
|
20672
|
+
--ImageControl-addBtn-borderRadius: 0.25rem;
|
20587
20673
|
--ImageControl-addBtn-color: #666;
|
20588
20674
|
--ImageControl-addBtn-onHover-bg: var(--ImageControl-addBtn-bg);
|
20589
20675
|
--ImageControl-addBtn-onHover-border: var(--primary);
|
@@ -20594,19 +20680,30 @@ readers do not read off random characters that represent icons */
|
|
20594
20680
|
--ImageControl-addBtn-onDisabled-bg: #f5f5f5;
|
20595
20681
|
--ImageControl-addBtn-onDisabled-border: #ebebeb;
|
20596
20682
|
--ImageControl-addBtn-onDisabled-color: #ccc;
|
20683
|
+
--ImageControl-progress-borderRadius: 0.125rem;
|
20684
|
+
--FileControl-progress-borderRadius: 0.125rem;
|
20685
|
+
--Modal-title-fontSize: 14px;
|
20686
|
+
--Modal-title-color: 500;
|
20687
|
+
--Modal-title-fontWeight: #151a26;
|
20597
20688
|
--Modal-overlay-bg: rgba(0, 0, 0, 0.7);
|
20598
20689
|
--Modal-content-borderWidth: 0;
|
20599
20690
|
--Modal-content-borderRadius: 0;
|
20600
20691
|
--Modal-content-minHeight: 12.0625rem;
|
20601
|
-
--Modal-header-bg: #
|
20692
|
+
--Modal-header-bg: #fff;
|
20693
|
+
--Modal-header-paddingY: 0;
|
20694
|
+
--Modal-header-paddingX: 0;
|
20602
20695
|
--Modal-title-color: #333;
|
20603
20696
|
--Modal-body-paddingY: var(--gap-md);
|
20604
20697
|
--Modal-body-paddingX: var(--gap-md);
|
20605
20698
|
--Modal-body-borderTop: none;
|
20606
|
-
--Modal-body-borderBottom:
|
20607
|
-
--Modal-footer-marginX:
|
20608
|
-
--Modal-footer-
|
20699
|
+
--Modal-body-borderBottom: none;
|
20700
|
+
--Modal-footer-marginX: 0;
|
20701
|
+
--Modal-footer-marginY: 0;
|
20702
|
+
--Modal-footer-padding: 0;
|
20703
|
+
--Drawer-header-padding: 1rem 1.5rem;
|
20609
20704
|
--Drawer-widthBase: 25rem;
|
20705
|
+
--Drawer-header-bg: #fff;
|
20706
|
+
--Drawer-body-padding: 1.5rem;
|
20610
20707
|
--Remark-icon-fontSize: 0.75rem;
|
20611
20708
|
--Remark-iconColor: #999;
|
20612
20709
|
--Remark-onHover-iconColor: #fff;
|
@@ -20644,7 +20741,7 @@ readers do not read off random characters that represent icons */
|
|
20644
20741
|
--Pagination-onActive-backgroundColor: var(--white);
|
20645
20742
|
--Pagination-onActive-color: var(--primary);
|
20646
20743
|
--Pagination-onActive-border: 0.0625rem solid var(--primary);
|
20647
|
-
--Panel-borderRadius: 0;
|
20744
|
+
--Panel-borderRadius: 0.25rem;
|
20648
20745
|
--Panel-fixedBottom-boxShadow: 0 -2px 10px 0 rgba(0, 0, 0, 0.05);
|
20649
20746
|
--Panel--default-bg: #f5f5f5;
|
20650
20747
|
--Nav-item-fontSize: 1rem;
|
@@ -20657,21 +20754,22 @@ readers do not read off random characters that represent icons */
|
|
20657
20754
|
--TransferSelect--table-heading-bg: var(--white);
|
20658
20755
|
--TransferSelect--normal-heading-bg: #f6f7fb;
|
20659
20756
|
--TransferSelect-heading-borderBottom: 0;
|
20660
|
-
--Alert-height:
|
20661
|
-
--Alert-
|
20662
|
-
--Alert-
|
20757
|
+
--Alert-height: 2.5rem;
|
20758
|
+
--Alert-paddingX: 1rem;
|
20759
|
+
--Alert-fontSize: 12px;
|
20760
|
+
--Alert-borderRadius: 0.25rem;
|
20663
20761
|
--Alert-marginBottom: var(--Alert-md);
|
20664
|
-
--Alert--danger-color: #
|
20665
|
-
--Alert--danger-bg: #
|
20762
|
+
--Alert--danger-color: #5e626a;
|
20763
|
+
--Alert--danger-bg: #fdf0ee;
|
20666
20764
|
--Alert--danger-borderColor: transparent;
|
20667
|
-
--Alert--info-color: #
|
20668
|
-
--Alert--info-bg: #
|
20765
|
+
--Alert--info-color: #5e626a;
|
20766
|
+
--Alert--info-bg: #e9f0fd;
|
20669
20767
|
--Alert--info-borderColor: transparent;
|
20670
|
-
--Alert--success-color: #
|
20671
|
-
--Alert--success-bg: #
|
20768
|
+
--Alert--success-color: #5e626a;
|
20769
|
+
--Alert--success-bg: #e7f9f2;
|
20672
20770
|
--Alert--success-borderColor: transparent;
|
20673
|
-
--Alert--warning-color: #
|
20674
|
-
--Alert--warning-bg: #
|
20771
|
+
--Alert--warning-color: #5e626a;
|
20772
|
+
--Alert--warning-bg: #fff7e6;
|
20675
20773
|
--Alert--warning-borderColor: transparent;
|
20676
20774
|
--Toast-width: 18.75rem;
|
20677
20775
|
--Toast-borderRadius: 0;
|
@@ -20681,18 +20779,20 @@ readers do not read off random characters that represent icons */
|
|
20681
20779
|
--Toast-opacity: 1;
|
20682
20780
|
--Toast-title-display: inline;
|
20683
20781
|
--Toast-color: var(--white);
|
20684
|
-
--Toast
|
20685
|
-
--Toast
|
20686
|
-
--Toast--danger-
|
20687
|
-
--Toast--
|
20688
|
-
--Toast--
|
20689
|
-
--Toast--info-
|
20690
|
-
--Toast--
|
20691
|
-
--Toast--
|
20692
|
-
--Toast--success-
|
20693
|
-
--Toast--
|
20694
|
-
--Toast--
|
20695
|
-
--Toast--warning-
|
20782
|
+
--Toast-borderRadius: 0.25rem;
|
20783
|
+
--Toast-paddingX: 1rem;
|
20784
|
+
--Toast--danger-color: #151a26;
|
20785
|
+
--Toast--danger-bgColor: #ffffff;
|
20786
|
+
--Toast--danger-borderColor: #ffffff;
|
20787
|
+
--Toast--info-color: #151a26;
|
20788
|
+
--Toast--info-bgColor: #ffffff;
|
20789
|
+
--Toast--info-borderColor: #ffffff;
|
20790
|
+
--Toast--success-color: #151a26;
|
20791
|
+
--Toast--success-bgColor: #ffffff;
|
20792
|
+
--Toast--success-borderColor: #ffffff;
|
20793
|
+
--Toast--warning-color: #151a26;
|
20794
|
+
--Toast--warning-bgColor: #ffffff;
|
20795
|
+
--Toast--warning-borderColor: #ffffff;
|
20696
20796
|
--Toast-close-color: var(--icon-color);
|
20697
20797
|
--Toast-close--onHover-color: var(--icon-onHover-color);
|
20698
20798
|
--TagControl-sugTip-color: var(--primary);
|
@@ -20721,6 +20821,8 @@ readers do not read off random characters that represent icons */
|
|
20721
20821
|
--ListItem-onChecked-fieldLabel-color: #0052cc;
|
20722
20822
|
--Transfer-title-bg: var(--Table-thead-bg);
|
20723
20823
|
--Satus-icon-width: 0.875rem;
|
20824
|
+
--Tree-itemHeight: 2rem;
|
20825
|
+
--Progress-borderRadius: 1rem;
|
20724
20826
|
}
|
20725
20827
|
|
20726
20828
|
/* Reset
|
@@ -21093,11 +21195,11 @@ readers do not read off random characters that represent icons */
|
|
21093
21195
|
}
|
21094
21196
|
|
21095
21197
|
.amis-scope svg.icon-success {
|
21096
|
-
color: #
|
21198
|
+
color: #0bc286;
|
21097
21199
|
}
|
21098
21200
|
|
21099
21201
|
.amis-scope svg.icon-fail {
|
21100
|
-
color: #
|
21202
|
+
color: #e8684a;
|
21101
21203
|
}
|
21102
21204
|
|
21103
21205
|
/**
|
@@ -22718,8 +22820,8 @@ readers do not read off random characters that represent icons */
|
|
22718
22820
|
cursor: not-allowed;
|
22719
22821
|
color: var(--text--muted-color);
|
22720
22822
|
pointer-events: auto;
|
22721
|
-
border:
|
22722
|
-
background:
|
22823
|
+
border: var(--Button-borderWidth) solid var(--Button-onDisabled-borderColor);
|
22824
|
+
background: var(--Button-onDisabled-bg);
|
22723
22825
|
}
|
22724
22826
|
|
22725
22827
|
.amis-scope .cxd-Button:not(:disabled):not(.is-disabled) {
|
@@ -22728,6 +22830,7 @@ readers do not read off random characters that represent icons */
|
|
22728
22830
|
|
22729
22831
|
.amis-scope .cxd-Button.cxd-Button--link.is-disabled {
|
22730
22832
|
background: transparent;
|
22833
|
+
border: none;
|
22731
22834
|
}
|
22732
22835
|
|
22733
22836
|
.amis-scope .cxd-Button > .pull-left,
|
@@ -23193,7 +23296,7 @@ readers do not read off random characters that represent icons */
|
|
23193
23296
|
.amis-scope .cxd-Button--link.is-disabled {
|
23194
23297
|
color: var(--text--muted-color);
|
23195
23298
|
pointer-events: none;
|
23196
|
-
background:
|
23299
|
+
background: var(--Button-onDisabled-bg);
|
23197
23300
|
}
|
23198
23301
|
|
23199
23302
|
.amis-scope .cxd-Button--block {
|
@@ -25218,6 +25321,10 @@ readers do not read off random characters that represent icons */
|
|
25218
25321
|
}
|
25219
25322
|
|
25220
25323
|
.amis-scope .cxd-Nav {
|
25324
|
+
position: relative;
|
25325
|
+
}
|
25326
|
+
|
25327
|
+
.amis-scope .cxd-Nav .cxd-Nav-list {
|
25221
25328
|
list-style: none;
|
25222
25329
|
user-select: none;
|
25223
25330
|
margin: 0;
|
@@ -25225,26 +25332,26 @@ readers do not read off random characters that represent icons */
|
|
25225
25332
|
position: relative;
|
25226
25333
|
}
|
25227
25334
|
|
25228
|
-
.amis-scope .cxd-Nav .cxd-Nav-itemIcon {
|
25335
|
+
.amis-scope .cxd-Nav .cxd-Nav-list .cxd-Nav-itemIcon {
|
25229
25336
|
margin-right: var(--gap-sm);
|
25230
25337
|
}
|
25231
25338
|
|
25232
|
-
.amis-scope .cxd-Nav img.cxd-Nav-itemIcon {
|
25339
|
+
.amis-scope .cxd-Nav .cxd-Nav-list img.cxd-Nav-itemIcon {
|
25233
25340
|
height: var(--Tabs-linkFontSize);
|
25234
25341
|
vertical-align: middle;
|
25235
25342
|
}
|
25236
25343
|
|
25237
|
-
.amis-scope .cxd-Nav--tabs {
|
25344
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--tabs {
|
25238
25345
|
border-bottom: var(--Tabs-borderWidth) solid var(--Tabs-borderColor);
|
25239
25346
|
}
|
25240
25347
|
|
25241
|
-
.amis-scope .cxd-Nav--tabs .cxd-Nav-item {
|
25348
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--tabs .cxd-Nav-item {
|
25242
25349
|
margin-bottom: calc(var(--Tabs-borderWidth) * -1);
|
25243
25350
|
display: inline-block;
|
25244
25351
|
position: relative;
|
25245
25352
|
}
|
25246
25353
|
|
25247
|
-
.amis-scope .cxd-Nav--tabs .cxd-Nav-item > a {
|
25354
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--tabs .cxd-Nav-item > a {
|
25248
25355
|
font-size: var(--Tabs-linkFontSize);
|
25249
25356
|
display: block;
|
25250
25357
|
outline: none;
|
@@ -25258,34 +25365,34 @@ readers do not read off random characters that represent icons */
|
|
25258
25365
|
cursor: pointer;
|
25259
25366
|
}
|
25260
25367
|
|
25261
|
-
.amis-scope .cxd-Nav--tabs .cxd-Nav-item:hover > a,
|
25262
|
-
.amis-scope .cxd-Nav--tabs .cxd-Nav-item > a:focus {
|
25368
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--tabs .cxd-Nav-item:hover > a,
|
25369
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--tabs .cxd-Nav-item > a:focus {
|
25263
25370
|
border-color: var(--Tabs-onHover-borderColor);
|
25264
25371
|
text-decoration: none;
|
25265
25372
|
}
|
25266
25373
|
|
25267
|
-
.amis-scope .cxd-Nav--tabs .cxd-Nav-item.disabled > a,
|
25268
|
-
.amis-scope .cxd-Nav--tabs .cxd-Nav-item.is-disabled > a {
|
25374
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--tabs .cxd-Nav-item.disabled > a,
|
25375
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--tabs .cxd-Nav-item.is-disabled > a {
|
25269
25376
|
color: var(--Tabs-onDisabled-color);
|
25270
25377
|
background: transparent;
|
25271
25378
|
border-color: transparent;
|
25272
25379
|
pointer-events: none;
|
25273
25380
|
}
|
25274
25381
|
|
25275
|
-
.amis-scope .cxd-Nav--tabs .cxd-Nav-item.active > a,
|
25276
|
-
.amis-scope .cxd-Nav--tabs .cxd-Nav-item.is-active > a {
|
25382
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--tabs .cxd-Nav-item.active > a,
|
25383
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--tabs .cxd-Nav-item.is-active > a {
|
25277
25384
|
color: var(--Tabs-onActive-color);
|
25278
25385
|
background: var(--Tabs-onActive-bg);
|
25279
25386
|
border-color: var(--Tabs-onActive-borderColor);
|
25280
25387
|
border-bottom-color: var(--Tabs-content-bg);
|
25281
25388
|
}
|
25282
25389
|
|
25283
|
-
.amis-scope .cxd-Nav--stacked {
|
25390
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked {
|
25284
25391
|
min-height: 3.125rem;
|
25285
25392
|
}
|
25286
25393
|
|
25287
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item,
|
25288
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge {
|
25394
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item,
|
25395
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge {
|
25289
25396
|
position: relative;
|
25290
25397
|
display: flex;
|
25291
25398
|
flex-wrap: wrap;
|
@@ -25293,8 +25400,8 @@ readers do not read off random characters that represent icons */
|
|
25293
25400
|
width: 100%;
|
25294
25401
|
}
|
25295
25402
|
|
25296
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager,
|
25297
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager {
|
25403
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemDrager,
|
25404
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-itemDrager {
|
25298
25405
|
cursor: move;
|
25299
25406
|
position: absolute;
|
25300
25407
|
left: 0;
|
@@ -25302,28 +25409,28 @@ readers do not read off random characters that represent icons */
|
|
25302
25409
|
display: none;
|
25303
25410
|
}
|
25304
25411
|
|
25305
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager >
|
25306
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .cxd-Badge >
|
25307
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager >
|
25308
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager > .cxd-Badge >
|
25412
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .icon,
|
25413
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .cxd-Badge > .icon,
|
25414
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-itemDrager > .icon,
|
25415
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-itemDrager > .cxd-Badge > .icon {
|
25309
25416
|
color: var(--icon-color);
|
25310
25417
|
}
|
25311
25418
|
|
25312
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager >
|
25313
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .cxd-Badge >
|
25314
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager >
|
25315
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager > .cxd-Badge >
|
25419
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .icon:hover,
|
25420
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemDrager > .cxd-Badge > .icon:hover,
|
25421
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-itemDrager > .icon:hover,
|
25422
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-itemDrager > .cxd-Badge > .icon:hover {
|
25316
25423
|
color: var(--icon-onHover-color);
|
25317
25424
|
}
|
25318
25425
|
|
25319
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemDrager svg,
|
25320
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemDrager svg {
|
25426
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemDrager svg,
|
25427
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-itemDrager svg {
|
25321
25428
|
width: 1rem;
|
25322
25429
|
height: 1rem;
|
25323
25430
|
}
|
25324
25431
|
|
25325
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Nav-item-badgeText,
|
25326
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Nav-item-badgeText {
|
25432
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Nav-item-badgeText,
|
25433
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Nav-item-badgeText {
|
25327
25434
|
position: absolute;
|
25328
25435
|
top: 0;
|
25329
25436
|
bottom: 0;
|
@@ -25331,8 +25438,8 @@ readers do not read off random characters that represent icons */
|
|
25331
25438
|
overflow: hidden;
|
25332
25439
|
}
|
25333
25440
|
|
25334
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Nav-item-badgeText > span,
|
25335
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Nav-item-badgeText > span {
|
25441
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Nav-item-badgeText > span,
|
25442
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Nav-item-badgeText > span {
|
25336
25443
|
position: absolute;
|
25337
25444
|
top: 0.125rem;
|
25338
25445
|
left: -0.8125rem;
|
@@ -25344,16 +25451,16 @@ readers do not read off random characters that represent icons */
|
|
25344
25451
|
background: var(--success);
|
25345
25452
|
}
|
25346
25453
|
|
25347
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Nav-item-atcions,
|
25348
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Nav-item-atcions {
|
25454
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Nav-item-atcions,
|
25455
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Nav-item-atcions {
|
25349
25456
|
display: flex;
|
25350
25457
|
align-items: center;
|
25351
25458
|
}
|
25352
25459
|
|
25353
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > a,
|
25354
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a,
|
25355
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > a,
|
25356
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a {
|
25460
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > a,
|
25461
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Badge > a,
|
25462
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > a,
|
25463
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Badge > a {
|
25357
25464
|
display: flex;
|
25358
25465
|
align-items: center;
|
25359
25466
|
outline: none;
|
@@ -25367,115 +25474,115 @@ readers do not read off random characters that represent icons */
|
|
25367
25474
|
flex: 1;
|
25368
25475
|
}
|
25369
25476
|
|
25370
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > a:hover,
|
25371
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > a:focus,
|
25372
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > a:hover + .cxd-Nav-item-atcions,
|
25373
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > a:focus + .cxd-Nav-item-atcions,
|
25374
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:hover,
|
25375
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:focus,
|
25376
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:hover + .cxd-Nav-item-atcions,
|
25377
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:focus + .cxd-Nav-item-atcions,
|
25378
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > a:hover,
|
25379
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > a:focus,
|
25380
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > a:hover + .cxd-Nav-item-atcions,
|
25381
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > a:focus + .cxd-Nav-item-atcions,
|
25382
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:hover,
|
25383
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:focus,
|
25384
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:hover + .cxd-Nav-item-atcions,
|
25385
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:focus + .cxd-Nav-item-atcions {
|
25477
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > a:hover,
|
25478
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > a:focus,
|
25479
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > a:hover + .cxd-Nav-item-atcions,
|
25480
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > a:focus + .cxd-Nav-item-atcions,
|
25481
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Badge > a:hover,
|
25482
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Badge > a:focus,
|
25483
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Badge > a:hover + .cxd-Nav-item-atcions,
|
25484
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Badge > a:focus + .cxd-Nav-item-atcions,
|
25485
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > a:hover,
|
25486
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > a:focus,
|
25487
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > a:hover + .cxd-Nav-item-atcions,
|
25488
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > a:focus + .cxd-Nav-item-atcions,
|
25489
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Badge > a:hover,
|
25490
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Badge > a:focus,
|
25491
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Badge > a:hover + .cxd-Nav-item-atcions,
|
25492
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Badge > a:focus + .cxd-Nav-item-atcions {
|
25386
25493
|
border-color: var(--Nav-item-onHover-color);
|
25387
25494
|
text-decoration: none;
|
25388
25495
|
background: var(--Nav-item-onHover-bg);
|
25389
25496
|
z-index: 9999;
|
25390
25497
|
}
|
25391
25498
|
|
25392
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > a:hover > .cxd-Nav-itemDrager,
|
25393
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > a:focus > .cxd-Nav-itemDrager,
|
25394
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:hover > .cxd-Nav-itemDrager,
|
25395
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item > .cxd-Badge > a:focus > .cxd-Nav-itemDrager,
|
25396
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > a:hover > .cxd-Nav-itemDrager,
|
25397
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > a:focus > .cxd-Nav-itemDrager,
|
25398
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:hover > .cxd-Nav-itemDrager,
|
25399
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge > .cxd-Badge > a:focus > .cxd-Nav-itemDrager {
|
25499
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > a:hover > .cxd-Nav-itemDrager,
|
25500
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > a:focus > .cxd-Nav-itemDrager,
|
25501
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Badge > a:hover > .cxd-Nav-itemDrager,
|
25502
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item > .cxd-Badge > a:focus > .cxd-Nav-itemDrager,
|
25503
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > a:hover > .cxd-Nav-itemDrager,
|
25504
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > a:focus > .cxd-Nav-itemDrager,
|
25505
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Badge > a:hover > .cxd-Nav-itemDrager,
|
25506
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge > .cxd-Badge > a:focus > .cxd-Nav-itemDrager {
|
25400
25507
|
display: block;
|
25401
25508
|
}
|
25402
25509
|
|
25403
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.disabled > a,
|
25404
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-disabled > a,
|
25405
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.disabled > .cxd-Badge > a,
|
25406
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-disabled > .cxd-Badge > a,
|
25407
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.disabled > a,
|
25408
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-disabled > a,
|
25409
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.disabled > .cxd-Badge > a,
|
25410
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-disabled > .cxd-Badge > a {
|
25510
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.disabled > a,
|
25511
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-disabled > a,
|
25512
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.disabled > .cxd-Badge > a,
|
25513
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-disabled > .cxd-Badge > a,
|
25514
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.disabled > a,
|
25515
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-disabled > a,
|
25516
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.disabled > .cxd-Badge > a,
|
25517
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-disabled > .cxd-Badge > a {
|
25411
25518
|
color: var(--Nav-item-onDisabled-color);
|
25412
25519
|
background: transparent;
|
25413
25520
|
pointer-events: none;
|
25414
25521
|
}
|
25415
25522
|
|
25416
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.active,
|
25417
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-active,
|
25418
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.active,
|
25419
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-active {
|
25523
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active,
|
25524
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active,
|
25525
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active,
|
25526
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active {
|
25420
25527
|
background: var(--Nav-item-onActive-bg) !important;
|
25421
25528
|
}
|
25422
25529
|
|
25423
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.active > a,
|
25424
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions,
|
25425
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-active > a,
|
25426
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.active > .cxd-Badge > a,
|
25427
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions,
|
25428
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Badge > a,
|
25429
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.active > a,
|
25430
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions,
|
25431
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-active > a,
|
25432
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.active > .cxd-Badge > a,
|
25433
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions,
|
25434
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Badge > a {
|
25530
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > a,
|
25531
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions,
|
25532
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > a,
|
25533
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > .cxd-Badge > a,
|
25534
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions,
|
25535
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > a,
|
25536
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > a,
|
25537
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions,
|
25538
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > a,
|
25539
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > .cxd-Badge > a,
|
25540
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions,
|
25541
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > a {
|
25435
25542
|
color: var(--Nav-item-onActive-color);
|
25436
25543
|
position: relative;
|
25437
25544
|
}
|
25438
25545
|
|
25439
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.active > a::after,
|
25440
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions::after,
|
25441
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-active > a::after,
|
25442
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.active > .cxd-Badge > a::after,
|
25443
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after,
|
25444
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-active > .cxd-Badge > a::after,
|
25445
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.active > a::after,
|
25446
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions::after,
|
25447
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-active > a::after,
|
25448
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.active > .cxd-Badge > a::after,
|
25449
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after,
|
25450
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-active > .cxd-Badge > a::after {
|
25546
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > a::after,
|
25547
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Nav-item-atcions::after,
|
25548
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > a::after,
|
25549
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.active > .cxd-Badge > a::after,
|
25550
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after,
|
25551
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-active > .cxd-Badge > a::after,
|
25552
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > a::after,
|
25553
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Nav-item-atcions::after,
|
25554
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > a::after,
|
25555
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.active > .cxd-Badge > a::after,
|
25556
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > .cxd-Nav-item-atcions::after,
|
25557
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-active > .cxd-Badge > a::after {
|
25451
25558
|
transform: scaleY(1);
|
25452
25559
|
}
|
25453
25560
|
|
25454
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > a .cxd-Nav-itemToggler,
|
25455
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > .cxd-Badge > a .cxd-Nav-itemToggler,
|
25456
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-unfolded > a .cxd-Nav-itemToggler,
|
25457
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-unfolded > .cxd-Badge > a .cxd-Nav-itemToggler {
|
25561
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-unfolded > a .cxd-Nav-itemToggler,
|
25562
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-unfolded > .cxd-Badge > a .cxd-Nav-itemToggler,
|
25563
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-unfolded > a .cxd-Nav-itemToggler,
|
25564
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-unfolded > .cxd-Badge > a .cxd-Nav-itemToggler {
|
25458
25565
|
transform: rotate(180deg) scale(0.8);
|
25459
25566
|
}
|
25460
25567
|
|
25461
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > .cxd-Nav-subItems,
|
25462
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item.is-unfolded > .cxd-Badge > .cxd-Nav-subItems,
|
25463
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-unfolded > .cxd-Nav-subItems,
|
25464
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge.is-unfolded > .cxd-Badge > .cxd-Nav-subItems {
|
25568
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-unfolded > .cxd-Nav-subItems,
|
25569
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item.is-unfolded > .cxd-Badge > .cxd-Nav-subItems,
|
25570
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-unfolded > .cxd-Nav-subItems,
|
25571
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge.is-unfolded > .cxd-Badge > .cxd-Nav-subItems {
|
25465
25572
|
display: block;
|
25466
25573
|
}
|
25467
25574
|
|
25468
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-spinner,
|
25469
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-spinner {
|
25575
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-spinner,
|
25576
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-spinner {
|
25470
25577
|
position: absolute;
|
25471
25578
|
right: 0.625rem;
|
25472
25579
|
top: 0.5rem;
|
25473
25580
|
}
|
25474
25581
|
|
25475
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler,
|
25476
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemToggler {
|
25582
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemToggler,
|
25583
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-itemToggler {
|
25477
25584
|
float: left;
|
25478
|
-
|
25585
|
+
margin-right: 0.625rem;
|
25479
25586
|
height: 1.5rem;
|
25480
25587
|
text-align: center;
|
25481
25588
|
line-height: 1.5rem;
|
@@ -25485,29 +25592,36 @@ readers do not read off random characters that represent icons */
|
|
25485
25592
|
transition: transform var(--animation-duration);
|
25486
25593
|
}
|
25487
25594
|
|
25488
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-itemToggler > svg,
|
25489
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-itemToggler > svg {
|
25595
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-itemToggler > svg,
|
25596
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-itemToggler > svg {
|
25490
25597
|
width: 10px;
|
25491
25598
|
height: 10px;
|
25492
25599
|
top: 0;
|
25493
25600
|
}
|
25494
25601
|
|
25495
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-subItems,
|
25496
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-subItems {
|
25602
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-subItems,
|
25603
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-subItems {
|
25497
25604
|
display: none;
|
25498
25605
|
padding-left: 0;
|
25499
25606
|
list-style: none;
|
25500
25607
|
width: 100%;
|
25501
25608
|
}
|
25502
25609
|
|
25503
|
-
.amis-scope .cxd-Nav--stacked .cxd-Nav-item .cxd-Nav-item,
|
25504
|
-
.amis-scope .cxd-Nav--stacked .cxd-Badge .cxd-Nav-item {
|
25610
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Nav-item .cxd-Nav-item,
|
25611
|
+
.amis-scope .cxd-Nav .cxd-Nav-list--stacked .cxd-Badge .cxd-Nav-item {
|
25505
25612
|
font-size: var(--Nav-subItem-fontSize);
|
25506
25613
|
}
|
25507
25614
|
|
25615
|
+
.amis-scope .cxd-Nav .cxd-Nav-dropIndicator {
|
25616
|
+
position: absolute;
|
25617
|
+
background: var(--Nav-item-onActive-color);
|
25618
|
+
height: 2px;
|
25619
|
+
}
|
25620
|
+
|
25508
25621
|
.amis-scope .cxd-Page {
|
25509
25622
|
width: 100%;
|
25510
25623
|
height: 100%;
|
25624
|
+
background: var(--Page-main-bg);
|
25511
25625
|
}
|
25512
25626
|
|
25513
25627
|
.amis-scope .cxd-Page-header {
|
@@ -25515,7 +25629,6 @@ readers do not read off random characters that represent icons */
|
|
25515
25629
|
}
|
25516
25630
|
|
25517
25631
|
.amis-scope .cxd-Page-main {
|
25518
|
-
background: var(--Page-main-bg);
|
25519
25632
|
height: 100%;
|
25520
25633
|
display: flex;
|
25521
25634
|
flex-direction: column;
|
@@ -25530,11 +25643,9 @@ readers do not read off random characters that represent icons */
|
|
25530
25643
|
|
25531
25644
|
.amis-scope .cxd-Page-main > .cxd-Page-header {
|
25532
25645
|
border-bottom: var(--borderWidth) solid var(--borderColor);
|
25533
|
-
background: var(--Page-header-bg);
|
25534
25646
|
}
|
25535
25647
|
|
25536
25648
|
.amis-scope .cxd-Page-headerRow {
|
25537
|
-
background: var(--Page-header-bg);
|
25538
25649
|
border-bottom: var(--borderWidth) solid var(--borderColor);
|
25539
25650
|
display: flex;
|
25540
25651
|
flex-direction: row;
|
@@ -25579,10 +25690,6 @@ readers do not read off random characters that represent icons */
|
|
25579
25690
|
margin-left: var(--gap-xs);
|
25580
25691
|
}
|
25581
25692
|
|
25582
|
-
.amis-scope .cxd-Page-aside {
|
25583
|
-
background: var(--Page-aside-bg);
|
25584
|
-
}
|
25585
|
-
|
25586
25693
|
@media (min-width: 768px) {
|
25587
25694
|
.amis-scope .cxd-Page-aside {
|
25588
25695
|
min-width: var(--Page-aside-width);
|
@@ -26377,7 +26484,7 @@ readers do not read off random characters that represent icons */
|
|
26377
26484
|
height: var(--DropDown-menu-height);
|
26378
26485
|
vertical-align: middle;
|
26379
26486
|
user-select: none;
|
26380
|
-
color: var(--
|
26487
|
+
color: var(--DropDown-menuItem-color);
|
26381
26488
|
text-decoration: var(--link-decoration);
|
26382
26489
|
}
|
26383
26490
|
|
@@ -26389,6 +26496,7 @@ readers do not read off random characters that represent icons */
|
|
26389
26496
|
|
26390
26497
|
.amis-scope .cxd-DropDown-menuItem.is-active,
|
26391
26498
|
.amis-scope .cxd-DropDown-menu > li.is-active {
|
26499
|
+
background: var(--DropDown-menuItem-onHover-bg);
|
26392
26500
|
color: var(--DropDown-menuItem-onActive-color);
|
26393
26501
|
}
|
26394
26502
|
|
@@ -26437,24 +26545,30 @@ readers do not read off random characters that represent icons */
|
|
26437
26545
|
}
|
26438
26546
|
|
26439
26547
|
.amis-scope .cxd-Collapse {
|
26440
|
-
border:
|
26548
|
+
border: var(--Collapse-border);
|
26441
26549
|
padding: 0;
|
26442
26550
|
margin-bottom: var(--Form-item-gap);
|
26443
26551
|
}
|
26444
26552
|
|
26445
26553
|
.amis-scope .cxd-Collapse-header {
|
26446
|
-
font-size: var(--
|
26447
|
-
font-weight: var(--
|
26554
|
+
font-size: var(--Collapse-header-fontSize);
|
26555
|
+
font-weight: var(--Collapse-header-fontWeight);
|
26448
26556
|
color: var(--text--loud-color);
|
26449
|
-
padding: var(--
|
26450
|
-
|
26557
|
+
padding: var(--Collapse-header-padding);
|
26558
|
+
margin: 0;
|
26559
|
+
border-bottom: var(--borderWidth) solid var(--Collapse-border-color);
|
26560
|
+
background: var(--Collapse-header-bg);
|
26561
|
+
}
|
26562
|
+
|
26563
|
+
.amis-scope .cxd-Collapse-header:hover {
|
26564
|
+
background: var(--Collapse-header-onHover-bg);
|
26451
26565
|
}
|
26452
26566
|
|
26453
26567
|
.amis-scope .cxd-Collapse-arrow {
|
26454
26568
|
display: inline-block;
|
26455
26569
|
width: 1rem;
|
26456
26570
|
text-align: center;
|
26457
|
-
margin-
|
26571
|
+
margin-right: 0.5rem;
|
26458
26572
|
cursor: pointer;
|
26459
26573
|
}
|
26460
26574
|
|
@@ -26472,11 +26586,19 @@ readers do not read off random characters that represent icons */
|
|
26472
26586
|
transform-origin: 50% 50%;
|
26473
26587
|
}
|
26474
26588
|
|
26589
|
+
.amis-scope .cxd-Collapse-TplField {
|
26590
|
+
display: inline-block;
|
26591
|
+
}
|
26592
|
+
|
26475
26593
|
.amis-scope .cxd-Collapse.is-collapsed .cxd-Collapse-arrow:before {
|
26476
26594
|
transform: rotate(45deg);
|
26477
26595
|
transform-origin: 0% 50%;
|
26478
26596
|
}
|
26479
26597
|
|
26598
|
+
.amis-scope .cxd-Collapse.is-collapsed .cxd-Collapse-header {
|
26599
|
+
border-bottom: var(--Collapse-header-collapsed-borderBottom);
|
26600
|
+
}
|
26601
|
+
|
26480
26602
|
.amis-scope .cxd-Collapse--collapsable .cxd-Collapse-header {
|
26481
26603
|
cursor: pointer;
|
26482
26604
|
user-select: none;
|
@@ -26501,16 +26623,23 @@ readers do not read off random characters that represent icons */
|
|
26501
26623
|
transform-origin: 0% 50%;
|
26502
26624
|
}
|
26503
26625
|
|
26504
|
-
.amis-scope .cxd-Collapse-
|
26626
|
+
.amis-scope .cxd-Collapse-contentWrapper {
|
26505
26627
|
transition: height var(--animation-duration) ease;
|
26506
26628
|
}
|
26507
26629
|
|
26508
|
-
.amis-scope .cxd-Collapse-
|
26509
|
-
.amis-scope .cxd-Collapse-
|
26630
|
+
.amis-scope .cxd-Collapse-contentWrapper.in,
|
26631
|
+
.amis-scope .cxd-Collapse-contentWrapper.out {
|
26510
26632
|
height: 0;
|
26511
26633
|
overflow: hidden;
|
26512
26634
|
}
|
26513
26635
|
|
26636
|
+
.amis-scope .cxd-Collapse-content {
|
26637
|
+
padding: var(--Collapse-content-padding);
|
26638
|
+
color: var(--body-color);
|
26639
|
+
font-size: var(--Collapse-content-fontSize);
|
26640
|
+
font-weight: var(--Collapse-content-fontWeight);
|
26641
|
+
}
|
26642
|
+
|
26514
26643
|
.amis-scope .cxd-ColorField {
|
26515
26644
|
display: inline-block;
|
26516
26645
|
}
|
@@ -27552,6 +27681,20 @@ readers do not read off random characters that represent icons */
|
|
27552
27681
|
text-align: center;
|
27553
27682
|
}
|
27554
27683
|
|
27684
|
+
.amis-scope .cxd-Table-searchableForm {
|
27685
|
+
background: var(--Table-searchableForm-backgroundColor);
|
27686
|
+
border-radius: var(--Table-searchableForm-borderRadius);
|
27687
|
+
}
|
27688
|
+
|
27689
|
+
.amis-scope .cxd-Table-searchableForm-footer {
|
27690
|
+
padding: var(--Panel-footerPadding);
|
27691
|
+
clear: both;
|
27692
|
+
}
|
27693
|
+
|
27694
|
+
.amis-scope .cxd-Table-searchableForm-checkbox > div > .cxd-CheckboxControl {
|
27695
|
+
padding-top: 0;
|
27696
|
+
}
|
27697
|
+
|
27555
27698
|
.amis-scope .cxd-Table-header {
|
27556
27699
|
padding: var(--Table-toolbar-marginY) var(--Table-toolbar-marginX);
|
27557
27700
|
}
|
@@ -27725,6 +27868,7 @@ readers do not read off random characters that represent icons */
|
|
27725
27868
|
}
|
27726
27869
|
|
27727
27870
|
.amis-scope .cxd-Table-table > tbody > tr {
|
27871
|
+
position: relative;
|
27728
27872
|
background: transparent;
|
27729
27873
|
}
|
27730
27874
|
|
@@ -27808,33 +27952,33 @@ readers do not read off random characters that represent icons */
|
|
27808
27952
|
}
|
27809
27953
|
|
27810
27954
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light {
|
27811
|
-
background-color: #
|
27955
|
+
background-color: #1ac5ff;
|
27812
27956
|
color: #151a26;
|
27813
27957
|
}
|
27814
27958
|
|
27815
27959
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light.lt,
|
27816
27960
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light .lt {
|
27817
|
-
background: #
|
27961
|
+
background: #27c6fc;
|
27818
27962
|
}
|
27819
27963
|
|
27820
27964
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light.lter,
|
27821
27965
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light .lter {
|
27822
|
-
background: #
|
27966
|
+
background: #2fc6fa;
|
27823
27967
|
}
|
27824
27968
|
|
27825
27969
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light.dk,
|
27826
27970
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light .dk {
|
27827
|
-
background: #
|
27971
|
+
background: #0bc1ff;
|
27828
27972
|
}
|
27829
27973
|
|
27830
27974
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light.dker,
|
27831
27975
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light .dker {
|
27832
|
-
background: #
|
27976
|
+
background: #01bfff;
|
27833
27977
|
}
|
27834
27978
|
|
27835
27979
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light.bg,
|
27836
27980
|
.amis-scope .cxd-Table-table > tbody > tr.bg-light .bg {
|
27837
|
-
background-color: #
|
27981
|
+
background-color: #1ac5ff;
|
27838
27982
|
}
|
27839
27983
|
|
27840
27984
|
.amis-scope .cxd-Table-table > tbody > tr.bg-dark {
|
@@ -28000,38 +28144,38 @@ readers do not read off random characters that represent icons */
|
|
28000
28144
|
}
|
28001
28145
|
|
28002
28146
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success {
|
28003
|
-
background-color: #
|
28004
|
-
color: #
|
28147
|
+
background-color: #0bc286;
|
28148
|
+
color: #a4f5da;
|
28005
28149
|
}
|
28006
28150
|
|
28007
28151
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success.lt,
|
28008
28152
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success .lt {
|
28009
|
-
background: #
|
28153
|
+
background: #0fd796;
|
28010
28154
|
}
|
28011
28155
|
|
28012
28156
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success.lter,
|
28013
28157
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success .lter {
|
28014
|
-
background: #
|
28158
|
+
background: #15eba5;
|
28015
28159
|
}
|
28016
28160
|
|
28017
28161
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success.dk,
|
28018
28162
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success .dk {
|
28019
|
-
background: #
|
28163
|
+
background: #07ac76;
|
28020
28164
|
}
|
28021
28165
|
|
28022
28166
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success.dker,
|
28023
28167
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success .dker {
|
28024
|
-
background: #
|
28168
|
+
background: #049666;
|
28025
28169
|
}
|
28026
28170
|
|
28027
28171
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success.bg,
|
28028
28172
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success .bg {
|
28029
|
-
background-color: #
|
28173
|
+
background-color: #0bc286;
|
28030
28174
|
}
|
28031
28175
|
|
28032
28176
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success a,
|
28033
28177
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success .cxd-Button--link {
|
28034
|
-
color: #
|
28178
|
+
color: #d2faed;
|
28035
28179
|
}
|
28036
28180
|
|
28037
28181
|
.amis-scope .cxd-Table-table > tbody > tr.bg-success a:hover,
|
@@ -28108,38 +28252,38 @@ readers do not read off random characters that represent icons */
|
|
28108
28252
|
}
|
28109
28253
|
|
28110
28254
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning {
|
28111
|
-
background-color: #
|
28112
|
-
color: #
|
28255
|
+
background-color: #ffb200;
|
28256
|
+
color: #fcefcf;
|
28113
28257
|
}
|
28114
28258
|
|
28115
28259
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning.lt,
|
28116
28260
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning .lt {
|
28117
|
-
background: #
|
28261
|
+
background: #fcb91c;
|
28118
28262
|
}
|
28119
28263
|
|
28120
28264
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning.lter,
|
28121
28265
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning .lter {
|
28122
|
-
background: #
|
28266
|
+
background: #fabf38;
|
28123
28267
|
}
|
28124
28268
|
|
28125
28269
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning.dk,
|
28126
28270
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning .dk {
|
28127
|
-
background: #
|
28271
|
+
background: #e6a000;
|
28128
28272
|
}
|
28129
28273
|
|
28130
28274
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning.dker,
|
28131
28275
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning .dker {
|
28132
|
-
background: #
|
28276
|
+
background: #cc8e00;
|
28133
28277
|
}
|
28134
28278
|
|
28135
28279
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning.bg,
|
28136
28280
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning .bg {
|
28137
|
-
background-color: #
|
28281
|
+
background-color: #ffb200;
|
28138
28282
|
}
|
28139
28283
|
|
28140
28284
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning a,
|
28141
28285
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning .cxd-Button--link {
|
28142
|
-
color:
|
28286
|
+
color: white;
|
28143
28287
|
}
|
28144
28288
|
|
28145
28289
|
.amis-scope .cxd-Table-table > tbody > tr.bg-warning a:hover,
|
@@ -28162,33 +28306,33 @@ readers do not read off random characters that represent icons */
|
|
28162
28306
|
}
|
28163
28307
|
|
28164
28308
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger {
|
28165
|
-
background-color: #
|
28166
|
-
color:
|
28309
|
+
background-color: #e8684a;
|
28310
|
+
color: white;
|
28167
28311
|
}
|
28168
28312
|
|
28169
28313
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger.lt,
|
28170
28314
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger .lt {
|
28171
|
-
background: #
|
28315
|
+
background: #e97c63;
|
28172
28316
|
}
|
28173
28317
|
|
28174
28318
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger.lter,
|
28175
28319
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger .lter {
|
28176
|
-
background: #
|
28320
|
+
background: #ea907b;
|
28177
28321
|
}
|
28178
28322
|
|
28179
28323
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger.dk,
|
28180
28324
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger .dk {
|
28181
|
-
background: #
|
28325
|
+
background: #e85331;
|
28182
28326
|
}
|
28183
28327
|
|
28184
28328
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger.dker,
|
28185
28329
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger .dker {
|
28186
|
-
background: #
|
28330
|
+
background: #e93e16;
|
28187
28331
|
}
|
28188
28332
|
|
28189
28333
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger.bg,
|
28190
28334
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger .bg {
|
28191
|
-
background-color: #
|
28335
|
+
background-color: #e8684a;
|
28192
28336
|
}
|
28193
28337
|
|
28194
28338
|
.amis-scope .cxd-Table-table > tbody > tr.bg-danger a,
|
@@ -28909,7 +29053,7 @@ readers do not read off random characters that represent icons */
|
|
28909
29053
|
top: var(--Table-borderWidth);
|
28910
29054
|
bottom: 0;
|
28911
29055
|
right: 0;
|
28912
|
-
padding-left:
|
29056
|
+
padding-left: 5rem;
|
28913
29057
|
padding-right: var(--TableCell-paddingX);
|
28914
29058
|
display: flex;
|
28915
29059
|
align-items: center;
|
@@ -29021,6 +29165,12 @@ readers do not read off random characters that represent icons */
|
|
29021
29165
|
position: absolute;
|
29022
29166
|
}
|
29023
29167
|
|
29168
|
+
.amis-scope .cxd-Table-badge {
|
29169
|
+
position: absolute;
|
29170
|
+
top: 0;
|
29171
|
+
left: 0;
|
29172
|
+
}
|
29173
|
+
|
29024
29174
|
.amis-scope .cxd-InputTable-toolbar {
|
29025
29175
|
display: flex;
|
29026
29176
|
flex-direction: row;
|
@@ -29050,6 +29200,247 @@ readers do not read off random characters that represent icons */
|
|
29050
29200
|
margin-right: 0.625rem;
|
29051
29201
|
}
|
29052
29202
|
|
29203
|
+
.amis-scope .cxd-ColumnToggler {
|
29204
|
+
position: relative;
|
29205
|
+
display: inline-block;
|
29206
|
+
}
|
29207
|
+
|
29208
|
+
.amis-scope .cxd-ColumnToggler-caret {
|
29209
|
+
margin-left: var(--DropDown-caret-marginLeft);
|
29210
|
+
display: inline-block;
|
29211
|
+
vertical-align: top;
|
29212
|
+
transition: transform var(--animation-duration) ease;
|
29213
|
+
}
|
29214
|
+
|
29215
|
+
.amis-scope .cxd-ColumnToggler-caret > svg {
|
29216
|
+
width: 0.625rem;
|
29217
|
+
height: 0.625rem;
|
29218
|
+
top: 0.125em;
|
29219
|
+
}
|
29220
|
+
|
29221
|
+
.amis-scope .cxd-ColumnToggler.is-opened .cxd-ColumnToggler-caret {
|
29222
|
+
transform: rotate(180deg);
|
29223
|
+
}
|
29224
|
+
|
29225
|
+
.amis-scope .cxd-ColumnToggler.is-actived > .cxd-Button {
|
29226
|
+
color: var(--link-color);
|
29227
|
+
}
|
29228
|
+
|
29229
|
+
.amis-scope .cxd-ColumnToggler--block {
|
29230
|
+
display: block;
|
29231
|
+
}
|
29232
|
+
|
29233
|
+
.amis-scope .cxd-ColumnToggler--block .cxd-Button {
|
29234
|
+
display: block;
|
29235
|
+
}
|
29236
|
+
|
29237
|
+
.amis-scope .cxd-ColumnToggler-menu {
|
29238
|
+
position: absolute;
|
29239
|
+
z-index: 1000;
|
29240
|
+
top: 100%;
|
29241
|
+
left: 0;
|
29242
|
+
margin: 0.0625rem 0 0;
|
29243
|
+
background: var(--DropDown-menu-bg);
|
29244
|
+
list-style: none;
|
29245
|
+
padding: var(--DropDown-menu-paddingY) var(--DropDown-menu-paddingX);
|
29246
|
+
border: var(--DropDown-menu-borderWidth) solid var(--DropDown-menu-borderColor);
|
29247
|
+
border-radius: var(--DropDown-menu-borderRadius);
|
29248
|
+
box-shadow: var(--DropDown-menu-boxShadow);
|
29249
|
+
min-width: var(--DropDown-menu-minWidth);
|
29250
|
+
text-align: left;
|
29251
|
+
}
|
29252
|
+
|
29253
|
+
.amis-scope .cxd-ColumnToggler--alignRight .cxd-ColumnToggler-menu {
|
29254
|
+
left: auto;
|
29255
|
+
right: 0;
|
29256
|
+
}
|
29257
|
+
|
29258
|
+
.amis-scope .cxd-ColumnToggler-menuItem,
|
29259
|
+
.amis-scope .cxd-ColumnToggler-menu > li {
|
29260
|
+
padding: var(--DropDown-menuItem-paddingY) var(--DropDown-menuItem-paddingX);
|
29261
|
+
white-space: nowrap;
|
29262
|
+
box-sizing: border-box;
|
29263
|
+
height: var(--DropDown-menu-height);
|
29264
|
+
vertical-align: middle;
|
29265
|
+
user-select: none;
|
29266
|
+
color: var(--link-color);
|
29267
|
+
text-decoration: var(--link-decoration);
|
29268
|
+
}
|
29269
|
+
|
29270
|
+
.amis-scope .cxd-ColumnToggler-menuItem:hover,
|
29271
|
+
.amis-scope .cxd-ColumnToggler-menu > li:hover {
|
29272
|
+
background: var(--DropDown-menuItem-onHover-bg);
|
29273
|
+
color: var(--DropDown-menuItem-onHover-color);
|
29274
|
+
}
|
29275
|
+
|
29276
|
+
.amis-scope .cxd-ColumnToggler-menuItem.is-active,
|
29277
|
+
.amis-scope .cxd-ColumnToggler-menu > li.is-active {
|
29278
|
+
color: var(--DropDown-menuItem-onActive-color);
|
29279
|
+
}
|
29280
|
+
|
29281
|
+
.amis-scope .cxd-ColumnToggler-menuItem:not(.is-disabled),
|
29282
|
+
.amis-scope .cxd-ColumnToggler-menuItem:not(.disabled),
|
29283
|
+
.amis-scope .cxd-ColumnToggler-menu > li:not(.is-disabled),
|
29284
|
+
.amis-scope .cxd-ColumnToggler-menu > li:not(.disabled) {
|
29285
|
+
cursor: pointer;
|
29286
|
+
}
|
29287
|
+
|
29288
|
+
.amis-scope .cxd-ColumnToggler-menuItem.is-disabled,
|
29289
|
+
.amis-scope .cxd-ColumnToggler-menu > li.is-disabled {
|
29290
|
+
cursor: not-allowed;
|
29291
|
+
color: var(--DropDown-menuItem-onDisabled-color);
|
29292
|
+
filter: grayscale(80%);
|
29293
|
+
}
|
29294
|
+
|
29295
|
+
.amis-scope .cxd-ColumnToggler-menuItem.cxd-DropDown-divider,
|
29296
|
+
.amis-scope .cxd-ColumnToggler-menu > li.cxd-DropDown-divider {
|
29297
|
+
height: 0.0625rem;
|
29298
|
+
margin: 0.5625rem 0;
|
29299
|
+
overflow: hidden;
|
29300
|
+
background: var(--DropDown-menu-borderColor);
|
29301
|
+
padding: 0;
|
29302
|
+
}
|
29303
|
+
|
29304
|
+
.amis-scope .cxd-ColumnToggler-menu > li a {
|
29305
|
+
color: inherit;
|
29306
|
+
display: block;
|
29307
|
+
text-decoration: none;
|
29308
|
+
}
|
29309
|
+
|
29310
|
+
.amis-scope .cxd-ColumnToggler-popover {
|
29311
|
+
border: none;
|
29312
|
+
box-shadow: none;
|
29313
|
+
}
|
29314
|
+
|
29315
|
+
.amis-scope .cxd-ColumnToggler > .cxd-Button {
|
29316
|
+
min-width: unset;
|
29317
|
+
}
|
29318
|
+
|
29319
|
+
.amis-scope .cxd-ColumnToggler-modal {
|
29320
|
+
display: flex;
|
29321
|
+
flex-flow: column nowrap;
|
29322
|
+
justify-content: space-between;
|
29323
|
+
align-items: center;
|
29324
|
+
width: 25rem;
|
29325
|
+
padding: var(--ColumnToggler-lineHeight);
|
29326
|
+
margin-top: calc(50vh - 100px);
|
29327
|
+
border-radius: var(--ColumnToggler-borderRadius);
|
29328
|
+
background: var(--ColumnToggler-backgroundColor);
|
29329
|
+
box-shadow: 0 4px 5px 0 rgba(21, 26, 38, 0.06), 0 1px 10px 0 rgba(21, 26, 38, 0.05), 0 2px 4px -1px rgba(21, 26, 38, 0.04);
|
29330
|
+
}
|
29331
|
+
|
29332
|
+
.amis-scope .cxd-ColumnToggler-modal-header {
|
29333
|
+
width: 100%;
|
29334
|
+
display: flex;
|
29335
|
+
flex-flow: row nowrap;
|
29336
|
+
justify-content: space-between;
|
29337
|
+
align-items: center;
|
29338
|
+
}
|
29339
|
+
|
29340
|
+
.amis-scope .cxd-ColumnToggler-modal-header a,
|
29341
|
+
.amis-scope .cxd-ColumnToggler-modal-header span {
|
29342
|
+
display: inline-block;
|
29343
|
+
}
|
29344
|
+
|
29345
|
+
.amis-scope .cxd-ColumnToggler-modal-header .cxd-ColumnToggler-modal-title {
|
29346
|
+
opacity: 0.95;
|
29347
|
+
font-size: var(--fontSizeMd);
|
29348
|
+
color: var(--ColumnToggler-title-fontColor);
|
29349
|
+
line-height: var(--ColumnToggler-lineHeight);
|
29350
|
+
font-weight: bold;
|
29351
|
+
}
|
29352
|
+
|
29353
|
+
.amis-scope .cxd-ColumnToggler-modal-content {
|
29354
|
+
padding: 0;
|
29355
|
+
width: 100%;
|
29356
|
+
list-style: none;
|
29357
|
+
margin: 0.5rem 0;
|
29358
|
+
}
|
29359
|
+
|
29360
|
+
.amis-scope .cxd-ColumnToggler-modal-content .cxd-ColumnToggler-menuItem {
|
29361
|
+
color: var(--ColumnToggler-title-fontColor);
|
29362
|
+
background: var(--ColumnToggler-item-backgroundColor);
|
29363
|
+
border-radius: 0.125rem;
|
29364
|
+
font-size: var(--fontSizeSm);
|
29365
|
+
padding: 0.25rem 0.5rem;
|
29366
|
+
height: var(--ColumnToggler-lineHeight);
|
29367
|
+
width: calc((100% - 24px) / 3);
|
29368
|
+
float: left;
|
29369
|
+
margin: 0.25rem;
|
29370
|
+
text-overflow: ellipsis;
|
29371
|
+
white-space: nowrap;
|
29372
|
+
overflow: hidden;
|
29373
|
+
}
|
29374
|
+
|
29375
|
+
.amis-scope .cxd-ColumnToggler-modal-content .cxd-ColumnToggler-menuItem:hover {
|
29376
|
+
background: var(--ColumnToggler-item-backgroundColor-onHover);
|
29377
|
+
}
|
29378
|
+
|
29379
|
+
.amis-scope .cxd-ColumnToggler-modal-content .cxd-ColumnToggler-menuItem--dragging {
|
29380
|
+
border: 1px solid var(--link-color);
|
29381
|
+
}
|
29382
|
+
|
29383
|
+
.amis-scope .cxd-ColumnToggler-modal-content .cxd-ColumnToggler-menuItem label > i {
|
29384
|
+
height: var(--fontSizeLg);
|
29385
|
+
width: var(--fontSizeLg);
|
29386
|
+
vertical-align: top;
|
29387
|
+
}
|
29388
|
+
|
29389
|
+
.amis-scope .cxd-ColumnToggler-modal-content .cxd-ColumnToggler-menuItem-dragBar {
|
29390
|
+
margin-left: 0;
|
29391
|
+
margin-right: var(--gap-xs);
|
29392
|
+
cursor: move;
|
29393
|
+
color: #d8d8d8;
|
29394
|
+
}
|
29395
|
+
|
29396
|
+
.amis-scope .cxd-ColumnToggler-modal-footer {
|
29397
|
+
width: 100%;
|
29398
|
+
display: flex;
|
29399
|
+
flex-flow: row nowrap;
|
29400
|
+
justify-content: space-between;
|
29401
|
+
align-items: center;
|
29402
|
+
}
|
29403
|
+
|
29404
|
+
.amis-scope .cxd-ColumnToggler-modal-footer .cxd-ColumnToggler-modeSelect {
|
29405
|
+
color: var(--ColumnToggler-fontColor);
|
29406
|
+
font-size: var(--fontSizeSm);
|
29407
|
+
}
|
29408
|
+
|
29409
|
+
.amis-scope .cxd-ColumnToggler-modal-footer .cxd-ColumnToggler-modeSelect.is-actived {
|
29410
|
+
color: var(--link-color);
|
29411
|
+
}
|
29412
|
+
|
29413
|
+
.amis-scope .cxd-ColumnToggler-modal-footer > div {
|
29414
|
+
display: flex;
|
29415
|
+
flex-flow: row nowrap;
|
29416
|
+
justify-content: space-between;
|
29417
|
+
align-items: center;
|
29418
|
+
}
|
29419
|
+
|
29420
|
+
.amis-scope .cxd-ColumnToggler-modal-footer > div:first-child {
|
29421
|
+
justify-content: flex-start;
|
29422
|
+
}
|
29423
|
+
|
29424
|
+
.amis-scope .cxd-ColumnToggler-modal-footer > div:first-child a {
|
29425
|
+
display: inline-block;
|
29426
|
+
}
|
29427
|
+
|
29428
|
+
.amis-scope .cxd-ColumnToggler-modal-footer > div:last-child {
|
29429
|
+
justify-content: flex-end;
|
29430
|
+
}
|
29431
|
+
|
29432
|
+
.amis-scope .cxd-ColumnToggler-modal-footer > div:last-child button {
|
29433
|
+
width: 72px;
|
29434
|
+
}
|
29435
|
+
|
29436
|
+
.amis-scope .cxd-ColumnToggler-tooltip {
|
29437
|
+
border: none;
|
29438
|
+
}
|
29439
|
+
|
29440
|
+
.amis-scope .cxd-ColumnToggler-tooltip .cxd-Tooltip-arrow::before {
|
29441
|
+
border-top-color: transparent;
|
29442
|
+
}
|
29443
|
+
|
29053
29444
|
.amis-scope .cxd-List {
|
29054
29445
|
position: relative;
|
29055
29446
|
}
|
@@ -29850,6 +30241,7 @@ readers do not read off random characters that represent icons */
|
|
29850
30241
|
height: 10px;
|
29851
30242
|
background: #ebebeb;
|
29852
30243
|
overflow: hidden;
|
30244
|
+
border-radius: var(--Progress-borderRadius);
|
29853
30245
|
}
|
29854
30246
|
|
29855
30247
|
.amis-scope .cxd-Progress-bar {
|
@@ -29862,6 +30254,7 @@ readers do not read off random characters that represent icons */
|
|
29862
30254
|
text-align: center;
|
29863
30255
|
background: var(--primary);
|
29864
30256
|
transition: width var(--animation-duration) ease;
|
30257
|
+
border-radius: var(--Progress-borderRadius);
|
29865
30258
|
}
|
29866
30259
|
|
29867
30260
|
.amis-scope .cxd-Progress-bar--stripe {
|
@@ -30612,6 +31005,7 @@ readers do not read off random characters that represent icons */
|
|
30612
31005
|
|
30613
31006
|
.amis-scope .cxd-Image-thumbWrap {
|
30614
31007
|
position: relative;
|
31008
|
+
height: 100%;
|
30615
31009
|
}
|
30616
31010
|
|
30617
31011
|
.amis-scope .cxd-Image-image {
|
@@ -30727,7 +31121,7 @@ readers do not read off random characters that represent icons */
|
|
30727
31121
|
}
|
30728
31122
|
|
30729
31123
|
.amis-scope .cxd-Image-overlay {
|
30730
|
-
background: rgba(
|
31124
|
+
background: rgba(8, 14, 26, 0.5);
|
30731
31125
|
position: absolute;
|
30732
31126
|
width: 100%;
|
30733
31127
|
height: 100%;
|
@@ -31359,7 +31753,7 @@ readers do not read off random characters that represent icons */
|
|
31359
31753
|
height: 1px;
|
31360
31754
|
left: 100%;
|
31361
31755
|
width: 9999px;
|
31362
|
-
padding-right:
|
31756
|
+
padding-right: 0.625rem;
|
31363
31757
|
background-color: var(--Steps-line-bg);
|
31364
31758
|
}
|
31365
31759
|
|
@@ -31508,8 +31902,6 @@ readers do not read off random characters that represent icons */
|
|
31508
31902
|
border-bottom: 0;
|
31509
31903
|
display: flex;
|
31510
31904
|
flex-direction: row;
|
31511
|
-
justify-content: space-between;
|
31512
|
-
width: 100%;
|
31513
31905
|
}
|
31514
31906
|
|
31515
31907
|
.amis-scope fieldset.cxd-Collapse--xs {
|
@@ -32243,6 +32635,14 @@ readers do not read off random characters that represent icons */
|
|
32243
32635
|
color: var(--danger);
|
32244
32636
|
}
|
32245
32637
|
|
32638
|
+
.amis-scope .cxd-TextControl-input:hover {
|
32639
|
+
border-color: var(--Form-input-onHover-borderColor);
|
32640
|
+
}
|
32641
|
+
|
32642
|
+
.amis-scope .cxd-TextControl.is-disabled-input input {
|
32643
|
+
color: var(--Form-input-onDisabled-color);
|
32644
|
+
}
|
32645
|
+
|
32246
32646
|
.amis-scope .cxd-TextareaControl {
|
32247
32647
|
position: relative;
|
32248
32648
|
}
|
@@ -32274,12 +32674,21 @@ readers do not read off random characters that represent icons */
|
|
32274
32674
|
color: var(--Form-input-placeholderColor);
|
32275
32675
|
}
|
32276
32676
|
|
32677
|
+
.amis-scope .cxd-TextareaControl > textarea:hover {
|
32678
|
+
border-color: var(--Form-input-onHover-borderColor);
|
32679
|
+
}
|
32680
|
+
|
32277
32681
|
.amis-scope .cxd-TextareaControl > textarea:focus,
|
32278
32682
|
.amis-scope .cxd-TextareaControl.is-focused > textarea {
|
32279
32683
|
border-color: var(--Form-input-onFocused-borderColor);
|
32280
32684
|
box-shadow: var(--Form-input-boxShadow);
|
32281
32685
|
}
|
32282
32686
|
|
32687
|
+
.amis-scope .cxd-TextareaControl > textarea:focus:hover,
|
32688
|
+
.amis-scope .cxd-TextareaControl.is-focused > textarea:hover {
|
32689
|
+
border-color: var(--Form-input-onFocused-borderColor);
|
32690
|
+
}
|
32691
|
+
|
32283
32692
|
.amis-scope .cxd-TextareaControl.is-disabled > textarea,
|
32284
32693
|
.amis-scope .cxd-TextareaControl > textarea[disabled] {
|
32285
32694
|
background: #e5e7eb;
|
@@ -33672,6 +34081,7 @@ readers do not read off random characters that represent icons */
|
|
33672
34081
|
color: var(--ListControl-item-color);
|
33673
34082
|
transition: var(--ListControl-item-transition);
|
33674
34083
|
max-width: calc(12.5rem + 2 * var(--ListControl-item-paddingX));
|
34084
|
+
border-radius: var(--ListControl-item-borderRadius);
|
33675
34085
|
}
|
33676
34086
|
|
33677
34087
|
.amis-scope .cxd-ListControl-item:not(.is-disabled) {
|
@@ -33783,7 +34193,7 @@ readers do not read off random characters that represent icons */
|
|
33783
34193
|
white-space: nowrap;
|
33784
34194
|
color: var(--DatePicker-color);
|
33785
34195
|
background: var(--DatePicker-bg);
|
33786
|
-
border-radius: var(--
|
34196
|
+
border-radius: var(--LocationPicker-borderRadius);
|
33787
34197
|
}
|
33788
34198
|
|
33789
34199
|
.amis-scope .cxd-LocationPicker:not(.is-disabled) {
|
@@ -33935,6 +34345,7 @@ readers do not read off random characters that represent icons */
|
|
33935
34345
|
padding: var(--ColorPicker-paddingY) var(--ColorPicker-paddingX);
|
33936
34346
|
background: var(--ColorPicker-bg);
|
33937
34347
|
color: var(--ColorPicker-color);
|
34348
|
+
border-radius: var(--borderRadius);
|
33938
34349
|
}
|
33939
34350
|
|
33940
34351
|
.amis-scope .cxd-ColorPicker:not(.is-disabled) {
|
@@ -34096,6 +34507,8 @@ readers do not read off random characters that represent icons */
|
|
34096
34507
|
.amis-scope .cxd-DatePicker-toggler {
|
34097
34508
|
cursor: pointer;
|
34098
34509
|
color: var(--DatePicker-iconColor);
|
34510
|
+
display: inline-flex;
|
34511
|
+
align-items: center;
|
34099
34512
|
}
|
34100
34513
|
|
34101
34514
|
.amis-scope .cxd-DatePicker-toggler:hover {
|
@@ -34614,6 +35027,8 @@ readers do not read off random characters that represent icons */
|
|
34614
35027
|
.amis-scope .cxd-DateRangePicker-toggler {
|
34615
35028
|
cursor: pointer;
|
34616
35029
|
color: var(--DatePicker-iconColor);
|
35030
|
+
display: inline-flex;
|
35031
|
+
align-items: center;
|
34617
35032
|
}
|
34618
35033
|
|
34619
35034
|
.amis-scope .cxd-DateRangePicker-toggler:hover {
|
@@ -34729,9 +35144,11 @@ readers do not read off random characters that represent icons */
|
|
34729
35144
|
width: 7.5rem;
|
34730
35145
|
height: 7.5rem;
|
34731
35146
|
display: inline-flex;
|
35147
|
+
flex-direction: column;
|
34732
35148
|
justify-content: center;
|
34733
35149
|
align-items: center;
|
34734
35150
|
border: var(--borderWidth) solid var(--borderColor);
|
35151
|
+
border-radius: var(--ImageControl-addBtn-borderRadius);
|
34735
35152
|
cursor: pointer;
|
34736
35153
|
margin-right: var(--gap-base);
|
34737
35154
|
color: var(--ImageControl-addBtn-color);
|
@@ -34758,9 +35175,10 @@ readers do not read off random characters that represent icons */
|
|
34758
35175
|
}
|
34759
35176
|
|
34760
35177
|
.amis-scope .cxd-ImageControl-addBtn > svg {
|
34761
|
-
width:
|
34762
|
-
height:
|
35178
|
+
width: 1.5rem;
|
35179
|
+
height: 1.5rem;
|
34763
35180
|
top: 0;
|
35181
|
+
margin-bottom: 0.5rem;
|
34764
35182
|
}
|
34765
35183
|
|
34766
35184
|
.amis-scope .cxd-ImageControl-addBtn.is-disabled {
|
@@ -34798,6 +35216,7 @@ readers do not read off random characters that represent icons */
|
|
34798
35216
|
|
34799
35217
|
.amis-scope .cxd-ImageControl-item {
|
34800
35218
|
border: var(--borderWidth) solid var(--borderColor);
|
35219
|
+
border-radius: var(--ImageControl-addBtn-borderRadius);
|
34801
35220
|
vertical-align: top;
|
34802
35221
|
padding: var(--gap-xs);
|
34803
35222
|
display: inline-block;
|
@@ -34855,6 +35274,7 @@ readers do not read off random characters that represent icons */
|
|
34855
35274
|
|
34856
35275
|
.amis-scope .cxd-ImageControl-progressValue {
|
34857
35276
|
height: 5px;
|
35277
|
+
border-radius: var(--ImageControl-progress-borderRadius);
|
34858
35278
|
display: block;
|
34859
35279
|
background: var(--info);
|
34860
35280
|
min-width: 10%;
|
@@ -34964,13 +35384,13 @@ readers do not read off random characters that represent icons */
|
|
34964
35384
|
}
|
34965
35385
|
|
34966
35386
|
.amis-scope .cxd-FileControl-selectBtn {
|
34967
|
-
|
35387
|
+
display: flex;
|
35388
|
+
align-items: center;
|
34968
35389
|
}
|
34969
35390
|
|
34970
35391
|
.amis-scope .cxd-FileControl-selectBtn > svg {
|
34971
|
-
|
34972
|
-
|
34973
|
-
height: pxrem(16px);
|
35392
|
+
width: 0.875rem;
|
35393
|
+
height: 0.875rem;
|
34974
35394
|
}
|
34975
35395
|
|
34976
35396
|
.amis-scope .cxd-FileControl-description {
|
@@ -35082,6 +35502,7 @@ readers do not read off random characters that represent icons */
|
|
35082
35502
|
.amis-scope .cxd-FileControl-progress > span {
|
35083
35503
|
display: block;
|
35084
35504
|
background: var(--info);
|
35505
|
+
border-radius: var(--FileControl-progress-borderRadius);
|
35085
35506
|
height: 100%;
|
35086
35507
|
min-width: 10%;
|
35087
35508
|
transition: ease-out width var(--animation-duration);
|
@@ -36838,6 +37259,7 @@ readers do not read off random characters that represent icons */
|
|
36838
37259
|
font-size: var(--Form-input-fontSize);
|
36839
37260
|
padding: calc( ( 1.875rem - var(--Form-input-lineHeight) * var(--Form-input-fontSize) ) / 2 ) var(--gap-sm);
|
36840
37261
|
flex-direction: row;
|
37262
|
+
border-radius: var(--borderRadius) var(--borderRadius) 0 0;
|
36841
37263
|
}
|
36842
37264
|
|
36843
37265
|
.amis-scope .cxd-Transfer-title--light {
|
@@ -36857,6 +37279,7 @@ readers do not read off random characters that represent icons */
|
|
36857
37279
|
border: var(--Form-input-borderWidth) solid var(--Form-input-borderColor);
|
36858
37280
|
display: flex;
|
36859
37281
|
flex-direction: column;
|
37282
|
+
border-radius: var(--borderRadius);
|
36860
37283
|
}
|
36861
37284
|
|
36862
37285
|
.amis-scope .cxd-Transfer-select > .cxd-Transfer-checkboxes,
|
@@ -38017,38 +38440,43 @@ readers do not read off random characters that represent icons */
|
|
38017
38440
|
border-bottom-color: #eee;
|
38018
38441
|
}
|
38019
38442
|
|
38443
|
+
.amis-scope .cxd-Link.is-disabled {
|
38444
|
+
cursor: not-allowed;
|
38445
|
+
color: var(--text--muted-color);
|
38446
|
+
}
|
38447
|
+
|
38020
38448
|
/*
|
38021
38449
|
* utilities
|
38022
38450
|
*/
|
38023
38451
|
|
38024
38452
|
.amis-scope .bg-light {
|
38025
|
-
background-color: #
|
38453
|
+
background-color: #1ac5ff;
|
38026
38454
|
color: #151a26;
|
38027
38455
|
}
|
38028
38456
|
|
38029
38457
|
.amis-scope .bg-light.lt,
|
38030
38458
|
.amis-scope .bg-light .lt {
|
38031
|
-
background: #
|
38459
|
+
background: #27c6fc;
|
38032
38460
|
}
|
38033
38461
|
|
38034
38462
|
.amis-scope .bg-light.lter,
|
38035
38463
|
.amis-scope .bg-light .lter {
|
38036
|
-
background: #
|
38464
|
+
background: #2fc6fa;
|
38037
38465
|
}
|
38038
38466
|
|
38039
38467
|
.amis-scope .bg-light.dk,
|
38040
38468
|
.amis-scope .bg-light .dk {
|
38041
|
-
background: #
|
38469
|
+
background: #0bc1ff;
|
38042
38470
|
}
|
38043
38471
|
|
38044
38472
|
.amis-scope .bg-light.dker,
|
38045
38473
|
.amis-scope .bg-light .dker {
|
38046
|
-
background: #
|
38474
|
+
background: #01bfff;
|
38047
38475
|
}
|
38048
38476
|
|
38049
38477
|
.amis-scope .bg-light.bg,
|
38050
38478
|
.amis-scope .bg-light .bg {
|
38051
|
-
background-color: #
|
38479
|
+
background-color: #1ac5ff;
|
38052
38480
|
}
|
38053
38481
|
|
38054
38482
|
.amis-scope .bg-dark {
|
@@ -38214,38 +38642,38 @@ readers do not read off random characters that represent icons */
|
|
38214
38642
|
}
|
38215
38643
|
|
38216
38644
|
.amis-scope .bg-success {
|
38217
|
-
background-color: #
|
38218
|
-
color: #
|
38645
|
+
background-color: #0bc286;
|
38646
|
+
color: #a4f5da;
|
38219
38647
|
}
|
38220
38648
|
|
38221
38649
|
.amis-scope .bg-success.lt,
|
38222
38650
|
.amis-scope .bg-success .lt {
|
38223
|
-
background: #
|
38651
|
+
background: #0fd796;
|
38224
38652
|
}
|
38225
38653
|
|
38226
38654
|
.amis-scope .bg-success.lter,
|
38227
38655
|
.amis-scope .bg-success .lter {
|
38228
|
-
background: #
|
38656
|
+
background: #15eba5;
|
38229
38657
|
}
|
38230
38658
|
|
38231
38659
|
.amis-scope .bg-success.dk,
|
38232
38660
|
.amis-scope .bg-success .dk {
|
38233
|
-
background: #
|
38661
|
+
background: #07ac76;
|
38234
38662
|
}
|
38235
38663
|
|
38236
38664
|
.amis-scope .bg-success.dker,
|
38237
38665
|
.amis-scope .bg-success .dker {
|
38238
|
-
background: #
|
38666
|
+
background: #049666;
|
38239
38667
|
}
|
38240
38668
|
|
38241
38669
|
.amis-scope .bg-success.bg,
|
38242
38670
|
.amis-scope .bg-success .bg {
|
38243
|
-
background-color: #
|
38671
|
+
background-color: #0bc286;
|
38244
38672
|
}
|
38245
38673
|
|
38246
38674
|
.amis-scope .bg-success a,
|
38247
38675
|
.amis-scope .bg-success .cxd-Button--link {
|
38248
|
-
color: #
|
38676
|
+
color: #d2faed;
|
38249
38677
|
}
|
38250
38678
|
|
38251
38679
|
.amis-scope .bg-success a:hover,
|
@@ -38322,38 +38750,38 @@ readers do not read off random characters that represent icons */
|
|
38322
38750
|
}
|
38323
38751
|
|
38324
38752
|
.amis-scope .bg-warning {
|
38325
|
-
background-color: #
|
38326
|
-
color: #
|
38753
|
+
background-color: #ffb200;
|
38754
|
+
color: #fcefcf;
|
38327
38755
|
}
|
38328
38756
|
|
38329
38757
|
.amis-scope .bg-warning.lt,
|
38330
38758
|
.amis-scope .bg-warning .lt {
|
38331
|
-
background: #
|
38759
|
+
background: #fcb91c;
|
38332
38760
|
}
|
38333
38761
|
|
38334
38762
|
.amis-scope .bg-warning.lter,
|
38335
38763
|
.amis-scope .bg-warning .lter {
|
38336
|
-
background: #
|
38764
|
+
background: #fabf38;
|
38337
38765
|
}
|
38338
38766
|
|
38339
38767
|
.amis-scope .bg-warning.dk,
|
38340
38768
|
.amis-scope .bg-warning .dk {
|
38341
|
-
background: #
|
38769
|
+
background: #e6a000;
|
38342
38770
|
}
|
38343
38771
|
|
38344
38772
|
.amis-scope .bg-warning.dker,
|
38345
38773
|
.amis-scope .bg-warning .dker {
|
38346
|
-
background: #
|
38774
|
+
background: #cc8e00;
|
38347
38775
|
}
|
38348
38776
|
|
38349
38777
|
.amis-scope .bg-warning.bg,
|
38350
38778
|
.amis-scope .bg-warning .bg {
|
38351
|
-
background-color: #
|
38779
|
+
background-color: #ffb200;
|
38352
38780
|
}
|
38353
38781
|
|
38354
38782
|
.amis-scope .bg-warning a,
|
38355
38783
|
.amis-scope .bg-warning .cxd-Button--link {
|
38356
|
-
color:
|
38784
|
+
color: white;
|
38357
38785
|
}
|
38358
38786
|
|
38359
38787
|
.amis-scope .bg-warning a:hover,
|
@@ -38376,33 +38804,33 @@ readers do not read off random characters that represent icons */
|
|
38376
38804
|
}
|
38377
38805
|
|
38378
38806
|
.amis-scope .bg-danger {
|
38379
|
-
background-color: #
|
38380
|
-
color:
|
38807
|
+
background-color: #e8684a;
|
38808
|
+
color: white;
|
38381
38809
|
}
|
38382
38810
|
|
38383
38811
|
.amis-scope .bg-danger.lt,
|
38384
38812
|
.amis-scope .bg-danger .lt {
|
38385
|
-
background: #
|
38813
|
+
background: #e97c63;
|
38386
38814
|
}
|
38387
38815
|
|
38388
38816
|
.amis-scope .bg-danger.lter,
|
38389
38817
|
.amis-scope .bg-danger .lter {
|
38390
|
-
background: #
|
38818
|
+
background: #ea907b;
|
38391
38819
|
}
|
38392
38820
|
|
38393
38821
|
.amis-scope .bg-danger.dk,
|
38394
38822
|
.amis-scope .bg-danger .dk {
|
38395
|
-
background: #
|
38823
|
+
background: #e85331;
|
38396
38824
|
}
|
38397
38825
|
|
38398
38826
|
.amis-scope .bg-danger.dker,
|
38399
38827
|
.amis-scope .bg-danger .dker {
|
38400
|
-
background: #
|
38828
|
+
background: #e93e16;
|
38401
38829
|
}
|
38402
38830
|
|
38403
38831
|
.amis-scope .bg-danger.bg,
|
38404
38832
|
.amis-scope .bg-danger .bg {
|
38405
|
-
background-color: #
|
38833
|
+
background-color: #e8684a;
|
38406
38834
|
}
|
38407
38835
|
|
38408
38836
|
.amis-scope .bg-danger a,
|
@@ -38463,6 +38891,10 @@ readers do not read off random characters that represent icons */
|
|
38463
38891
|
background: none !important;
|
38464
38892
|
}
|
38465
38893
|
|
38894
|
+
.cursor-pointer {
|
38895
|
+
cursor: pointer;
|
38896
|
+
}
|
38897
|
+
|
38466
38898
|
.amis-scope a.bg-primary:hover {
|
38467
38899
|
background: #0e58ee;
|
38468
38900
|
}
|
@@ -38520,87 +38952,87 @@ readers do not read off random characters that represent icons */
|
|
38520
38952
|
}
|
38521
38953
|
|
38522
38954
|
.amis-scope a.bg-success:hover {
|
38523
|
-
background: #
|
38955
|
+
background: #0aaa75;
|
38524
38956
|
}
|
38525
38957
|
|
38526
38958
|
.amis-scope a.text-success:hover {
|
38527
|
-
color: #
|
38959
|
+
color: #0aaa75;
|
38528
38960
|
}
|
38529
38961
|
|
38530
38962
|
.amis-scope .text-success {
|
38531
|
-
color: #
|
38963
|
+
color: #0bc286;
|
38532
38964
|
}
|
38533
38965
|
|
38534
38966
|
.amis-scope .text-success-lt {
|
38535
|
-
color: #
|
38967
|
+
color: #0aaa75;
|
38536
38968
|
}
|
38537
38969
|
|
38538
38970
|
.amis-scope .text-success-lter {
|
38539
|
-
color: #
|
38971
|
+
color: #089265;
|
38540
38972
|
}
|
38541
38973
|
|
38542
38974
|
.amis-scope .text-success-dk {
|
38543
|
-
color: #
|
38975
|
+
color: #0aaa75;
|
38544
38976
|
}
|
38545
38977
|
|
38546
38978
|
.amis-scope .text-success-dker {
|
38547
|
-
color: #
|
38979
|
+
color: #089265;
|
38548
38980
|
}
|
38549
38981
|
|
38550
38982
|
.amis-scope a.bg-warning:hover {
|
38551
|
-
background: #
|
38983
|
+
background: #e6a000;
|
38552
38984
|
}
|
38553
38985
|
|
38554
38986
|
.amis-scope a.text-warning:hover {
|
38555
|
-
color: #
|
38987
|
+
color: #e6a000;
|
38556
38988
|
}
|
38557
38989
|
|
38558
38990
|
.amis-scope .text-warning {
|
38559
|
-
color: #
|
38991
|
+
color: #ffb200;
|
38560
38992
|
}
|
38561
38993
|
|
38562
38994
|
.amis-scope .text-warning-lt {
|
38563
|
-
color: #
|
38995
|
+
color: #e6a000;
|
38564
38996
|
}
|
38565
38997
|
|
38566
38998
|
.amis-scope .text-warning-lter {
|
38567
|
-
color: #
|
38999
|
+
color: #cc8e00;
|
38568
39000
|
}
|
38569
39001
|
|
38570
39002
|
.amis-scope .text-warning-dk {
|
38571
|
-
color: #
|
39003
|
+
color: #e6a000;
|
38572
39004
|
}
|
38573
39005
|
|
38574
39006
|
.amis-scope .text-warning-dker {
|
38575
|
-
color: #
|
39007
|
+
color: #cc8e00;
|
38576
39008
|
}
|
38577
39009
|
|
38578
39010
|
.amis-scope a.bg-danger:hover {
|
38579
|
-
background: #
|
39011
|
+
background: #e55533;
|
38580
39012
|
}
|
38581
39013
|
|
38582
39014
|
.amis-scope a.text-danger:hover {
|
38583
|
-
color: #
|
39015
|
+
color: #e55533;
|
38584
39016
|
}
|
38585
39017
|
|
38586
39018
|
.amis-scope .text-danger {
|
38587
|
-
color: #
|
39019
|
+
color: #e8684a;
|
38588
39020
|
}
|
38589
39021
|
|
38590
39022
|
.amis-scope .text-danger-lt {
|
38591
|
-
color: #
|
39023
|
+
color: #e55533;
|
38592
39024
|
}
|
38593
39025
|
|
38594
39026
|
.amis-scope .text-danger-lter {
|
38595
|
-
color: #
|
39027
|
+
color: #e2421d;
|
38596
39028
|
}
|
38597
39029
|
|
38598
39030
|
.amis-scope .text-danger-dk {
|
38599
|
-
color: #
|
39031
|
+
color: #e55533;
|
38600
39032
|
}
|
38601
39033
|
|
38602
39034
|
.amis-scope .text-danger-dker {
|
38603
|
-
color: #
|
39035
|
+
color: #e2421d;
|
38604
39036
|
}
|
38605
39037
|
|
38606
39038
|
.amis-scope a.bg-dark:hover {
|
@@ -40354,4 +40786,312 @@ readers do not read off random characters that represent icons */
|
|
40354
40786
|
.amis-scope .no-padder-xs {
|
40355
40787
|
padding: 0 !important;
|
40356
40788
|
}
|
40789
|
+
}
|
40790
|
+
|
40791
|
+
.amis-scope .cxd-Switch .text {
|
40792
|
+
margin: 0 0.5rem 0 1.5625rem;
|
40793
|
+
vertical-align: super;
|
40794
|
+
}
|
40795
|
+
|
40796
|
+
.amis-scope .cxd-Switch .slider:before {
|
40797
|
+
width: calc(var(--Switch-height) - 0.25rem);
|
40798
|
+
top: 0.125rem;
|
40799
|
+
bottom: 0.125rem;
|
40800
|
+
}
|
40801
|
+
|
40802
|
+
.amis-scope .cxd-Switch:active .slider::before {
|
40803
|
+
width: calc(var(--Switch-height) + 0.125rem);
|
40804
|
+
border-radius: 10px;
|
40805
|
+
}
|
40806
|
+
|
40807
|
+
.amis-scope .cxd-Switch:hover {
|
40808
|
+
background: var(--Switch-onHover-bgColor);
|
40809
|
+
}
|
40810
|
+
|
40811
|
+
.amis-scope .cxd-Switch.is-checked {
|
40812
|
+
background: var(--Switch-checked-bgColor);
|
40813
|
+
}
|
40814
|
+
|
40815
|
+
.amis-scope .cxd-Switch.is-checked .slider::before {
|
40816
|
+
right: 0.125rem;
|
40817
|
+
}
|
40818
|
+
|
40819
|
+
.amis-scope .cxd-Switch.is-checked .text {
|
40820
|
+
margin: 0 1.5625rem 0 0.5rem;
|
40821
|
+
}
|
40822
|
+
|
40823
|
+
.amis-scope .cxd-Switch.is-checked:hover {
|
40824
|
+
background: var(--Switch-checked-onHover-bgColor);
|
40825
|
+
}
|
40826
|
+
|
40827
|
+
.amis-scope .cxd-Switch.is-checked:active {
|
40828
|
+
background: var(--Switch-checked-onActive-bgColor);
|
40829
|
+
}
|
40830
|
+
|
40831
|
+
.amis-scope .cxd-TextControl-sugs {
|
40832
|
+
border-radius: 0.1875rem;
|
40833
|
+
top: calc(var(--Form-input-height) + 0.25rem);
|
40834
|
+
box-shadow: 0.125rem 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
|
40835
|
+
border: none;
|
40836
|
+
}
|
40837
|
+
|
40838
|
+
.amis-scope .cxd-Select .cxd-PopOver {
|
40839
|
+
top: calc(var(--Form-input-height) + 0.25rem) !important;
|
40840
|
+
}
|
40841
|
+
|
40842
|
+
.amis-scope .cxd-Select .cxd-PopOver .cxd-Select-menu {
|
40843
|
+
border-radius: 0.25rem;
|
40844
|
+
}
|
40845
|
+
|
40846
|
+
.amis-scope .cxd-Select .cxd-PopOver .cxd-Select-menu .cxd-Select-option {
|
40847
|
+
height: var(--Form-input-height);
|
40848
|
+
padding: 0.3125rem 0.75rem;
|
40849
|
+
}
|
40850
|
+
|
40851
|
+
.amis-scope .cxd-NestedSelectControl .cxd-PopOver {
|
40852
|
+
top: calc(var(--Form-input-height) + 0.25rem) !important;
|
40853
|
+
}
|
40854
|
+
|
40855
|
+
.amis-scope .cxd-NestedSelectControl .cxd-PopOver .cxd-NestedSelect-menuOuter .cxd-NestedSelect-menu {
|
40856
|
+
border-radius: 0.25rem;
|
40857
|
+
}
|
40858
|
+
|
40859
|
+
.amis-scope .cxd-NestedSelectControl .cxd-PopOver .cxd-NestedSelect-menuOuter .cxd-NestedSelect-menu .cxd-NestedSelect-option {
|
40860
|
+
height: var(--Form-input-height);
|
40861
|
+
padding: 0 0.75rem;
|
40862
|
+
}
|
40863
|
+
|
40864
|
+
.amis-scope .cxd-NestedSelectControl .cxd-PopOver .cxd-NestedSelect-menuOuter .cxd-NestedSelect-menu .cxd-NestedSelect-option .cxd-NestedSelect-optionArrowRight {
|
40865
|
+
padding-right: 0;
|
40866
|
+
}
|
40867
|
+
|
40868
|
+
.amis-scope .cxd-NestedSelectControl .cxd-PopOver .cxd-NestedSelect-menuOuter .cxd-NestedSelect-menu:not(:first-child) {
|
40869
|
+
margin-left: 2px;
|
40870
|
+
}
|
40871
|
+
|
40872
|
+
.amis-scope .cxd-TreeSelectControl .cxd-PopOver {
|
40873
|
+
top: calc(var(--Form-input-height) + 0.25rem) !important;
|
40874
|
+
box-shadow: var(--boxShadow);
|
40875
|
+
}
|
40876
|
+
|
40877
|
+
.amis-scope .cxd-TreeSelectControl .cxd-PopOver .cxd-Tree {
|
40878
|
+
border-radius: 0.25rem;
|
40879
|
+
border: none;
|
40880
|
+
}
|
40881
|
+
|
40882
|
+
.amis-scope .cxd-DropDown .cxd-DropDown-menu {
|
40883
|
+
top: calc(var(--Form-input-height) + 0.25rem) !important;
|
40884
|
+
border: none;
|
40885
|
+
}
|
40886
|
+
|
40887
|
+
.amis-scope .cxd-DropDown .cxd-DropDown-menu > li {
|
40888
|
+
color: #151a26;
|
40889
|
+
}
|
40890
|
+
|
40891
|
+
.amis-scope .cxd-DropDown .cxd-DropDown-menu > li.is-disabled {
|
40892
|
+
color: #b4b6ba;
|
40893
|
+
}
|
40894
|
+
|
40895
|
+
.amis-scope .cxd-Toast .cxd-Toast-icon {
|
40896
|
+
margin-right: 0.5rem;
|
40897
|
+
}
|
40898
|
+
|
40899
|
+
.amis-scope .cxd-Toast .cxd-Toast-close {
|
40900
|
+
margin-left: 0.5rem;
|
40901
|
+
cursor: pointer;
|
40902
|
+
}
|
40903
|
+
|
40904
|
+
.amis-scope .cxd-InputGroup .cxd-InputGroup-btn .cxd-Button {
|
40905
|
+
border-radius: 0.1875rem;
|
40906
|
+
}
|
40907
|
+
|
40908
|
+
.amis-scope .cxd-InputGroup .cxd-InputGroup-btn:last-child .cxd-Button {
|
40909
|
+
border-top-left-radius: 0;
|
40910
|
+
border-bottom-left-radius: 0;
|
40911
|
+
}
|
40912
|
+
|
40913
|
+
.amis-scope .cxd-Button--iconOnly {
|
40914
|
+
min-width: var(--Button-height);
|
40915
|
+
}
|
40916
|
+
|
40917
|
+
.amis-scope .cxd-Alert {
|
40918
|
+
font-weight: 400;
|
40919
|
+
}
|
40920
|
+
|
40921
|
+
.amis-scope .cxd-Alert .cxd-Alert-close {
|
40922
|
+
opacity: 1;
|
40923
|
+
color: #83868c;
|
40924
|
+
}
|
40925
|
+
|
40926
|
+
.amis-scope .cxd-Alert .cxd-Alert-close:hover {
|
40927
|
+
color: #5e626a;
|
40928
|
+
}
|
40929
|
+
|
40930
|
+
.amis-scope .cxd-Alert .cxd-Alert-close:active {
|
40931
|
+
color: #2d323c;
|
40932
|
+
}
|
40933
|
+
|
40934
|
+
.amis-scope .cxd-ColorPicker .cxd-PopOver {
|
40935
|
+
border: none;
|
40936
|
+
top: calc(var(--Form-input-height) + 0.25rem) !important;
|
40937
|
+
box-shadow: var(--boxShadow);
|
40938
|
+
}
|
40939
|
+
|
40940
|
+
.amis-scope .cxd-IconPickerControl .cxd-IconPickerControl-input--withAC .cxd-IconPickerControl-sugsPanel {
|
40941
|
+
border: none;
|
40942
|
+
top: calc(var(--Form-input-height) + 0.25rem) !important;
|
40943
|
+
box-shadow: var(--boxShadow);
|
40944
|
+
border-radius: 0.1875rem;
|
40945
|
+
}
|
40946
|
+
|
40947
|
+
.amis-scope .cxd-Combo .cxd-Combo-items .cxd-Combo-item .cxd-Combo-delBtn {
|
40948
|
+
padding-top: calc( (var(--Form-input-height) - var(--Form-input-lineHeight) * 10px) / 2 );
|
40949
|
+
}
|
40950
|
+
|
40951
|
+
.amis-scope .cxd-LocationControl .cxd-PopOver {
|
40952
|
+
border: none;
|
40953
|
+
top: calc(var(--Form-input-height) + 0.25rem) !important;
|
40954
|
+
box-shadow: var(--boxShadow);
|
40955
|
+
}
|
40956
|
+
|
40957
|
+
.amis-scope .cxd-Transfer-title {
|
40958
|
+
height: var(--Form-input-height);
|
40959
|
+
padding-left: 1rem;
|
40960
|
+
padding-right: 1rem;
|
40961
|
+
}
|
40962
|
+
|
40963
|
+
.amis-scope .cxd-Transfer .cxd-ListCheckboxes .cxd-ListCheckboxes-item {
|
40964
|
+
padding-left: 1rem;
|
40965
|
+
padding-right: 1rem;
|
40966
|
+
}
|
40967
|
+
|
40968
|
+
.amis-scope .cxd-Modal {
|
40969
|
+
box-shadow: var(--boxShadow);
|
40970
|
+
}
|
40971
|
+
|
40972
|
+
.amis-scope .cxd-Modal-content {
|
40973
|
+
padding: 1.5rem;
|
40974
|
+
border-radius: 0.375rem;
|
40975
|
+
}
|
40976
|
+
|
40977
|
+
.amis-scope .cxd-Modal-body {
|
40978
|
+
padding: 1rem 0 1.5rem 0;
|
40979
|
+
font-size: 12px;
|
40980
|
+
font-weight: 400;
|
40981
|
+
}
|
40982
|
+
|
40983
|
+
.amis-scope .cxd-Modal-footer .cxd-Button {
|
40984
|
+
margin-left: 1rem;
|
40985
|
+
}
|
40986
|
+
|
40987
|
+
.amis-scope .cxd-Drawer-content {
|
40988
|
+
border-radius: 0.375rem;
|
40989
|
+
}
|
40990
|
+
|
40991
|
+
.amis-scope .cxd-Drawer-header {
|
40992
|
+
border-radius: 0.375rem 0 0 0;
|
40993
|
+
}
|
40994
|
+
|
40995
|
+
.amis-scope .cxd-Drawer-title {
|
40996
|
+
font-size: 14px;
|
40997
|
+
font-weight: 500;
|
40998
|
+
}
|
40999
|
+
|
41000
|
+
.amis-scope .cxd-Drawer-body {
|
41001
|
+
font-size: 14px;
|
41002
|
+
font-weight: 400;
|
41003
|
+
}
|
41004
|
+
|
41005
|
+
.amis-scope .cxd-Drawer--right .cxd-Drawer-footer {
|
41006
|
+
justify-content: flex-end;
|
41007
|
+
}
|
41008
|
+
|
41009
|
+
.amis-scope .cxd-Drawer--right .cxd-Drawer-footer .cxd-Button {
|
41010
|
+
margin-left: 1rem;
|
41011
|
+
}
|
41012
|
+
|
41013
|
+
.amis-scope .cxd-Drawer--left .cxd-Drawer-footer .cxd-Button {
|
41014
|
+
margin-left: 1rem;
|
41015
|
+
}
|
41016
|
+
|
41017
|
+
.amis-scope .cxd-Drawer--top .cxd-Drawer-footer .cxd-Button,
|
41018
|
+
.amis-scope .cxd-Drawer--bottom .cxd-Drawer-footer .cxd-Button {
|
41019
|
+
margin-left: 1rem;
|
41020
|
+
}
|
41021
|
+
|
41022
|
+
.amis-scope .cxd-Steps .cxd-StepsItem-containerIcon {
|
41023
|
+
padding-right: 0.5rem;
|
41024
|
+
}
|
41025
|
+
|
41026
|
+
.amis-scope .cxd-Steps .cxd-StepsItem-containerIcon .cxd-StepsItem-icon {
|
41027
|
+
width: 1.5rem;
|
41028
|
+
height: 1.5rem;
|
41029
|
+
display: inline-flex;
|
41030
|
+
align-items: center;
|
41031
|
+
justify-content: center;
|
41032
|
+
}
|
41033
|
+
|
41034
|
+
.amis-scope .cxd-Steps .cxd-StepsItem-containerIcon .cxd-StepsItem-icon svg {
|
41035
|
+
width: 0.75rem;
|
41036
|
+
height: 0.75rem;
|
41037
|
+
}
|
41038
|
+
|
41039
|
+
.amis-scope .cxd-Steps .cxd-StepsItem-containerIconWrapper .cxd-StepsItem-body .cxd-StepsItem-title:after {
|
41040
|
+
padding-right: 0.5rem;
|
41041
|
+
}
|
41042
|
+
|
41043
|
+
.amis-scope .cxd-Steps .cxd-StepsItem-containerIconWrapper .cxd-StepsItem-body .cxd-StepsItem-subTitle {
|
41044
|
+
padding-left: 0.5rem;
|
41045
|
+
}
|
41046
|
+
|
41047
|
+
.amis-scope .cxd-Steps--vertical .cxd-StepsItem-containerIcon > .cxd-StepsItem-icon:after {
|
41048
|
+
top: 1.75rem;
|
41049
|
+
left: 0.625rem;
|
41050
|
+
transform: translate(0.0625rem);
|
41051
|
+
}
|
41052
|
+
|
41053
|
+
.amis-scope .cxd-Steps .cxd-StepsItem.is-finish .cxd-StepsItem-icon {
|
41054
|
+
color: var(--Steps-status-success);
|
41055
|
+
background-color: var(--white);
|
41056
|
+
}
|
41057
|
+
|
41058
|
+
.amis-scope .cxd-Steps .cxd-StepsItem.is-error .cxd-StepsItem-icon {
|
41059
|
+
color: var(--Steps-status-error);
|
41060
|
+
background-color: var(--white);
|
41061
|
+
border: 1px solid var(--Steps-status-error);
|
41062
|
+
}
|
41063
|
+
|
41064
|
+
.amis-scope .cxd-Form-feedback {
|
41065
|
+
list-style-type: none;
|
41066
|
+
padding-left: 0;
|
41067
|
+
}
|
41068
|
+
|
41069
|
+
.amis-scope .cxd-Form-label {
|
41070
|
+
font-size: 14px;
|
41071
|
+
color: #5e626a;
|
41072
|
+
}
|
41073
|
+
|
41074
|
+
.amis-scope .cxd-Form-item--inline .cxd-Form-label {
|
41075
|
+
margin-right: 1rem;
|
41076
|
+
font-size: 14px;
|
41077
|
+
color: #5e626a;
|
41078
|
+
}
|
41079
|
+
|
41080
|
+
.amis-scope .cxd-Form .cxd-Collapse {
|
41081
|
+
border: none;
|
41082
|
+
}
|
41083
|
+
|
41084
|
+
.amis-scope .cxd-Form .cxd-Collapse-arrow {
|
41085
|
+
margin-left: 0.5rem;
|
41086
|
+
}
|
41087
|
+
|
41088
|
+
.amis-scope .cxd-Form .cxd-Collapse-header {
|
41089
|
+
background-color: var(--white);
|
41090
|
+
display: inline-flex;
|
41091
|
+
justify-content: flex-end;
|
41092
|
+
flex-direction: row-reverse;
|
41093
|
+
}
|
41094
|
+
|
41095
|
+
.amis-scope .cxd-Form .cxd-Collapse-content {
|
41096
|
+
padding: 0;
|
40357
41097
|
}
|