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/antd-ie11.css
CHANGED
@@ -19745,7 +19745,7 @@ readers do not read off random characters that represent icons */
|
|
19745
19745
|
|
19746
19746
|
@media (max-width: 767px) {
|
19747
19747
|
.amis-scope .antd-Layout-content {
|
19748
|
-
transition: transform
|
19748
|
+
transition: transform 0s ease;
|
19749
19749
|
}
|
19750
19750
|
|
19751
19751
|
.amis-scope .antd-Layout-aside {
|
@@ -19772,7 +19772,7 @@ readers do not read off random characters that represent icons */
|
|
19772
19772
|
.amis-scope .antd-Layout--offScreen .antd-Layout-body,
|
19773
19773
|
.amis-scope .antd-Layout--offScreen .antd-Layout-footer {
|
19774
19774
|
background: #f0f2f5;
|
19775
|
-
transition: transform
|
19775
|
+
transition: transform 0s ease;
|
19776
19776
|
backface-visibility: hidden;
|
19777
19777
|
transform: translate3d(75%, 0px, 0px);
|
19778
19778
|
overflow: hidden;
|
@@ -19818,7 +19818,7 @@ readers do not read off random characters that represent icons */
|
|
19818
19818
|
.amis-scope .antd-Layout-brandBar,
|
19819
19819
|
.amis-scope .antd-Layout-aside {
|
19820
19820
|
width: 12.5rem;
|
19821
|
-
transition: width
|
19821
|
+
transition: width 0s ease;
|
19822
19822
|
}
|
19823
19823
|
|
19824
19824
|
.amis-scope .antd-Layout-brandBar {
|
@@ -19840,7 +19840,7 @@ readers do not read off random characters that represent icons */
|
|
19840
19840
|
.amis-scope .antd-Layout--withAside .antd-Layout-headerBar,
|
19841
19841
|
.amis-scope .antd-Layout--withAside .antd-Layout-footer {
|
19842
19842
|
margin-left: 12.5rem;
|
19843
|
-
transition: margin
|
19843
|
+
transition: margin 0s ease;
|
19844
19844
|
}
|
19845
19845
|
|
19846
19846
|
.amis-scope .antd-Layout .visible-folded {
|
@@ -20603,7 +20603,7 @@ readers do not read off random characters that represent icons */
|
|
20603
20603
|
content: "";
|
20604
20604
|
display: inline-block;
|
20605
20605
|
transform-origin: center;
|
20606
|
-
transition: transform
|
20606
|
+
transition: transform 0s ease;
|
20607
20607
|
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB2aWV3Qm94PSIwIDAgNTEzIDEwMjEiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+Cgk8ZyBpZD0icmlnaHQtYXJyb3ciIGZpbGw9IiNmZmZmZmYiIGZpbGwtcnVsZT0ibm9uemVybyI+CgkJPHBhdGggZD0iTTU2LjU1OTA1NCwxMDEzLjc3MzY5IEw1MTIuOTA4MTE2LDUxMi42ODQ1MjQgTDU2LjU1OTA1NCwxMi4yMzQ1MDEgQzQ5LjQxMTQ2NzgsMi45MzQ1NTkxMiAzNy42NjY0MjM4LC0xLjU5MTg4MTc2IDI2LjEyNjIzMjQsMC41MDU5NDgyNDYgQzE0LjU4NjA0MSwyLjYwMzc3ODI1IDUuMTg1NDQ0MDksMTAuOTc0MTcyNyAxLjc2ODE1NTE2LDIyLjE5NDY0NzEgQy0xLjY0OTEzMzc3LDMzLjQxNTEyMTQgMS40ODk4MDIyOCw0NS42MDQ1MzUxIDkuOTAxNTE2LDUzLjc3ODg4NCBMNDI0LjcwNjE5Nyw1MTIuNjg0NTI0IEwxMi40NTgwOTQsOTY5LjY3MjczMSBDMi40NTgyMDU5Niw5ODIuNTUxNDk4IDQuMDEyOTc3MzcsMTAwMC45NDgzIDE2LjAzMjQ0MjIsMTAxMS45NjYxNSBDMjguMDUxOTA3MSwxMDIyLjk4Mzk5IDQ2LjUxNDIzNDYsMTAyMi45MzYxOSA1OC40NzY0ODcsMTAxMS44NTYyNiBMNTYuNTU5MDU0LDEwMTMuNzczNjkgWiIgaWQ9Iui3r+W+hCI+CgkJPC9wYXRoPgoJPC9nPgo8L3N2Zz4K);
|
20608
20608
|
width: 0.625rem;
|
20609
20609
|
height: 0.625rem;
|
@@ -20621,7 +20621,7 @@ readers do not read off random characters that represent icons */
|
|
20621
20621
|
width: 0.625rem;
|
20622
20622
|
height: 0.625rem;
|
20623
20623
|
transform-origin: center;
|
20624
|
-
transition: transform
|
20624
|
+
transition: transform 0s ease;
|
20625
20625
|
}
|
20626
20626
|
|
20627
20627
|
.amis-scope .antd-AsideNav-item.is-open > a > .antd-AsideNav-itemArrow > svg {
|
@@ -20669,7 +20669,7 @@ readers do not read off random characters that represent icons */
|
|
20669
20669
|
height: 0;
|
20670
20670
|
overflow: hidden;
|
20671
20671
|
margin-left: calc(1rem * -1);
|
20672
|
-
transition: all
|
20672
|
+
transition: all 0s ease-in-out 0s;
|
20673
20673
|
background: #000c17;
|
20674
20674
|
}
|
20675
20675
|
|
@@ -20702,7 +20702,7 @@ readers do not read off random characters that represent icons */
|
|
20702
20702
|
font-size: 0.875rem;
|
20703
20703
|
padding: calc( ( 2.5rem - 1.57 * 0.875rem ) / 2 ) 0.75rem;
|
20704
20704
|
position: relative;
|
20705
|
-
transition: background-color
|
20705
|
+
transition: background-color 0s ease-in-out 0s;
|
20706
20706
|
color: #b4b6bd;
|
20707
20707
|
text-decoration: none;
|
20708
20708
|
user-select: none;
|
@@ -20789,7 +20789,7 @@ readers do not read off random characters that represent icons */
|
|
20789
20789
|
color: #fff;
|
20790
20790
|
padding: 0.125rem 0.625rem;
|
20791
20791
|
opacity: 0;
|
20792
|
-
transition: all
|
20792
|
+
transition: all 0s ease-in-out;
|
20793
20793
|
}
|
20794
20794
|
|
20795
20795
|
.amis-scope .antd-AsideNav-divider {
|
@@ -21138,8 +21138,8 @@ readers do not read off random characters that represent icons */
|
|
21138
21138
|
cursor: not-allowed;
|
21139
21139
|
color: #999;
|
21140
21140
|
pointer-events: auto;
|
21141
|
-
border:
|
21142
|
-
background: #
|
21141
|
+
border: 0.0625rem solid #d9d9d9;
|
21142
|
+
background: #f2f3f3;
|
21143
21143
|
}
|
21144
21144
|
|
21145
21145
|
.amis-scope .antd-Button:not(:disabled):not(.is-disabled) {
|
@@ -21148,6 +21148,7 @@ readers do not read off random characters that represent icons */
|
|
21148
21148
|
|
21149
21149
|
.amis-scope .antd-Button.cxd-Button--link.is-disabled {
|
21150
21150
|
background: transparent;
|
21151
|
+
border: none;
|
21151
21152
|
}
|
21152
21153
|
|
21153
21154
|
.amis-scope .antd-Button > .pull-left,
|
@@ -21182,8 +21183,8 @@ readers do not read off random characters that represent icons */
|
|
21182
21183
|
|
21183
21184
|
.amis-scope .antd-Button--primary:not(:disabled):not(.is-disabled):hover:active {
|
21184
21185
|
color: #fff;
|
21185
|
-
background: #
|
21186
|
-
border-color: #
|
21186
|
+
background: #1c53c1;
|
21187
|
+
border-color: #1c53c1;
|
21187
21188
|
}
|
21188
21189
|
|
21189
21190
|
.amis-scope .antd-Button--primary:hover:focus {
|
@@ -21247,15 +21248,15 @@ readers do not read off random characters that represent icons */
|
|
21247
21248
|
}
|
21248
21249
|
|
21249
21250
|
.amis-scope .antd-Button--enhance:not(:disabled):not(.is-disabled):hover {
|
21250
|
-
color: #
|
21251
|
+
color: #4f86f4;
|
21251
21252
|
background: #fff;
|
21252
|
-
border-color: #
|
21253
|
+
border-color: #4f86f4;
|
21253
21254
|
}
|
21254
21255
|
|
21255
21256
|
.amis-scope .antd-Button--enhance:not(:disabled):not(.is-disabled):hover:active {
|
21256
|
-
color: #
|
21257
|
+
color: #1c53c1;
|
21257
21258
|
background: #fff;
|
21258
|
-
border-color: #
|
21259
|
+
border-color: #1c53c1;
|
21259
21260
|
}
|
21260
21261
|
|
21261
21262
|
.amis-scope .antd-Button--enhance:hover:focus {
|
@@ -21620,12 +21621,12 @@ readers do not read off random characters that represent icons */
|
|
21620
21621
|
}
|
21621
21622
|
|
21622
21623
|
.amis-scope .antd-Button--link:hover:focus {
|
21623
|
-
color: #
|
21624
|
+
color: #4f86f4;
|
21624
21625
|
box-shadow: none;
|
21625
21626
|
}
|
21626
21627
|
|
21627
21628
|
.amis-scope .antd-Button--link:hover:active {
|
21628
|
-
color: #
|
21629
|
+
color: #1c53c1;
|
21629
21630
|
box-shadow: none;
|
21630
21631
|
}
|
21631
21632
|
|
@@ -21633,7 +21634,7 @@ readers do not read off random characters that represent icons */
|
|
21633
21634
|
.amis-scope .antd-Button--link.is-disabled {
|
21634
21635
|
color: #999;
|
21635
21636
|
pointer-events: none;
|
21636
|
-
background: #
|
21637
|
+
background: #f2f3f3;
|
21637
21638
|
}
|
21638
21639
|
|
21639
21640
|
.amis-scope .antd-Button--block {
|
@@ -21895,7 +21896,7 @@ readers do not read off random characters that represent icons */
|
|
21895
21896
|
|
21896
21897
|
.amis-scope .antd-Modal-content.in,
|
21897
21898
|
.amis-scope .antd-Modal-content.out {
|
21898
|
-
animation-duration:
|
21899
|
+
animation-duration: 0s;
|
21899
21900
|
animation-fill-mode: both;
|
21900
21901
|
}
|
21901
21902
|
|
@@ -21908,7 +21909,7 @@ readers do not read off random characters that represent icons */
|
|
21908
21909
|
}
|
21909
21910
|
|
21910
21911
|
.amis-scope .antd-Modal-overlay {
|
21911
|
-
transition: ease-in-out opacity
|
21912
|
+
transition: ease-in-out opacity 0s;
|
21912
21913
|
position: fixed;
|
21913
21914
|
top: 0;
|
21914
21915
|
right: 0;
|
@@ -22132,11 +22133,11 @@ readers do not read off random characters that represent icons */
|
|
22132
22133
|
z-index: 2;
|
22133
22134
|
border: 0.0625rem solid #eceff8;
|
22134
22135
|
border-radius: 0;
|
22135
|
-
transition: transform ease-in-out
|
22136
|
+
transition: transform ease-in-out 0s;
|
22136
22137
|
}
|
22137
22138
|
|
22138
22139
|
.amis-scope .antd-Drawer-overlay {
|
22139
|
-
transition: ease-out opacity
|
22140
|
+
transition: ease-out opacity 0s;
|
22140
22141
|
position: fixed;
|
22141
22142
|
top: 0;
|
22142
22143
|
right: 0;
|
@@ -22644,7 +22645,7 @@ readers do not read off random characters that represent icons */
|
|
22644
22645
|
color: #fff;
|
22645
22646
|
padding: 0.125rem 0.625rem;
|
22646
22647
|
display: none;
|
22647
|
-
animation-duration:
|
22648
|
+
animation-duration: 0s;
|
22648
22649
|
animation-fill-mode: both;
|
22649
22650
|
}
|
22650
22651
|
|
@@ -22823,7 +22824,7 @@ readers do not read off random characters that represent icons */
|
|
22823
22824
|
.amis-scope .antd-Toast.in,
|
22824
22825
|
.amis-scope .antd-Toast.out {
|
22825
22826
|
animation-fill-mode: both;
|
22826
|
-
animation-duration:
|
22827
|
+
animation-duration: 0s;
|
22827
22828
|
opacity: 1;
|
22828
22829
|
}
|
22829
22830
|
|
@@ -23315,7 +23316,7 @@ readers do not read off random characters that represent icons */
|
|
23315
23316
|
display: none;
|
23316
23317
|
padding: 0.75rem;
|
23317
23318
|
opacity: 0;
|
23318
|
-
transition: opacity
|
23319
|
+
transition: opacity 0s linear;
|
23319
23320
|
}
|
23320
23321
|
|
23321
23322
|
.amis-scope .antd-Tabs-pane.is-active {
|
@@ -23678,6 +23679,10 @@ readers do not read off random characters that represent icons */
|
|
23678
23679
|
}
|
23679
23680
|
|
23680
23681
|
.amis-scope .antd-Nav {
|
23682
|
+
position: relative;
|
23683
|
+
}
|
23684
|
+
|
23685
|
+
.amis-scope .antd-Nav .antd-Nav-list {
|
23681
23686
|
list-style: none;
|
23682
23687
|
user-select: none;
|
23683
23688
|
margin: 0;
|
@@ -23685,26 +23690,26 @@ readers do not read off random characters that represent icons */
|
|
23685
23690
|
position: relative;
|
23686
23691
|
}
|
23687
23692
|
|
23688
|
-
.amis-scope .antd-Nav .antd-Nav-itemIcon {
|
23693
|
+
.amis-scope .antd-Nav .antd-Nav-list .antd-Nav-itemIcon {
|
23689
23694
|
margin-right: 0.5rem;
|
23690
23695
|
}
|
23691
23696
|
|
23692
|
-
.amis-scope .antd-Nav img.antd-Nav-itemIcon {
|
23697
|
+
.amis-scope .antd-Nav .antd-Nav-list img.antd-Nav-itemIcon {
|
23693
23698
|
height: 0.875rem;
|
23694
23699
|
vertical-align: middle;
|
23695
23700
|
}
|
23696
23701
|
|
23697
|
-
.amis-scope .antd-Nav--tabs {
|
23702
|
+
.amis-scope .antd-Nav .antd-Nav-list--tabs {
|
23698
23703
|
border-bottom: 0.0625rem solid #eceff8;
|
23699
23704
|
}
|
23700
23705
|
|
23701
|
-
.amis-scope .antd-Nav--tabs .antd-Nav-item {
|
23706
|
+
.amis-scope .antd-Nav .antd-Nav-list--tabs .antd-Nav-item {
|
23702
23707
|
margin-bottom: calc(0.0625rem * -1);
|
23703
23708
|
display: inline-block;
|
23704
23709
|
position: relative;
|
23705
23710
|
}
|
23706
23711
|
|
23707
|
-
.amis-scope .antd-Nav--tabs .antd-Nav-item > a {
|
23712
|
+
.amis-scope .antd-Nav .antd-Nav-list--tabs .antd-Nav-item > a {
|
23708
23713
|
font-size: 0.875rem;
|
23709
23714
|
display: block;
|
23710
23715
|
outline: none;
|
@@ -23718,34 +23723,34 @@ readers do not read off random characters that represent icons */
|
|
23718
23723
|
cursor: pointer;
|
23719
23724
|
}
|
23720
23725
|
|
23721
|
-
.amis-scope .antd-Nav--tabs .antd-Nav-item:hover > a,
|
23722
|
-
.amis-scope .antd-Nav--tabs .antd-Nav-item > a:focus {
|
23726
|
+
.amis-scope .antd-Nav .antd-Nav-list--tabs .antd-Nav-item:hover > a,
|
23727
|
+
.amis-scope .antd-Nav .antd-Nav-list--tabs .antd-Nav-item > a:focus {
|
23723
23728
|
border-color: #e5e7eb;
|
23724
23729
|
text-decoration: none;
|
23725
23730
|
}
|
23726
23731
|
|
23727
|
-
.amis-scope .antd-Nav--tabs .antd-Nav-item.disabled > a,
|
23728
|
-
.amis-scope .antd-Nav--tabs .antd-Nav-item.is-disabled > a {
|
23732
|
+
.amis-scope .antd-Nav .antd-Nav-list--tabs .antd-Nav-item.disabled > a,
|
23733
|
+
.amis-scope .antd-Nav .antd-Nav-list--tabs .antd-Nav-item.is-disabled > a {
|
23729
23734
|
color: #4b5563;
|
23730
23735
|
background: transparent;
|
23731
23736
|
border-color: transparent;
|
23732
23737
|
pointer-events: none;
|
23733
23738
|
}
|
23734
23739
|
|
23735
|
-
.amis-scope .antd-Nav--tabs .antd-Nav-item.active > a,
|
23736
|
-
.amis-scope .antd-Nav--tabs .antd-Nav-item.is-active > a {
|
23740
|
+
.amis-scope .antd-Nav .antd-Nav-list--tabs .antd-Nav-item.active > a,
|
23741
|
+
.amis-scope .antd-Nav .antd-Nav-list--tabs .antd-Nav-item.is-active > a {
|
23737
23742
|
color: #374151;
|
23738
23743
|
background: #fff;
|
23739
23744
|
border-color: #eceff8;
|
23740
23745
|
border-bottom-color: #fff;
|
23741
23746
|
}
|
23742
23747
|
|
23743
|
-
.amis-scope .antd-Nav--stacked {
|
23748
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked {
|
23744
23749
|
min-height: 3.125rem;
|
23745
23750
|
}
|
23746
23751
|
|
23747
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item,
|
23748
|
-
.amis-scope .antd-Nav--stacked .antd-Badge {
|
23752
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item,
|
23753
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge {
|
23749
23754
|
position: relative;
|
23750
23755
|
display: flex;
|
23751
23756
|
flex-wrap: wrap;
|
@@ -23753,8 +23758,8 @@ readers do not read off random characters that represent icons */
|
|
23753
23758
|
width: 100%;
|
23754
23759
|
}
|
23755
23760
|
|
23756
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-itemDrager,
|
23757
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-itemDrager {
|
23761
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemDrager,
|
23762
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-itemDrager {
|
23758
23763
|
cursor: move;
|
23759
23764
|
position: absolute;
|
23760
23765
|
left: 0;
|
@@ -23762,28 +23767,28 @@ readers do not read off random characters that represent icons */
|
|
23762
23767
|
display: none;
|
23763
23768
|
}
|
23764
23769
|
|
23765
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-itemDrager >
|
23766
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-itemDrager > .antd-Badge >
|
23767
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-itemDrager >
|
23768
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-itemDrager > .antd-Badge >
|
23770
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemDrager > .icon,
|
23771
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemDrager > .antd-Badge > .icon,
|
23772
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-itemDrager > .icon,
|
23773
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-itemDrager > .antd-Badge > .icon {
|
23769
23774
|
color: inherit;
|
23770
23775
|
}
|
23771
23776
|
|
23772
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-itemDrager >
|
23773
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-itemDrager > .antd-Badge >
|
23774
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-itemDrager >
|
23775
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-itemDrager > .antd-Badge >
|
23777
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemDrager > .icon:hover,
|
23778
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemDrager > .antd-Badge > .icon:hover,
|
23779
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-itemDrager > .icon:hover,
|
23780
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-itemDrager > .antd-Badge > .icon:hover {
|
23776
23781
|
color: #1890ff;
|
23777
23782
|
}
|
23778
23783
|
|
23779
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-itemDrager svg,
|
23780
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-itemDrager svg {
|
23784
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemDrager svg,
|
23785
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-itemDrager svg {
|
23781
23786
|
width: 1rem;
|
23782
23787
|
height: 1rem;
|
23783
23788
|
}
|
23784
23789
|
|
23785
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Nav-item-badgeText,
|
23786
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Nav-item-badgeText {
|
23790
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Nav-item-badgeText,
|
23791
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Nav-item-badgeText {
|
23787
23792
|
position: absolute;
|
23788
23793
|
top: 0;
|
23789
23794
|
bottom: 0;
|
@@ -23791,8 +23796,8 @@ readers do not read off random characters that represent icons */
|
|
23791
23796
|
overflow: hidden;
|
23792
23797
|
}
|
23793
23798
|
|
23794
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Nav-item-badgeText > span,
|
23795
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Nav-item-badgeText > span {
|
23799
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Nav-item-badgeText > span,
|
23800
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Nav-item-badgeText > span {
|
23796
23801
|
position: absolute;
|
23797
23802
|
top: 0.125rem;
|
23798
23803
|
left: -0.8125rem;
|
@@ -23804,16 +23809,16 @@ readers do not read off random characters that represent icons */
|
|
23804
23809
|
background: #52c41a;
|
23805
23810
|
}
|
23806
23811
|
|
23807
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Nav-item-atcions,
|
23808
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Nav-item-atcions {
|
23812
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Nav-item-atcions,
|
23813
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Nav-item-atcions {
|
23809
23814
|
display: flex;
|
23810
23815
|
align-items: center;
|
23811
23816
|
}
|
23812
23817
|
|
23813
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > a,
|
23814
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Badge > a,
|
23815
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > a,
|
23816
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Badge > a {
|
23818
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > a,
|
23819
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Badge > a,
|
23820
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > a,
|
23821
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Badge > a {
|
23817
23822
|
display: flex;
|
23818
23823
|
align-items: center;
|
23819
23824
|
outline: none;
|
@@ -23827,147 +23832,154 @@ readers do not read off random characters that represent icons */
|
|
23827
23832
|
flex: 1;
|
23828
23833
|
}
|
23829
23834
|
|
23830
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > a:hover,
|
23831
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > a:focus,
|
23832
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > a:hover + .antd-Nav-item-atcions,
|
23833
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > a:focus + .antd-Nav-item-atcions,
|
23834
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Badge > a:hover,
|
23835
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Badge > a:focus,
|
23836
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Badge > a:hover + .antd-Nav-item-atcions,
|
23837
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Badge > a:focus + .antd-Nav-item-atcions,
|
23838
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > a:hover,
|
23839
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > a:focus,
|
23840
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > a:hover + .antd-Nav-item-atcions,
|
23841
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > a:focus + .antd-Nav-item-atcions,
|
23842
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Badge > a:hover,
|
23843
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Badge > a:focus,
|
23844
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Badge > a:hover + .antd-Nav-item-atcions,
|
23845
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Badge > a:focus + .antd-Nav-item-atcions {
|
23835
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > a:hover,
|
23836
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > a:focus,
|
23837
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > a:hover + .antd-Nav-item-atcions,
|
23838
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > a:focus + .antd-Nav-item-atcions,
|
23839
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Badge > a:hover,
|
23840
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Badge > a:focus,
|
23841
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Badge > a:hover + .antd-Nav-item-atcions,
|
23842
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Badge > a:focus + .antd-Nav-item-atcions,
|
23843
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > a:hover,
|
23844
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > a:focus,
|
23845
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > a:hover + .antd-Nav-item-atcions,
|
23846
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > a:focus + .antd-Nav-item-atcions,
|
23847
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Badge > a:hover,
|
23848
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Badge > a:focus,
|
23849
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Badge > a:hover + .antd-Nav-item-atcions,
|
23850
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Badge > a:focus + .antd-Nav-item-atcions {
|
23846
23851
|
border-color: #333;
|
23847
23852
|
text-decoration: none;
|
23848
23853
|
background: rgba(0, 0, 0, 0.05);
|
23849
23854
|
z-index: 9999;
|
23850
23855
|
}
|
23851
23856
|
|
23852
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > a:hover > .antd-Nav-itemDrager,
|
23853
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > a:focus > .antd-Nav-itemDrager,
|
23854
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Badge > a:hover > .antd-Nav-itemDrager,
|
23855
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item > .antd-Badge > a:focus > .antd-Nav-itemDrager,
|
23856
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > a:hover > .antd-Nav-itemDrager,
|
23857
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > a:focus > .antd-Nav-itemDrager,
|
23858
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Badge > a:hover > .antd-Nav-itemDrager,
|
23859
|
-
.amis-scope .antd-Nav--stacked .antd-Badge > .antd-Badge > a:focus > .antd-Nav-itemDrager {
|
23857
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > a:hover > .antd-Nav-itemDrager,
|
23858
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > a:focus > .antd-Nav-itemDrager,
|
23859
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Badge > a:hover > .antd-Nav-itemDrager,
|
23860
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item > .antd-Badge > a:focus > .antd-Nav-itemDrager,
|
23861
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > a:hover > .antd-Nav-itemDrager,
|
23862
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > a:focus > .antd-Nav-itemDrager,
|
23863
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Badge > a:hover > .antd-Nav-itemDrager,
|
23864
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge > .antd-Badge > a:focus > .antd-Nav-itemDrager {
|
23860
23865
|
display: block;
|
23861
23866
|
}
|
23862
23867
|
|
23863
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.disabled > a,
|
23864
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-disabled > a,
|
23865
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.disabled > .antd-Badge > a,
|
23866
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-disabled > .antd-Badge > a,
|
23867
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.disabled > a,
|
23868
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-disabled > a,
|
23869
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.disabled > .antd-Badge > a,
|
23870
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-disabled > .antd-Badge > a {
|
23868
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.disabled > a,
|
23869
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-disabled > a,
|
23870
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.disabled > .antd-Badge > a,
|
23871
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-disabled > .antd-Badge > a,
|
23872
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.disabled > a,
|
23873
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-disabled > a,
|
23874
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.disabled > .antd-Badge > a,
|
23875
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-disabled > .antd-Badge > a {
|
23871
23876
|
color: #999;
|
23872
23877
|
background: transparent;
|
23873
23878
|
pointer-events: none;
|
23874
23879
|
}
|
23875
23880
|
|
23876
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.active,
|
23877
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-active,
|
23878
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.active,
|
23879
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-active {
|
23881
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active,
|
23882
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active,
|
23883
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.active,
|
23884
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active {
|
23880
23885
|
background: #1890ff !important;
|
23881
23886
|
}
|
23882
23887
|
|
23883
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.active > a,
|
23884
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-active > .antd-Nav-item-atcions,
|
23885
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-active > a,
|
23886
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.active > .antd-Badge > a,
|
23887
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-active > .antd-Badge > .antd-Nav-item-atcions,
|
23888
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-active > .antd-Badge > a,
|
23889
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.active > a,
|
23890
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-active > .antd-Nav-item-atcions,
|
23891
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-active > a,
|
23892
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.active > .antd-Badge > a,
|
23893
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-active > .antd-Badge > .antd-Nav-item-atcions,
|
23894
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-active > .antd-Badge > a {
|
23888
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active > a,
|
23889
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > .antd-Nav-item-atcions,
|
23890
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > a,
|
23891
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active > .antd-Badge > a,
|
23892
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > .antd-Badge > .antd-Nav-item-atcions,
|
23893
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > .antd-Badge > a,
|
23894
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.active > a,
|
23895
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > .antd-Nav-item-atcions,
|
23896
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > a,
|
23897
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.active > .antd-Badge > a,
|
23898
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > .antd-Badge > .antd-Nav-item-atcions,
|
23899
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > .antd-Badge > a {
|
23895
23900
|
color: #fff;
|
23896
23901
|
position: relative;
|
23897
23902
|
}
|
23898
23903
|
|
23899
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.active > a::after,
|
23900
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-active > .antd-Nav-item-atcions::after,
|
23901
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-active > a::after,
|
23902
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.active > .antd-Badge > a::after,
|
23903
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-active > .antd-Badge > .antd-Nav-item-atcions::after,
|
23904
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-active > .antd-Badge > a::after,
|
23905
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.active > a::after,
|
23906
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-active > .antd-Nav-item-atcions::after,
|
23907
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-active > a::after,
|
23908
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.active > .antd-Badge > a::after,
|
23909
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-active > .antd-Badge > .antd-Nav-item-atcions::after,
|
23910
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-active > .antd-Badge > a::after {
|
23904
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active > a::after,
|
23905
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > .antd-Nav-item-atcions::after,
|
23906
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > a::after,
|
23907
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.active > .antd-Badge > a::after,
|
23908
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > .antd-Badge > .antd-Nav-item-atcions::after,
|
23909
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-active > .antd-Badge > a::after,
|
23910
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.active > a::after,
|
23911
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > .antd-Nav-item-atcions::after,
|
23912
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > a::after,
|
23913
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.active > .antd-Badge > a::after,
|
23914
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > .antd-Badge > .antd-Nav-item-atcions::after,
|
23915
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-active > .antd-Badge > a::after {
|
23911
23916
|
transform: scaleY(1);
|
23912
23917
|
}
|
23913
23918
|
|
23914
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-unfolded > a .antd-Nav-itemToggler,
|
23915
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-unfolded > .antd-Badge > a .antd-Nav-itemToggler,
|
23916
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-unfolded > a .antd-Nav-itemToggler,
|
23917
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-unfolded > .antd-Badge > a .antd-Nav-itemToggler {
|
23919
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-unfolded > a .antd-Nav-itemToggler,
|
23920
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-unfolded > .antd-Badge > a .antd-Nav-itemToggler,
|
23921
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-unfolded > a .antd-Nav-itemToggler,
|
23922
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-unfolded > .antd-Badge > a .antd-Nav-itemToggler {
|
23918
23923
|
transform: rotate(180deg) scale(0.8);
|
23919
23924
|
}
|
23920
23925
|
|
23921
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-unfolded > .antd-Nav-subItems,
|
23922
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item.is-unfolded > .antd-Badge > .antd-Nav-subItems,
|
23923
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-unfolded > .antd-Nav-subItems,
|
23924
|
-
.amis-scope .antd-Nav--stacked .antd-Badge.is-unfolded > .antd-Badge > .antd-Nav-subItems {
|
23926
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-unfolded > .antd-Nav-subItems,
|
23927
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item.is-unfolded > .antd-Badge > .antd-Nav-subItems,
|
23928
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-unfolded > .antd-Nav-subItems,
|
23929
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge.is-unfolded > .antd-Badge > .antd-Nav-subItems {
|
23925
23930
|
display: block;
|
23926
23931
|
}
|
23927
23932
|
|
23928
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-spinner,
|
23929
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-spinner {
|
23933
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-spinner,
|
23934
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-spinner {
|
23930
23935
|
position: absolute;
|
23931
23936
|
right: 0.625rem;
|
23932
23937
|
top: 0.5rem;
|
23933
23938
|
}
|
23934
23939
|
|
23935
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-itemToggler,
|
23936
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-itemToggler {
|
23940
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemToggler,
|
23941
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-itemToggler {
|
23937
23942
|
float: left;
|
23938
|
-
|
23943
|
+
margin-right: 0.625rem;
|
23939
23944
|
height: 1.5rem;
|
23940
23945
|
text-align: center;
|
23941
23946
|
line-height: 1.5rem;
|
23942
23947
|
vertical-align: middle;
|
23943
23948
|
cursor: pointer;
|
23944
23949
|
transform: scale(0.8);
|
23945
|
-
transition: transform
|
23950
|
+
transition: transform 0s;
|
23946
23951
|
}
|
23947
23952
|
|
23948
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-itemToggler > svg,
|
23949
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-itemToggler > svg {
|
23953
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-itemToggler > svg,
|
23954
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-itemToggler > svg {
|
23950
23955
|
width: 10px;
|
23951
23956
|
height: 10px;
|
23952
23957
|
top: 0;
|
23953
23958
|
}
|
23954
23959
|
|
23955
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-subItems,
|
23956
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-subItems {
|
23960
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-subItems,
|
23961
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-subItems {
|
23957
23962
|
display: none;
|
23958
23963
|
padding-left: 0;
|
23959
23964
|
list-style: none;
|
23960
23965
|
width: 100%;
|
23961
23966
|
}
|
23962
23967
|
|
23963
|
-
.amis-scope .antd-Nav--stacked .antd-Nav-item .antd-Nav-item,
|
23964
|
-
.amis-scope .antd-Nav--stacked .antd-Badge .antd-Nav-item {
|
23968
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Nav-item .antd-Nav-item,
|
23969
|
+
.amis-scope .antd-Nav .antd-Nav-list--stacked .antd-Badge .antd-Nav-item {
|
23965
23970
|
font-size: 0.875rem;
|
23966
23971
|
}
|
23967
23972
|
|
23973
|
+
.amis-scope .antd-Nav .antd-Nav-dropIndicator {
|
23974
|
+
position: absolute;
|
23975
|
+
background: #fff;
|
23976
|
+
height: 2px;
|
23977
|
+
}
|
23978
|
+
|
23968
23979
|
.amis-scope .antd-Page {
|
23969
23980
|
width: 100%;
|
23970
23981
|
height: 100%;
|
23982
|
+
background: transparent;
|
23971
23983
|
}
|
23972
23984
|
|
23973
23985
|
.amis-scope .antd-Page-header {
|
@@ -23975,7 +23987,6 @@ readers do not read off random characters that represent icons */
|
|
23975
23987
|
}
|
23976
23988
|
|
23977
23989
|
.amis-scope .antd-Page-main {
|
23978
|
-
background: transparent;
|
23979
23990
|
height: 100%;
|
23980
23991
|
display: flex;
|
23981
23992
|
flex-direction: column;
|
@@ -23990,11 +24001,9 @@ readers do not read off random characters that represent icons */
|
|
23990
24001
|
|
23991
24002
|
.amis-scope .antd-Page-main > .antd-Page-header {
|
23992
24003
|
border-bottom: 0.0625rem solid #eceff8;
|
23993
|
-
background: #fff;
|
23994
24004
|
}
|
23995
24005
|
|
23996
24006
|
.amis-scope .antd-Page-headerRow {
|
23997
|
-
background: #fff;
|
23998
24007
|
border-bottom: 0.0625rem solid #eceff8;
|
23999
24008
|
display: flex;
|
24000
24009
|
flex-direction: row;
|
@@ -24039,10 +24048,6 @@ readers do not read off random characters that represent icons */
|
|
24039
24048
|
margin-left: 0.25rem;
|
24040
24049
|
}
|
24041
24050
|
|
24042
|
-
.amis-scope .antd-Page-aside {
|
24043
|
-
background: #ffffff;
|
24044
|
-
}
|
24045
|
-
|
24046
24051
|
@media (min-width: 768px) {
|
24047
24052
|
.amis-scope .antd-Page-aside {
|
24048
24053
|
min-width: 12.5rem;
|
@@ -24157,7 +24162,7 @@ readers do not read off random characters that represent icons */
|
|
24157
24162
|
.amis-scope .antd-Video-cursor {
|
24158
24163
|
position: absolute;
|
24159
24164
|
border: 2px solid #1890ff;
|
24160
|
-
transition: all
|
24165
|
+
transition: all 0s ease-out;
|
24161
24166
|
}
|
24162
24167
|
|
24163
24168
|
.amis-scope .antd-Video-frameList .antd-Video-frameItem {
|
@@ -24602,7 +24607,7 @@ readers do not read off random characters that represent icons */
|
|
24602
24607
|
right: 0;
|
24603
24608
|
bottom: 0;
|
24604
24609
|
background: rgba(255, 255, 255, 0.4);
|
24605
|
-
transition: ease-out opacity
|
24610
|
+
transition: ease-out opacity 0s;
|
24606
24611
|
opacity: 0;
|
24607
24612
|
}
|
24608
24613
|
|
@@ -24617,7 +24622,7 @@ readers do not read off random characters that represent icons */
|
|
24617
24622
|
display: inline-block;
|
24618
24623
|
background: url("data:image/svg+xml,%0A%3Csvg width='38' height='38' viewBox='0 0 38 38' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient x1='8.042%25' y1='0%25' x2='65.682%25' y2='23.865%25' id='a'%3E%3Cstop stop-color='%23eee' stop-opacity='0' offset='0%25'/%3E%3Cstop stop-color='%23999' stop-opacity='.631' offset='63.146%25'/%3E%3Cstop stop-color='%23666' offset='100%25'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(1 1)'%3E%3Cpath d='M36 18c0-9.94-8.06-18-18-18' id='Oval-2' stroke='url(%23a)' stroke-width='2'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='0.9s' repeatCount='indefinite' /%3E%3C/path%3E%3Ccircle fill='%23eee' cx='36' cy='18' r='1'%3E%3CanimateTransform attributeName='transform' type='rotate' from='0 18 18' to='360 18 18' dur='0.9s' repeatCount='indefinite' /%3E%3C/circle%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
|
24619
24624
|
background-size: 100%;
|
24620
|
-
transition: ease-out all
|
24625
|
+
transition: ease-out all 0s;
|
24621
24626
|
}
|
24622
24627
|
|
24623
24628
|
.amis-scope .antd-Spinner--lg {
|
@@ -24783,7 +24788,7 @@ readers do not read off random characters that represent icons */
|
|
24783
24788
|
margin-left: 0.5rem;
|
24784
24789
|
display: inline-block;
|
24785
24790
|
vertical-align: top;
|
24786
|
-
transition: transform
|
24791
|
+
transition: transform 0s ease;
|
24787
24792
|
}
|
24788
24793
|
|
24789
24794
|
.amis-scope .antd-DropDown-caret > svg {
|
@@ -24840,18 +24845,19 @@ readers do not read off random characters that represent icons */
|
|
24840
24845
|
height: 2.125rem;
|
24841
24846
|
vertical-align: middle;
|
24842
24847
|
user-select: none;
|
24843
|
-
color:
|
24848
|
+
color: rgba(0, 0, 0, 0.85);
|
24844
24849
|
text-decoration: none;
|
24845
24850
|
}
|
24846
24851
|
|
24847
24852
|
.amis-scope .antd-DropDown-menuItem:hover,
|
24848
24853
|
.amis-scope .antd-DropDown-menu > li:hover {
|
24849
24854
|
background: rgba(0, 126, 255, 0.08);
|
24850
|
-
color:
|
24855
|
+
color: #1890ff;
|
24851
24856
|
}
|
24852
24857
|
|
24853
24858
|
.amis-scope .antd-DropDown-menuItem.is-active,
|
24854
24859
|
.amis-scope .antd-DropDown-menu > li.is-active {
|
24860
|
+
background: rgba(0, 126, 255, 0.08);
|
24855
24861
|
color: #1890ff;
|
24856
24862
|
}
|
24857
24863
|
|
@@ -24909,15 +24915,21 @@ readers do not read off random characters that represent icons */
|
|
24909
24915
|
font-size: 0.875rem;
|
24910
24916
|
font-weight: 400;
|
24911
24917
|
color: #333;
|
24912
|
-
padding: 0.25rem 0;
|
24918
|
+
padding: 1.125rem 0 0.25rem 0;
|
24919
|
+
margin: 0;
|
24913
24920
|
border-bottom: 0.0625rem solid #dfe2e6;
|
24921
|
+
background: transparent;
|
24922
|
+
}
|
24923
|
+
|
24924
|
+
.amis-scope .antd-Collapse-header:hover {
|
24925
|
+
background: transparent;
|
24914
24926
|
}
|
24915
24927
|
|
24916
24928
|
.amis-scope .antd-Collapse-arrow {
|
24917
24929
|
display: inline-block;
|
24918
24930
|
width: 1rem;
|
24919
24931
|
text-align: center;
|
24920
|
-
margin-
|
24932
|
+
margin-right: 0.5rem;
|
24921
24933
|
cursor: pointer;
|
24922
24934
|
}
|
24923
24935
|
|
@@ -24935,11 +24947,20 @@ readers do not read off random characters that represent icons */
|
|
24935
24947
|
transform-origin: 50% 50%;
|
24936
24948
|
}
|
24937
24949
|
|
24950
|
+
.amis-scope .antd-Collapse-TplField {
|
24951
|
+
display: inline-block;
|
24952
|
+
}
|
24953
|
+
|
24938
24954
|
.amis-scope .antd-Collapse.is-collapsed .antd-Collapse-arrow:before {
|
24939
24955
|
transform: rotate(45deg);
|
24940
24956
|
transform-origin: 0% 50%;
|
24941
24957
|
}
|
24942
24958
|
|
24959
|
+
.amis-scope .antd-Collapse.is-collapsed .antd-Collapse-header {
|
24960
|
+
border-bottom: 0.0625rem solid
|
24961
|
+
#dfe2e6;
|
24962
|
+
}
|
24963
|
+
|
24943
24964
|
.amis-scope .antd-Collapse--collapsable .antd-Collapse-header {
|
24944
24965
|
cursor: pointer;
|
24945
24966
|
user-select: none;
|
@@ -24964,16 +24985,23 @@ readers do not read off random characters that represent icons */
|
|
24964
24985
|
transform-origin: 0% 50%;
|
24965
24986
|
}
|
24966
24987
|
|
24967
|
-
.amis-scope .antd-Collapse-
|
24968
|
-
transition: height
|
24988
|
+
.amis-scope .antd-Collapse-contentWrapper {
|
24989
|
+
transition: height 0s ease;
|
24969
24990
|
}
|
24970
24991
|
|
24971
|
-
.amis-scope .antd-Collapse-
|
24972
|
-
.amis-scope .antd-Collapse-
|
24992
|
+
.amis-scope .antd-Collapse-contentWrapper.in,
|
24993
|
+
.amis-scope .antd-Collapse-contentWrapper.out {
|
24973
24994
|
height: 0;
|
24974
24995
|
overflow: hidden;
|
24975
24996
|
}
|
24976
24997
|
|
24998
|
+
.amis-scope .antd-Collapse-content {
|
24999
|
+
padding: 1.125rem 0;
|
25000
|
+
color: rgba(0, 0, 0, 0.85);
|
25001
|
+
font-size: 0.875rem;
|
25002
|
+
font-weight: 400;
|
25003
|
+
}
|
25004
|
+
|
24977
25005
|
.amis-scope .antd-ColorField {
|
24978
25006
|
display: inline-block;
|
24979
25007
|
}
|
@@ -25004,7 +25032,7 @@ readers do not read off random characters that represent icons */
|
|
25004
25032
|
}
|
25005
25033
|
|
25006
25034
|
.amis-scope .antd-CBGroup-toolbar .antd-Button {
|
25007
|
-
transition: padding
|
25035
|
+
transition: padding 0s;
|
25008
25036
|
min-width: unset;
|
25009
25037
|
}
|
25010
25038
|
|
@@ -25025,7 +25053,7 @@ readers do not read off random characters that represent icons */
|
|
25025
25053
|
}
|
25026
25054
|
|
25027
25055
|
.amis-scope .antd-CBGroup-toolbar .antd-CBGroup-toolbarConditionAdd {
|
25028
|
-
transition: opacity
|
25056
|
+
transition: opacity 0s;
|
25029
25057
|
display: flex;
|
25030
25058
|
align-items: center;
|
25031
25059
|
margin-left: 0.75rem;
|
@@ -25049,7 +25077,7 @@ readers do not read off random characters that represent icons */
|
|
25049
25077
|
|
25050
25078
|
.amis-scope .antd-CBGroup-fieldCaret,
|
25051
25079
|
.amis-scope .antd-CBGroup-operatorCaret {
|
25052
|
-
transition: transform
|
25080
|
+
transition: transform 0s ease-out;
|
25053
25081
|
margin: 5px;
|
25054
25082
|
display: flex;
|
25055
25083
|
color: #999;
|
@@ -25114,7 +25142,7 @@ readers do not read off random characters that represent icons */
|
|
25114
25142
|
color: inherit;
|
25115
25143
|
cursor: pointer;
|
25116
25144
|
margin-left: auto;
|
25117
|
-
transition: opacity
|
25145
|
+
transition: opacity 0s;
|
25118
25146
|
}
|
25119
25147
|
|
25120
25148
|
.amis-scope .antd-CBDelete:hover {
|
@@ -25138,7 +25166,7 @@ readers do not read off random characters that represent icons */
|
|
25138
25166
|
align-items: center;
|
25139
25167
|
position: relative;
|
25140
25168
|
background: rgba(0, 0, 0, 0.03);
|
25141
|
-
transition: all
|
25169
|
+
transition: all 0s ease-out;
|
25142
25170
|
}
|
25143
25171
|
|
25144
25172
|
.amis-scope .antd-CBGroupOrItem-body > .antd-CBGroup {
|
@@ -25170,7 +25198,7 @@ readers do not read off random characters that represent icons */
|
|
25170
25198
|
margin-left: -5px;
|
25171
25199
|
opacity: 0.6;
|
25172
25200
|
text-align: center;
|
25173
|
-
transition: opacity
|
25201
|
+
transition: opacity 0s ease-out;
|
25174
25202
|
color: inherit;
|
25175
25203
|
}
|
25176
25204
|
|
@@ -25351,13 +25379,13 @@ readers do not read off random characters that represent icons */
|
|
25351
25379
|
|
25352
25380
|
.amis-scope .antd-ContextMenu-menu.in,
|
25353
25381
|
.amis-scope .antd-ContextMenu-menu.out {
|
25354
|
-
animation-duration:
|
25382
|
+
animation-duration: 0s;
|
25355
25383
|
animation-fill-mode: both;
|
25356
25384
|
}
|
25357
25385
|
|
25358
25386
|
.amis-scope .antd-ContextMenu-menu.in {
|
25359
25387
|
animation-name: contextMenuInSpecial;
|
25360
|
-
animation-duration:
|
25388
|
+
animation-duration: 0s;
|
25361
25389
|
}
|
25362
25390
|
|
25363
25391
|
.amis-scope .antd-ContextMenu-menu.out {
|
@@ -25449,7 +25477,7 @@ readers do not read off random characters that represent icons */
|
|
25449
25477
|
|
25450
25478
|
.amis-scope .antd-ContextMenu-item:hover > .antd-ContextMenu-subList {
|
25451
25479
|
display: block;
|
25452
|
-
animation-duration:
|
25480
|
+
animation-duration: 0s;
|
25453
25481
|
animation-fill-mode: both;
|
25454
25482
|
animation-name: contextMenuIn;
|
25455
25483
|
display: block;
|
@@ -26015,6 +26043,20 @@ readers do not read off random characters that represent icons */
|
|
26015
26043
|
text-align: center;
|
26016
26044
|
}
|
26017
26045
|
|
26046
|
+
.amis-scope .antd-Table-searchableForm {
|
26047
|
+
background: #f6f7f8;
|
26048
|
+
border-radius: 0.25rem;
|
26049
|
+
}
|
26050
|
+
|
26051
|
+
.amis-scope .antd-Table-searchableForm-footer {
|
26052
|
+
padding: 0.5rem 0.75rem;
|
26053
|
+
clear: both;
|
26054
|
+
}
|
26055
|
+
|
26056
|
+
.amis-scope .antd-Table-searchableForm-checkbox > div > .antd-CheckboxControl {
|
26057
|
+
padding-top: 0;
|
26058
|
+
}
|
26059
|
+
|
26018
26060
|
.amis-scope .antd-Table-header {
|
26019
26061
|
padding: 0.75rem 0;
|
26020
26062
|
}
|
@@ -26191,6 +26233,7 @@ readers do not read off random characters that represent icons */
|
|
26191
26233
|
}
|
26192
26234
|
|
26193
26235
|
.amis-scope .antd-Table-table > tbody > tr {
|
26236
|
+
position: relative;
|
26194
26237
|
background: transparent;
|
26195
26238
|
}
|
26196
26239
|
|
@@ -27378,7 +27421,7 @@ readers do not read off random characters that represent icons */
|
|
27378
27421
|
top: 0.0625rem;
|
27379
27422
|
bottom: 0;
|
27380
27423
|
right: 0;
|
27381
|
-
padding-left:
|
27424
|
+
padding-left: 5rem;
|
27382
27425
|
padding-right: 0.5rem;
|
27383
27426
|
display: flex;
|
27384
27427
|
align-items: center;
|
@@ -27456,7 +27499,7 @@ readers do not read off random characters that represent icons */
|
|
27456
27499
|
display: inline-block;
|
27457
27500
|
text-align: center;
|
27458
27501
|
cursor: pointer;
|
27459
|
-
transition: transform ease-in-out
|
27502
|
+
transition: transform ease-in-out 0s, top ease-in-out 0s;
|
27460
27503
|
position: relative;
|
27461
27504
|
transform-origin: 50% 50%;
|
27462
27505
|
width: 0.625rem;
|
@@ -27496,6 +27539,12 @@ readers do not read off random characters that represent icons */
|
|
27496
27539
|
position: absolute;
|
27497
27540
|
}
|
27498
27541
|
|
27542
|
+
.amis-scope .antd-Table-badge {
|
27543
|
+
position: absolute;
|
27544
|
+
top: 0;
|
27545
|
+
left: 0;
|
27546
|
+
}
|
27547
|
+
|
27499
27548
|
.amis-scope .antd-InputTable-toolbar {
|
27500
27549
|
display: flex;
|
27501
27550
|
flex-direction: row;
|
@@ -27525,6 +27574,250 @@ readers do not read off random characters that represent icons */
|
|
27525
27574
|
margin-right: 0.625rem;
|
27526
27575
|
}
|
27527
27576
|
|
27577
|
+
.amis-scope .antd-ColumnToggler {
|
27578
|
+
position: relative;
|
27579
|
+
display: inline-block;
|
27580
|
+
}
|
27581
|
+
|
27582
|
+
.amis-scope .antd-ColumnToggler-caret {
|
27583
|
+
margin-left: 0.5rem;
|
27584
|
+
display: inline-block;
|
27585
|
+
vertical-align: top;
|
27586
|
+
transition: transform 0s ease;
|
27587
|
+
}
|
27588
|
+
|
27589
|
+
.amis-scope .antd-ColumnToggler-caret > svg {
|
27590
|
+
width: 0.625rem;
|
27591
|
+
height: 0.625rem;
|
27592
|
+
top: 0.125em;
|
27593
|
+
}
|
27594
|
+
|
27595
|
+
.amis-scope .antd-ColumnToggler.is-opened .antd-ColumnToggler-caret {
|
27596
|
+
transform: rotate(180deg);
|
27597
|
+
}
|
27598
|
+
|
27599
|
+
.amis-scope .antd-ColumnToggler.is-actived > .antd-Button {
|
27600
|
+
color: #1890ff;
|
27601
|
+
}
|
27602
|
+
|
27603
|
+
.amis-scope .antd-ColumnToggler--block {
|
27604
|
+
display: block;
|
27605
|
+
}
|
27606
|
+
|
27607
|
+
.amis-scope .antd-ColumnToggler--block .antd-Button {
|
27608
|
+
display: block;
|
27609
|
+
}
|
27610
|
+
|
27611
|
+
.amis-scope .antd-ColumnToggler-menu {
|
27612
|
+
position: absolute;
|
27613
|
+
z-index: 1000;
|
27614
|
+
top: 100%;
|
27615
|
+
left: 0;
|
27616
|
+
margin: 0.0625rem 0 0;
|
27617
|
+
background: #fff;
|
27618
|
+
list-style: none;
|
27619
|
+
padding: 0.25rem 0;
|
27620
|
+
border: 0.0625rem solid #eceff8;
|
27621
|
+
border-radius: 2px;
|
27622
|
+
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
27623
|
+
min-width: 10rem;
|
27624
|
+
text-align: left;
|
27625
|
+
}
|
27626
|
+
|
27627
|
+
.amis-scope .antd-ColumnToggler--alignRight .antd-ColumnToggler-menu {
|
27628
|
+
left: auto;
|
27629
|
+
right: 0;
|
27630
|
+
}
|
27631
|
+
|
27632
|
+
.amis-scope .antd-ColumnToggler-menuItem,
|
27633
|
+
.amis-scope .antd-ColumnToggler-menu > li {
|
27634
|
+
padding: calc(
|
27635
|
+
(2.125rem - 0.875rem * 1.57) /
|
27636
|
+
2
|
27637
|
+
) 0.5rem;
|
27638
|
+
white-space: nowrap;
|
27639
|
+
box-sizing: border-box;
|
27640
|
+
height: 2.125rem;
|
27641
|
+
vertical-align: middle;
|
27642
|
+
user-select: none;
|
27643
|
+
color: #1890ff;
|
27644
|
+
text-decoration: none;
|
27645
|
+
}
|
27646
|
+
|
27647
|
+
.amis-scope .antd-ColumnToggler-menuItem:hover,
|
27648
|
+
.amis-scope .antd-ColumnToggler-menu > li:hover {
|
27649
|
+
background: rgba(0, 126, 255, 0.08);
|
27650
|
+
color: #1890ff;
|
27651
|
+
}
|
27652
|
+
|
27653
|
+
.amis-scope .antd-ColumnToggler-menuItem.is-active,
|
27654
|
+
.amis-scope .antd-ColumnToggler-menu > li.is-active {
|
27655
|
+
color: #1890ff;
|
27656
|
+
}
|
27657
|
+
|
27658
|
+
.amis-scope .antd-ColumnToggler-menuItem:not(.is-disabled),
|
27659
|
+
.amis-scope .antd-ColumnToggler-menuItem:not(.disabled),
|
27660
|
+
.amis-scope .antd-ColumnToggler-menu > li:not(.is-disabled),
|
27661
|
+
.amis-scope .antd-ColumnToggler-menu > li:not(.disabled) {
|
27662
|
+
cursor: pointer;
|
27663
|
+
}
|
27664
|
+
|
27665
|
+
.amis-scope .antd-ColumnToggler-menuItem.is-disabled,
|
27666
|
+
.amis-scope .antd-ColumnToggler-menu > li.is-disabled {
|
27667
|
+
cursor: not-allowed;
|
27668
|
+
color: #999;
|
27669
|
+
filter: grayscale(80%);
|
27670
|
+
}
|
27671
|
+
|
27672
|
+
.amis-scope .antd-ColumnToggler-menuItem.antd-DropDown-divider,
|
27673
|
+
.amis-scope .antd-ColumnToggler-menu > li.antd-DropDown-divider {
|
27674
|
+
height: 0.0625rem;
|
27675
|
+
margin: 0.5625rem 0;
|
27676
|
+
overflow: hidden;
|
27677
|
+
background: #eceff8;
|
27678
|
+
padding: 0;
|
27679
|
+
}
|
27680
|
+
|
27681
|
+
.amis-scope .antd-ColumnToggler-menu > li a {
|
27682
|
+
color: inherit;
|
27683
|
+
display: block;
|
27684
|
+
text-decoration: none;
|
27685
|
+
}
|
27686
|
+
|
27687
|
+
.amis-scope .antd-ColumnToggler-popover {
|
27688
|
+
border: none;
|
27689
|
+
box-shadow: none;
|
27690
|
+
}
|
27691
|
+
|
27692
|
+
.amis-scope .antd-ColumnToggler > .antd-Button {
|
27693
|
+
min-width: unset;
|
27694
|
+
}
|
27695
|
+
|
27696
|
+
.amis-scope .antd-ColumnToggler-modal {
|
27697
|
+
display: flex;
|
27698
|
+
flex-flow: column nowrap;
|
27699
|
+
justify-content: space-between;
|
27700
|
+
align-items: center;
|
27701
|
+
width: 25rem;
|
27702
|
+
padding: 1.5rem;
|
27703
|
+
margin-top: calc(50vh - 100px);
|
27704
|
+
border-radius: 0.25rem;
|
27705
|
+
background: #fff;
|
27706
|
+
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);
|
27707
|
+
}
|
27708
|
+
|
27709
|
+
.amis-scope .antd-ColumnToggler-modal-header {
|
27710
|
+
width: 100%;
|
27711
|
+
display: flex;
|
27712
|
+
flex-flow: row nowrap;
|
27713
|
+
justify-content: space-between;
|
27714
|
+
align-items: center;
|
27715
|
+
}
|
27716
|
+
|
27717
|
+
.amis-scope .antd-ColumnToggler-modal-header a,
|
27718
|
+
.amis-scope .antd-ColumnToggler-modal-header span {
|
27719
|
+
display: inline-block;
|
27720
|
+
}
|
27721
|
+
|
27722
|
+
.amis-scope .antd-ColumnToggler-modal-header .antd-ColumnToggler-modal-title {
|
27723
|
+
opacity: 0.95;
|
27724
|
+
font-size: 0.875rem;
|
27725
|
+
color: #080e1a;
|
27726
|
+
line-height: 1.5rem;
|
27727
|
+
font-weight: bold;
|
27728
|
+
}
|
27729
|
+
|
27730
|
+
.amis-scope .antd-ColumnToggler-modal-content {
|
27731
|
+
padding: 0;
|
27732
|
+
width: 100%;
|
27733
|
+
list-style: none;
|
27734
|
+
margin: 0.5rem 0;
|
27735
|
+
}
|
27736
|
+
|
27737
|
+
.amis-scope .antd-ColumnToggler-modal-content .antd-ColumnToggler-menuItem {
|
27738
|
+
color: #080e1a;
|
27739
|
+
background: #f6f7f8;
|
27740
|
+
border-radius: 0.125rem;
|
27741
|
+
font-size: 0.75rem;
|
27742
|
+
padding: 0.25rem 0.5rem;
|
27743
|
+
height: 1.5rem;
|
27744
|
+
width: calc((100% - 24px) / 3);
|
27745
|
+
float: left;
|
27746
|
+
margin: 0.25rem;
|
27747
|
+
text-overflow: ellipsis;
|
27748
|
+
white-space: nowrap;
|
27749
|
+
overflow: hidden;
|
27750
|
+
}
|
27751
|
+
|
27752
|
+
.amis-scope .antd-ColumnToggler-modal-content .antd-ColumnToggler-menuItem:hover {
|
27753
|
+
background: rgba(36, 104, 242, 0.1);
|
27754
|
+
}
|
27755
|
+
|
27756
|
+
.amis-scope .antd-ColumnToggler-modal-content .antd-ColumnToggler-menuItem--dragging {
|
27757
|
+
border: 1px solid #1890ff;
|
27758
|
+
}
|
27759
|
+
|
27760
|
+
.amis-scope .antd-ColumnToggler-modal-content .antd-ColumnToggler-menuItem label > i {
|
27761
|
+
height: 1rem;
|
27762
|
+
width: 1rem;
|
27763
|
+
vertical-align: top;
|
27764
|
+
}
|
27765
|
+
|
27766
|
+
.amis-scope .antd-ColumnToggler-modal-content .antd-ColumnToggler-menuItem-dragBar {
|
27767
|
+
margin-left: 0;
|
27768
|
+
margin-right: 0.25rem;
|
27769
|
+
cursor: move;
|
27770
|
+
color: #d8d8d8;
|
27771
|
+
}
|
27772
|
+
|
27773
|
+
.amis-scope .antd-ColumnToggler-modal-footer {
|
27774
|
+
width: 100%;
|
27775
|
+
display: flex;
|
27776
|
+
flex-flow: row nowrap;
|
27777
|
+
justify-content: space-between;
|
27778
|
+
align-items: center;
|
27779
|
+
}
|
27780
|
+
|
27781
|
+
.amis-scope .antd-ColumnToggler-modal-footer .antd-ColumnToggler-modeSelect {
|
27782
|
+
color: #151a26;
|
27783
|
+
font-size: 0.75rem;
|
27784
|
+
}
|
27785
|
+
|
27786
|
+
.amis-scope .antd-ColumnToggler-modal-footer .antd-ColumnToggler-modeSelect.is-actived {
|
27787
|
+
color: #1890ff;
|
27788
|
+
}
|
27789
|
+
|
27790
|
+
.amis-scope .antd-ColumnToggler-modal-footer > div {
|
27791
|
+
display: flex;
|
27792
|
+
flex-flow: row nowrap;
|
27793
|
+
justify-content: space-between;
|
27794
|
+
align-items: center;
|
27795
|
+
}
|
27796
|
+
|
27797
|
+
.amis-scope .antd-ColumnToggler-modal-footer > div:first-child {
|
27798
|
+
justify-content: flex-start;
|
27799
|
+
}
|
27800
|
+
|
27801
|
+
.amis-scope .antd-ColumnToggler-modal-footer > div:first-child a {
|
27802
|
+
display: inline-block;
|
27803
|
+
}
|
27804
|
+
|
27805
|
+
.amis-scope .antd-ColumnToggler-modal-footer > div:last-child {
|
27806
|
+
justify-content: flex-end;
|
27807
|
+
}
|
27808
|
+
|
27809
|
+
.amis-scope .antd-ColumnToggler-modal-footer > div:last-child button {
|
27810
|
+
width: 72px;
|
27811
|
+
}
|
27812
|
+
|
27813
|
+
.amis-scope .antd-ColumnToggler-tooltip {
|
27814
|
+
border: none;
|
27815
|
+
}
|
27816
|
+
|
27817
|
+
.amis-scope .antd-ColumnToggler-tooltip .antd-Tooltip-arrow::before {
|
27818
|
+
border-top-color: transparent;
|
27819
|
+
}
|
27820
|
+
|
27528
27821
|
.amis-scope .antd-List {
|
27529
27822
|
position: relative;
|
27530
27823
|
}
|
@@ -28325,6 +28618,7 @@ readers do not read off random characters that represent icons */
|
|
28325
28618
|
height: 10px;
|
28326
28619
|
background: #ebebeb;
|
28327
28620
|
overflow: hidden;
|
28621
|
+
border-radius: 2px;
|
28328
28622
|
}
|
28329
28623
|
|
28330
28624
|
.amis-scope .antd-Progress-bar {
|
@@ -28336,7 +28630,8 @@ readers do not read off random characters that represent icons */
|
|
28336
28630
|
color: #fff;
|
28337
28631
|
text-align: center;
|
28338
28632
|
background: #1890ff;
|
28339
|
-
transition: width
|
28633
|
+
transition: width 0s ease;
|
28634
|
+
border-radius: 2px;
|
28340
28635
|
}
|
28341
28636
|
|
28342
28637
|
.amis-scope .antd-Progress-bar--stripe {
|
@@ -28698,7 +28993,7 @@ readers do not read off random characters that represent icons */
|
|
28698
28993
|
position: absolute;
|
28699
28994
|
left: 0;
|
28700
28995
|
top: 0;
|
28701
|
-
transition-duration:
|
28996
|
+
transition-duration: 0s;
|
28702
28997
|
transition-timing-function: ease-out;
|
28703
28998
|
transition-property: transform, opacity;
|
28704
28999
|
}
|
@@ -28781,7 +29076,7 @@ readers do not read off random characters that represent icons */
|
|
28781
29076
|
width: 0.5rem;
|
28782
29077
|
border-radius: 0.25rem;
|
28783
29078
|
margin: 0.4375rem 0.25rem;
|
28784
|
-
transition-duration:
|
29079
|
+
transition-duration: 0s;
|
28785
29080
|
opacity: 0.3;
|
28786
29081
|
}
|
28787
29082
|
|
@@ -28797,7 +29092,7 @@ readers do not read off random characters that represent icons */
|
|
28797
29092
|
top: 0;
|
28798
29093
|
bottom: 0;
|
28799
29094
|
position: absolute;
|
28800
|
-
transition-duration:
|
29095
|
+
transition-duration: 0s;
|
28801
29096
|
display: none;
|
28802
29097
|
left: 0;
|
28803
29098
|
}
|
@@ -28820,7 +29115,7 @@ readers do not read off random characters that represent icons */
|
|
28820
29115
|
top: 0;
|
28821
29116
|
bottom: 0;
|
28822
29117
|
position: absolute;
|
28823
|
-
transition-duration:
|
29118
|
+
transition-duration: 0s;
|
28824
29119
|
display: none;
|
28825
29120
|
right: 0;
|
28826
29121
|
}
|
@@ -28927,8 +29222,8 @@ readers do not read off random characters that represent icons */
|
|
28927
29222
|
color: #999;
|
28928
29223
|
text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 4px;
|
28929
29224
|
animation-name: disappear;
|
28930
|
-
animation-delay:
|
28931
|
-
animation-duration:
|
29225
|
+
animation-delay: 0s;
|
29226
|
+
animation-duration: 0s;
|
28932
29227
|
animation-fill-mode: both;
|
28933
29228
|
}
|
28934
29229
|
|
@@ -28953,7 +29248,7 @@ readers do not read off random characters that represent icons */
|
|
28953
29248
|
.amis-scope .antd-ImageGallery-main:hover .antd-ImageGallery-nextBtn {
|
28954
29249
|
animation-name: appear;
|
28955
29250
|
animation-delay: 0s;
|
28956
|
-
animation-duration:
|
29251
|
+
animation-duration: 0s;
|
28957
29252
|
}
|
28958
29253
|
|
28959
29254
|
.amis-scope .antd-ImageGallery-prevBtn {
|
@@ -29087,6 +29382,7 @@ readers do not read off random characters that represent icons */
|
|
29087
29382
|
|
29088
29383
|
.amis-scope .antd-Image-thumbWrap {
|
29089
29384
|
position: relative;
|
29385
|
+
height: 100%;
|
29090
29386
|
}
|
29091
29387
|
|
29092
29388
|
.amis-scope .antd-Image-image {
|
@@ -29202,7 +29498,7 @@ readers do not read off random characters that represent icons */
|
|
29202
29498
|
}
|
29203
29499
|
|
29204
29500
|
.amis-scope .antd-Image-overlay {
|
29205
|
-
background: rgba(
|
29501
|
+
background: rgba(8, 14, 26, 0.5);
|
29206
29502
|
position: absolute;
|
29207
29503
|
width: 100%;
|
29208
29504
|
height: 100%;
|
@@ -29556,7 +29852,7 @@ readers do not read off random characters that represent icons */
|
|
29556
29852
|
height: 30px;
|
29557
29853
|
width: 30px;
|
29558
29854
|
padding: 0 8px;
|
29559
|
-
transition: all
|
29855
|
+
transition: all 0s ease-in-out;
|
29560
29856
|
border: 0.0625rem solid transparent;
|
29561
29857
|
border-radius: 2px;
|
29562
29858
|
height: 30px;
|
@@ -29845,7 +30141,7 @@ readers do not read off random characters that represent icons */
|
|
29845
30141
|
height: 1px;
|
29846
30142
|
left: 100%;
|
29847
30143
|
width: 9999px;
|
29848
|
-
padding-right:
|
30144
|
+
padding-right: 0.625rem;
|
29849
30145
|
background-color: #b4bbc5;
|
29850
30146
|
}
|
29851
30147
|
|
@@ -29994,8 +30290,6 @@ readers do not read off random characters that represent icons */
|
|
29994
30290
|
border-bottom: 0;
|
29995
30291
|
display: flex;
|
29996
30292
|
flex-direction: row;
|
29997
|
-
justify-content: space-between;
|
29998
|
-
width: 100%;
|
29999
30293
|
}
|
30000
30294
|
|
30001
30295
|
.amis-scope fieldset.antd-Collapse--xs {
|
@@ -30461,14 +30755,14 @@ readers do not read off random characters that represent icons */
|
|
30461
30755
|
.amis-scope .antd-TextControl.is-error > .antd-TextControl-input {
|
30462
30756
|
border-color: #ff4d4f;
|
30463
30757
|
background: #fff;
|
30464
|
-
transition: all
|
30758
|
+
transition: all 0s;
|
30465
30759
|
}
|
30466
30760
|
|
30467
30761
|
.amis-scope .antd-TextControl.is-focused > .antd-TextControl-input {
|
30468
30762
|
border-color: #40a9ff;
|
30469
30763
|
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
30470
30764
|
background: #fff;
|
30471
|
-
transition: all
|
30765
|
+
transition: all 0s;
|
30472
30766
|
}
|
30473
30767
|
|
30474
30768
|
.amis-scope .antd-TextControl.is-error.is-focused > .antd-TextControl-input {
|
@@ -30479,7 +30773,7 @@ readers do not read off random characters that represent icons */
|
|
30479
30773
|
color: #999;
|
30480
30774
|
background: #e5e7eb;
|
30481
30775
|
border-color: #d9d9d9;
|
30482
|
-
transition: all
|
30776
|
+
transition: all 0s;
|
30483
30777
|
}
|
30484
30778
|
|
30485
30779
|
.amis-scope .antd-TextControl-spinner {
|
@@ -30754,6 +31048,14 @@ readers do not read off random characters that represent icons */
|
|
30754
31048
|
color: #ff4d4f;
|
30755
31049
|
}
|
30756
31050
|
|
31051
|
+
.amis-scope .antd-TextControl-input:hover {
|
31052
|
+
border-color: #40a9ff;
|
31053
|
+
}
|
31054
|
+
|
31055
|
+
.amis-scope .antd-TextControl.is-disabled-input input {
|
31056
|
+
color: #999;
|
31057
|
+
}
|
31058
|
+
|
30757
31059
|
.amis-scope .antd-TextareaControl {
|
30758
31060
|
position: relative;
|
30759
31061
|
}
|
@@ -30790,12 +31092,21 @@ readers do not read off random characters that represent icons */
|
|
30790
31092
|
color: #999;
|
30791
31093
|
}
|
30792
31094
|
|
31095
|
+
.amis-scope .antd-TextareaControl > textarea:hover {
|
31096
|
+
border-color: #40a9ff;
|
31097
|
+
}
|
31098
|
+
|
30793
31099
|
.amis-scope .antd-TextareaControl > textarea:focus,
|
30794
31100
|
.amis-scope .antd-TextareaControl.is-focused > textarea {
|
30795
31101
|
border-color: #40a9ff;
|
30796
31102
|
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
30797
31103
|
}
|
30798
31104
|
|
31105
|
+
.amis-scope .antd-TextareaControl > textarea:focus:hover,
|
31106
|
+
.amis-scope .antd-TextareaControl.is-focused > textarea:hover {
|
31107
|
+
border-color: #40a9ff;
|
31108
|
+
}
|
31109
|
+
|
30799
31110
|
.amis-scope .antd-TextareaControl.is-disabled > textarea,
|
30800
31111
|
.amis-scope .antd-TextareaControl > textarea[disabled] {
|
30801
31112
|
background: #e5e7eb;
|
@@ -30882,7 +31193,7 @@ readers do not read off random characters that represent icons */
|
|
30882
31193
|
width: 0px;
|
30883
31194
|
height: 0px;
|
30884
31195
|
background: transparent;
|
30885
|
-
transition: all
|
31196
|
+
transition: all 0s;
|
30886
31197
|
transform-origin: 50% 50%;
|
30887
31198
|
transform: translate(-50%, -50%);
|
30888
31199
|
}
|
@@ -30975,7 +31286,7 @@ readers do not read off random characters that represent icons */
|
|
30975
31286
|
width: 0;
|
30976
31287
|
height: 0;
|
30977
31288
|
border-color: transparent;
|
30978
|
-
transition: width
|
31289
|
+
transition: width 0s, height 0s, transform 0s;
|
30979
31290
|
border-width: 0 0 0.125rem 0.125rem;
|
30980
31291
|
transform: translate(-50%, -60%) rotate(-40deg);
|
30981
31292
|
border-style: solid;
|
@@ -31530,7 +31841,7 @@ readers do not read off random characters that represent icons */
|
|
31530
31841
|
line-height: 1.375rem;
|
31531
31842
|
font-style: normal;
|
31532
31843
|
font-weight: bold;
|
31533
|
-
transition: all
|
31844
|
+
transition: all 0s;
|
31534
31845
|
}
|
31535
31846
|
|
31536
31847
|
.amis-scope .antd-Switch .slider:before {
|
@@ -31542,7 +31853,7 @@ readers do not read off random characters that represent icons */
|
|
31542
31853
|
bottom: 0.0625rem;
|
31543
31854
|
left: 0.0625rem;
|
31544
31855
|
border-radius: 50%;
|
31545
|
-
transition: margin-left
|
31856
|
+
transition: margin-left 0s;
|
31546
31857
|
}
|
31547
31858
|
|
31548
31859
|
.amis-scope .antd-Switch.is-checked {
|
@@ -31678,7 +31989,7 @@ readers do not read off random characters that represent icons */
|
|
31678
31989
|
-moz-appearance: textfield;
|
31679
31990
|
line-height: calc(1.875rem - 0.0625rem * 2);
|
31680
31991
|
height: 100%;
|
31681
|
-
transition: all
|
31992
|
+
transition: all 0s ease;
|
31682
31993
|
border: 0;
|
31683
31994
|
border-radius: 2px;
|
31684
31995
|
padding: 0 0.5rem;
|
@@ -31914,7 +32225,7 @@ readers do not read off random characters that represent icons */
|
|
31914
32225
|
}
|
31915
32226
|
|
31916
32227
|
.amis-scope .antd-Select-arrow > svg {
|
31917
|
-
transition: transform
|
32228
|
+
transition: transform 0s;
|
31918
32229
|
display: inline-block;
|
31919
32230
|
color: #999;
|
31920
32231
|
width: 10px;
|
@@ -32204,6 +32515,7 @@ readers do not read off random characters that represent icons */
|
|
32204
32515
|
color: rgba(0, 0, 0, 0.85);
|
32205
32516
|
transition: none;
|
32206
32517
|
max-width: calc(12.5rem + 2 * 0.75rem);
|
32518
|
+
border-radius: 0.1875rem;
|
32207
32519
|
}
|
32208
32520
|
|
32209
32521
|
.amis-scope .antd-ListControl-item:not(.is-disabled) {
|
@@ -32319,7 +32631,7 @@ readers do not read off random characters that represent icons */
|
|
32319
32631
|
white-space: nowrap;
|
32320
32632
|
color: rgba(0, 0, 0, 0.85);
|
32321
32633
|
background: #fff;
|
32322
|
-
border-radius:
|
32634
|
+
border-radius: 0.0625rem;
|
32323
32635
|
}
|
32324
32636
|
|
32325
32637
|
.amis-scope .antd-LocationPicker:not(.is-disabled) {
|
@@ -32475,6 +32787,7 @@ readers do not read off random characters that represent icons */
|
|
32475
32787
|
) / 2 - 0.0625rem) 0.75rem;
|
32476
32788
|
background: #fff;
|
32477
32789
|
color: rgba(0, 0, 0, 0.85);
|
32790
|
+
border-radius: 2px;
|
32478
32791
|
}
|
32479
32792
|
|
32480
32793
|
.amis-scope .antd-ColorPicker:not(.is-disabled) {
|
@@ -32640,6 +32953,8 @@ readers do not read off random characters that represent icons */
|
|
32640
32953
|
.amis-scope .antd-DatePicker-toggler {
|
32641
32954
|
cursor: pointer;
|
32642
32955
|
color: inherit;
|
32956
|
+
display: inline-flex;
|
32957
|
+
align-items: center;
|
32643
32958
|
}
|
32644
32959
|
|
32645
32960
|
.amis-scope .antd-DatePicker-toggler:hover {
|
@@ -32866,7 +33181,7 @@ readers do not read off random characters that represent icons */
|
|
32866
33181
|
}
|
32867
33182
|
|
32868
33183
|
.amis-scope .antd-CalendarCounter-btn:hover {
|
32869
|
-
color: #
|
33184
|
+
color: #1c53c1;
|
32870
33185
|
}
|
32871
33186
|
|
32872
33187
|
.amis-scope .antd-CalendarCounter-btn > svg {
|
@@ -33172,6 +33487,8 @@ readers do not read off random characters that represent icons */
|
|
33172
33487
|
.amis-scope .antd-DateRangePicker-toggler {
|
33173
33488
|
cursor: pointer;
|
33174
33489
|
color: inherit;
|
33490
|
+
display: inline-flex;
|
33491
|
+
align-items: center;
|
33175
33492
|
}
|
33176
33493
|
|
33177
33494
|
.amis-scope .antd-DateRangePicker-toggler:hover {
|
@@ -33287,9 +33604,11 @@ readers do not read off random characters that represent icons */
|
|
33287
33604
|
width: 7.5rem;
|
33288
33605
|
height: 7.5rem;
|
33289
33606
|
display: inline-flex;
|
33607
|
+
flex-direction: column;
|
33290
33608
|
justify-content: center;
|
33291
33609
|
align-items: center;
|
33292
33610
|
border: 0.0625rem solid #eceff8;
|
33611
|
+
border-radius: 0;
|
33293
33612
|
cursor: pointer;
|
33294
33613
|
margin-right: 0.75rem;
|
33295
33614
|
color: rgba(0, 0, 0, 0.85);
|
@@ -33316,9 +33635,10 @@ readers do not read off random characters that represent icons */
|
|
33316
33635
|
}
|
33317
33636
|
|
33318
33637
|
.amis-scope .antd-ImageControl-addBtn > svg {
|
33319
|
-
width:
|
33320
|
-
height:
|
33638
|
+
width: 1.5rem;
|
33639
|
+
height: 1.5rem;
|
33321
33640
|
top: 0;
|
33641
|
+
margin-bottom: 0.5rem;
|
33322
33642
|
}
|
33323
33643
|
|
33324
33644
|
.amis-scope .antd-ImageControl-addBtn.is-disabled {
|
@@ -33356,6 +33676,7 @@ readers do not read off random characters that represent icons */
|
|
33356
33676
|
|
33357
33677
|
.amis-scope .antd-ImageControl-item {
|
33358
33678
|
border: 0.0625rem solid #eceff8;
|
33679
|
+
border-radius: 0;
|
33359
33680
|
vertical-align: top;
|
33360
33681
|
padding: 0.25rem;
|
33361
33682
|
display: inline-block;
|
@@ -33413,10 +33734,11 @@ readers do not read off random characters that represent icons */
|
|
33413
33734
|
|
33414
33735
|
.amis-scope .antd-ImageControl-progressValue {
|
33415
33736
|
height: 5px;
|
33737
|
+
border-radius: 0;
|
33416
33738
|
display: block;
|
33417
33739
|
background: #1890ff;
|
33418
33740
|
min-width: 10%;
|
33419
|
-
transition: ease-out width
|
33741
|
+
transition: ease-out width 0s;
|
33420
33742
|
}
|
33421
33743
|
|
33422
33744
|
.amis-scope .antd-ImageControl-item.is-invalid .antd-ImageControl-itemClear {
|
@@ -33522,13 +33844,13 @@ readers do not read off random characters that represent icons */
|
|
33522
33844
|
}
|
33523
33845
|
|
33524
33846
|
.amis-scope .antd-FileControl-selectBtn {
|
33525
|
-
|
33847
|
+
display: flex;
|
33848
|
+
align-items: center;
|
33526
33849
|
}
|
33527
33850
|
|
33528
33851
|
.amis-scope .antd-FileControl-selectBtn > svg {
|
33529
|
-
|
33530
|
-
|
33531
|
-
height: pxrem(16px);
|
33852
|
+
width: 0.875rem;
|
33853
|
+
height: 0.875rem;
|
33532
33854
|
}
|
33533
33855
|
|
33534
33856
|
.amis-scope .antd-FileControl-description {
|
@@ -33640,9 +33962,10 @@ readers do not read off random characters that represent icons */
|
|
33640
33962
|
.amis-scope .antd-FileControl-progress > span {
|
33641
33963
|
display: block;
|
33642
33964
|
background: #1890ff;
|
33965
|
+
border-radius: 0;
|
33643
33966
|
height: 100%;
|
33644
33967
|
min-width: 10%;
|
33645
|
-
transition: ease-out width
|
33968
|
+
transition: ease-out width 0s;
|
33646
33969
|
}
|
33647
33970
|
|
33648
33971
|
.amis-scope .antd-FileControl-acceptTip {
|
@@ -34011,8 +34334,8 @@ readers do not read off random characters that represent icons */
|
|
34011
34334
|
position: absolute;
|
34012
34335
|
z-index: 2;
|
34013
34336
|
top: 50%;
|
34014
|
-
transition: transform
|
34015
|
-
box-shadow
|
34337
|
+
transition: transform 0s ease-out,
|
34338
|
+
box-shadow 0s ease-out;
|
34016
34339
|
}
|
34017
34340
|
|
34018
34341
|
.amis-scope .antd-InputRange-slider:active {
|
@@ -34040,7 +34363,7 @@ readers do not read off random characters that represent icons */
|
|
34040
34363
|
}
|
34041
34364
|
|
34042
34365
|
.amis-scope .antd-InputRange-sliderContainer {
|
34043
|
-
transition: left
|
34366
|
+
transition: left 0s
|
34044
34367
|
ease-out;
|
34045
34368
|
}
|
34046
34369
|
|
@@ -34081,8 +34404,8 @@ readers do not read off random characters that represent icons */
|
|
34081
34404
|
display: block;
|
34082
34405
|
height: 0.75rem;
|
34083
34406
|
position: relative;
|
34084
|
-
transition: left
|
34085
|
-
width
|
34407
|
+
transition: left 0s ease-out,
|
34408
|
+
width 0s ease-out;
|
34086
34409
|
}
|
34087
34410
|
|
34088
34411
|
.amis-scope .antd-InputRange.is-disabled .antd-InputRange-track {
|
@@ -34247,7 +34570,7 @@ readers do not read off random characters that represent icons */
|
|
34247
34570
|
|
34248
34571
|
.amis-scope .antd-Tree-item-icons {
|
34249
34572
|
visibility: hidden;
|
34250
|
-
transition: visibility
|
34573
|
+
transition: visibility 0s ease;
|
34251
34574
|
display: inline-block;
|
34252
34575
|
vertical-align: top;
|
34253
34576
|
height: 1.875rem;
|
@@ -34344,7 +34667,7 @@ readers do not read off random characters that represent icons */
|
|
34344
34667
|
width: 0.75rem;
|
34345
34668
|
height: 0.75rem;
|
34346
34669
|
display: block;
|
34347
|
-
transition: transform
|
34670
|
+
transition: transform 0s;
|
34348
34671
|
top: 0;
|
34349
34672
|
transform: rotate(90deg);
|
34350
34673
|
}
|
@@ -34473,14 +34796,14 @@ readers do not read off random characters that represent icons */
|
|
34473
34796
|
.amis-scope .antd-TreeSelect.is-error > .antd-TreeSelect-input {
|
34474
34797
|
border-color: #ff4d4f;
|
34475
34798
|
background: #fff;
|
34476
|
-
transition: all
|
34799
|
+
transition: all 0s;
|
34477
34800
|
}
|
34478
34801
|
|
34479
34802
|
.amis-scope .antd-TreeSelect.is-focused > .antd-TreeSelect-input {
|
34480
34803
|
border-color: #40a9ff;
|
34481
34804
|
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
34482
34805
|
background: #fff;
|
34483
|
-
transition: all
|
34806
|
+
transition: all 0s;
|
34484
34807
|
}
|
34485
34808
|
|
34486
34809
|
.amis-scope .antd-TreeSelect.is-error.is-focused > .antd-TreeSelect-input {
|
@@ -34491,7 +34814,7 @@ readers do not read off random characters that represent icons */
|
|
34491
34814
|
color: #999;
|
34492
34815
|
background: #e5e7eb;
|
34493
34816
|
border-color: #d9d9d9;
|
34494
|
-
transition: all
|
34817
|
+
transition: all 0s;
|
34495
34818
|
}
|
34496
34819
|
|
34497
34820
|
.amis-scope .antd-TreeSelect-spinner {
|
@@ -34998,7 +35321,7 @@ readers do not read off random characters that represent icons */
|
|
34998
35321
|
}
|
34999
35322
|
|
35000
35323
|
.amis-scope .antd-SubForm-addBtn:hover:focus {
|
35001
|
-
color: #
|
35324
|
+
color: #4f86f4;
|
35002
35325
|
text-decoration: none;
|
35003
35326
|
box-shadow: none;
|
35004
35327
|
}
|
@@ -35088,14 +35411,14 @@ readers do not read off random characters that represent icons */
|
|
35088
35411
|
.amis-scope .antd-Picker.is-error > .antd-Picker-input {
|
35089
35412
|
border-color: #ff4d4f;
|
35090
35413
|
background: #fff;
|
35091
|
-
transition: all
|
35414
|
+
transition: all 0s;
|
35092
35415
|
}
|
35093
35416
|
|
35094
35417
|
.amis-scope .antd-Picker.is-focused > .antd-Picker-input {
|
35095
35418
|
border-color: #40a9ff;
|
35096
35419
|
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
35097
35420
|
background: #fff;
|
35098
|
-
transition: all
|
35421
|
+
transition: all 0s;
|
35099
35422
|
}
|
35100
35423
|
|
35101
35424
|
.amis-scope .antd-Picker.is-error.is-focused > .antd-Picker-input {
|
@@ -35106,7 +35429,7 @@ readers do not read off random characters that represent icons */
|
|
35106
35429
|
color: #999;
|
35107
35430
|
background: #e5e7eb;
|
35108
35431
|
border-color: #d9d9d9;
|
35109
|
-
transition: all
|
35432
|
+
transition: all 0s;
|
35110
35433
|
}
|
35111
35434
|
|
35112
35435
|
.amis-scope .antd-Picker-spinner {
|
@@ -35441,6 +35764,7 @@ readers do not read off random characters that represent icons */
|
|
35441
35764
|
font-size: 0.875rem;
|
35442
35765
|
padding: calc( ( 1.875rem - 1.4285714286 * 0.875rem ) / 2 ) 0.5rem;
|
35443
35766
|
flex-direction: row;
|
35767
|
+
border-radius: 2px 2px 0 0;
|
35444
35768
|
}
|
35445
35769
|
|
35446
35770
|
.amis-scope .antd-Transfer-title--light {
|
@@ -35460,6 +35784,7 @@ readers do not read off random characters that represent icons */
|
|
35460
35784
|
border: 0.0625rem solid #d9d9d9;
|
35461
35785
|
display: flex;
|
35462
35786
|
flex-direction: column;
|
35787
|
+
border-radius: 2px;
|
35463
35788
|
}
|
35464
35789
|
|
35465
35790
|
.amis-scope .antd-Transfer-select > .antd-Transfer-checkboxes,
|
@@ -35753,14 +36078,14 @@ readers do not read off random characters that represent icons */
|
|
35753
36078
|
.amis-scope .antd-IconPickerControl.is-error > .antd-IconPickerControl-input {
|
35754
36079
|
border-color: #ff4d4f;
|
35755
36080
|
background: #fff;
|
35756
|
-
transition: all
|
36081
|
+
transition: all 0s;
|
35757
36082
|
}
|
35758
36083
|
|
35759
36084
|
.amis-scope .antd-IconPickerControl.is-focused > .antd-IconPickerControl-input {
|
35760
36085
|
border-color: #40a9ff;
|
35761
36086
|
box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
|
35762
36087
|
background: #fff;
|
35763
|
-
transition: all
|
36088
|
+
transition: all 0s;
|
35764
36089
|
}
|
35765
36090
|
|
35766
36091
|
.amis-scope .antd-IconPickerControl.is-error.is-focused > .antd-IconPickerControl-input {
|
@@ -35771,7 +36096,7 @@ readers do not read off random characters that represent icons */
|
|
35771
36096
|
color: #999;
|
35772
36097
|
background: #e5e7eb;
|
35773
36098
|
border-color: #d9d9d9;
|
35774
|
-
transition: all
|
36099
|
+
transition: all 0s;
|
35775
36100
|
}
|
35776
36101
|
|
35777
36102
|
.amis-scope .antd-IconPickerControl-spinner {
|
@@ -36686,6 +37011,11 @@ readers do not read off random characters that represent icons */
|
|
36686
37011
|
border-bottom-color: #eee;
|
36687
37012
|
}
|
36688
37013
|
|
37014
|
+
.amis-scope .antd-Link.is-disabled {
|
37015
|
+
cursor: not-allowed;
|
37016
|
+
color: #999;
|
37017
|
+
}
|
37018
|
+
|
36689
37019
|
/*
|
36690
37020
|
* utilities
|
36691
37021
|
*/
|
@@ -37132,6 +37462,10 @@ readers do not read off random characters that represent icons */
|
|
37132
37462
|
background: none !important;
|
37133
37463
|
}
|
37134
37464
|
|
37465
|
+
.cursor-pointer {
|
37466
|
+
cursor: pointer;
|
37467
|
+
}
|
37468
|
+
|
37135
37469
|
.amis-scope a.bg-primary:hover {
|
37136
37470
|
background: #0084fe;
|
37137
37471
|
}
|
@@ -38689,7 +39023,7 @@ readers do not read off random characters that represent icons */
|
|
38689
39023
|
}
|
38690
39024
|
|
38691
39025
|
.amis-scope .hover-rotate {
|
38692
|
-
transition: all
|
39026
|
+
transition: all 0s ease-in-out 0s;
|
38693
39027
|
}
|
38694
39028
|
|
38695
39029
|
.amis-scope .hover-anchor:hover > .hover-action,
|
@@ -39023,4 +39357,4 @@ readers do not read off random characters that represent icons */
|
|
39023
39357
|
.amis-scope .no-padder-xs {
|
39024
39358
|
padding: 0 !important;
|
39025
39359
|
}
|
39026
|
-
}
|
39360
|
+
}
|