amis 1.5.3 → 1.5.4
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 +5 -0
- package/lib/components/Card.d.ts +96 -0
- package/lib/components/Card.js +85 -0
- package/lib/components/Card.js.map +13 -0
- package/lib/components/DatePicker.d.ts +85 -84
- package/lib/components/DatePicker.js.map +2 -2
- package/lib/components/DateRangePicker.d.ts +84 -84
- package/lib/components/MonthRangePicker.d.ts +84 -84
- package/lib/components/Picker.d.ts +503 -0
- package/lib/components/Picker.js +65 -0
- package/lib/components/Picker.js.map +13 -0
- package/lib/components/PickerColumn.d.ts +29 -459
- package/lib/components/PickerColumn.js +35 -44
- package/lib/components/PickerColumn.js.map +2 -2
- package/lib/components/Select.d.ts +238 -238
- package/lib/components/Select.js +9 -2
- package/lib/components/Select.js.map +2 -2
- package/lib/components/Selection.js +1 -4
- package/lib/components/Selection.js.map +2 -2
- package/lib/components/Switch.d.ts +6 -6
- package/lib/components/Switch.js.map +2 -2
- package/lib/components/calendar/Calendar.js +15 -0
- package/lib/components/calendar/Calendar.js.map +2 -2
- package/lib/components/calendar/DaysView.js +4 -4
- package/lib/components/calendar/DaysView.js.map +2 -2
- package/lib/components/calendar/TimeView.d.ts +10 -0
- package/lib/components/calendar/TimeView.js +55 -2
- package/lib/components/calendar/TimeView.js.map +2 -2
- package/lib/components/calendar/YearsView.d.ts +9 -0
- package/lib/components/calendar/YearsView.js +19 -0
- package/lib/components/calendar/YearsView.js.map +2 -2
- package/lib/index.js +1 -1
- package/lib/renderers/Card.d.ts +81 -13
- package/lib/renderers/Card.js +178 -81
- package/lib/renderers/Card.js.map +2 -2
- package/lib/renderers/Form/DiffEditor.d.ts +145 -37
- package/lib/renderers/Form/Editor.d.ts +144 -36
- package/lib/renderers/Form/Formula.js +5 -5
- package/lib/renderers/Form/Formula.js.map +2 -2
- package/lib/renderers/Form/InputCity.d.ts +84 -84
- package/lib/renderers/Form/InputFile.js +2 -2
- package/lib/renderers/Form/InputFile.js.map +2 -2
- package/lib/renderers/Form/index.js +10 -0
- package/lib/renderers/Form/index.js.map +2 -2
- package/lib/renderers/Form/wrapControl.js +3 -2
- package/lib/renderers/Form/wrapControl.js.map +2 -2
- package/lib/store/combo.d.ts +160 -40
- package/lib/store/form.d.ts +64 -16
- package/lib/store/formItem.d.ts +4 -2
- package/lib/store/formItem.js +11 -6
- package/lib/store/formItem.js.map +2 -2
- package/lib/store/table.d.ts +128 -32
- package/lib/themes/ang-ie11.css +177 -30
- package/lib/themes/ang.css +177 -30
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd-ie11.css +177 -30
- package/lib/themes/antd.css +177 -30
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +177 -30
- package/lib/themes/cxd.css +177 -30
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark-ie11.css +177 -30
- package/lib/themes/dark.css +177 -30
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +177 -30
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/helper.d.ts +7 -0
- package/lib/utils/helper.js +33 -1
- package/lib/utils/helper.js.map +2 -2
- package/package.json +2 -2
- package/schema.json +157 -13
- package/scss/_properties.scss +13 -2
- package/scss/components/_card.scss +155 -15
- package/scss/components/_nav.scss +1 -1
- package/scss/components/_picker-columns.scss +20 -14
- package/scss/components/form/_file.scss +2 -2
- package/scss/components/form/_selection.scss +4 -0
- package/scss/components/form/_switch.scss +6 -0
- package/sdk/ang-ie11.css +214 -40
- package/sdk/ang.css +216 -32
- package/sdk/antd-ie11.css +214 -40
- package/sdk/antd.css +216 -32
- package/sdk/charts.js +14 -14
- package/sdk/color-picker.js +65 -65
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +206 -32
- package/sdk/cxd.css +216 -32
- package/sdk/dark-ie11.css +214 -40
- package/sdk/dark.css +216 -32
- package/sdk/exceljs.js +1 -1
- package/sdk/markdown.js +69 -69
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +18 -18
- package/sdk/rich-text.js +62 -62
- package/sdk/sdk-ie11.css +206 -32
- package/sdk/sdk.css +216 -32
- package/sdk/sdk.js +1190 -1186
- 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/components/Card.tsx +203 -0
- package/src/components/DatePicker.tsx +3 -0
- package/src/components/Picker.tsx +145 -0
- package/src/components/PickerColumn.tsx +58 -95
- package/src/components/Select.tsx +17 -12
- package/src/components/Selection.tsx +1 -4
- package/src/components/Switch.tsx +7 -7
- package/src/components/calendar/Calendar.tsx +18 -0
- package/src/components/calendar/DaysView.tsx +6 -4
- package/src/components/calendar/TimeView.tsx +80 -5
- package/src/components/calendar/YearsView.tsx +44 -1
- package/src/renderers/Card.tsx +299 -191
- package/src/renderers/Form/Formula.tsx +7 -5
- package/src/renderers/Form/InputFile.tsx +6 -2
- package/src/renderers/Form/index.tsx +12 -0
- package/src/renderers/Form/wrapControl.tsx +5 -2
- package/src/store/formItem.ts +12 -6
- package/src/utils/helper.ts +34 -0
package/sdk/ang-ie11.css
CHANGED
@@ -22805,14 +22805,9 @@ readers do not read off random characters that represent icons */
|
|
22805
22805
|
position: relative;
|
22806
22806
|
background-color: white;
|
22807
22807
|
user-select: none;
|
22808
|
-
|
22809
|
-
|
22810
|
-
|
22811
|
-
position: fixed;
|
22812
|
-
bottom: 0;
|
22813
|
-
left: 0;
|
22814
|
-
width: 100%;
|
22815
|
-
padding: 0 0.5rem;
|
22808
|
+
flex: 1;
|
22809
|
+
overflow: hidden;
|
22810
|
+
font-size: 1rem;
|
22816
22811
|
}
|
22817
22812
|
|
22818
22813
|
.amis-scope .a-PickerColumns-toolbar {
|
@@ -22837,12 +22832,17 @@ readers do not read off random characters that represent icons */
|
|
22837
22832
|
opacity: 0.7;
|
22838
22833
|
}
|
22839
22834
|
|
22835
|
+
.amis-scope .a-PickerColumns-cancel:hover,
|
22836
|
+
.amis-scope .a-PickerColumns-confirm:hover {
|
22837
|
+
background-color: none !important;
|
22838
|
+
}
|
22839
|
+
|
22840
22840
|
.amis-scope .a-PickerColumns-confirm {
|
22841
|
-
color: #
|
22841
|
+
color: #99a6ad;
|
22842
22842
|
}
|
22843
22843
|
|
22844
22844
|
.amis-scope .a-PickerColumns-cancel {
|
22845
|
-
color: #
|
22845
|
+
color: #dfe3e6;
|
22846
22846
|
}
|
22847
22847
|
|
22848
22848
|
.amis-scope .a-PickerColumns-title {
|
@@ -22884,6 +22884,18 @@ readers do not read off random characters that represent icons */
|
|
22884
22884
|
pointer-events: none;
|
22885
22885
|
}
|
22886
22886
|
|
22887
|
+
.amis-scope .a-PickerColumns-frame::after {
|
22888
|
+
position: absolute;
|
22889
|
+
content: "";
|
22890
|
+
border-bottom: 1px solid #d1d5db;
|
22891
|
+
border-top: 1px solid #d1d5db;
|
22892
|
+
top: -50%;
|
22893
|
+
right: -50%;
|
22894
|
+
left: -50%;
|
22895
|
+
bottom: -50%;
|
22896
|
+
transform: scale(0.5);
|
22897
|
+
}
|
22898
|
+
|
22887
22899
|
.amis-scope .a-PickerColumns-mask {
|
22888
22900
|
position: absolute;
|
22889
22901
|
top: 0;
|
@@ -22898,12 +22910,6 @@ readers do not read off random characters that represent icons */
|
|
22898
22910
|
pointer-events: none;
|
22899
22911
|
}
|
22900
22912
|
|
22901
|
-
.amis-scope .a-PickerColumns-column {
|
22902
|
-
flex: 1;
|
22903
|
-
overflow: hidden;
|
22904
|
-
font-size: 1rem;
|
22905
|
-
}
|
22906
|
-
|
22907
22913
|
.amis-scope .a-PickerColumns-columnWrapper {
|
22908
22914
|
margin: 0;
|
22909
22915
|
padding: 0;
|
@@ -24127,7 +24133,7 @@ readers do not read off random characters that represent icons */
|
|
24127
24133
|
.amis-scope .a-Nav .a-Nav-list--stacked .a-Badge.is-active > .a-Badge > a {
|
24128
24134
|
color: #fff;
|
24129
24135
|
position: relative;
|
24130
|
-
background: #23b7e5;
|
24136
|
+
background: #23b7e5 !important;
|
24131
24137
|
}
|
24132
24138
|
|
24133
24139
|
.amis-scope .a-Nav .a-Nav-list--stacked .a-Nav-item.active > a::after,
|
@@ -25169,12 +25175,12 @@ readers do not read off random characters that represent icons */
|
|
25169
25175
|
|
25170
25176
|
.amis-scope .a-ScheduleCalendar-icon {
|
25171
25177
|
position: absolute;
|
25172
|
-
bottom:
|
25178
|
+
bottom: -0.25rem;
|
25173
25179
|
left: 50%;
|
25174
25180
|
transform: translateX(-50%);
|
25175
25181
|
display: block;
|
25176
|
-
width:
|
25177
|
-
height:
|
25182
|
+
width: 0.625rem;
|
25183
|
+
height: 0.625rem;
|
25178
25184
|
border-radius: 50%;
|
25179
25185
|
z-index: 10;
|
25180
25186
|
}
|
@@ -25221,11 +25227,11 @@ readers do not read off random characters that represent icons */
|
|
25221
25227
|
}
|
25222
25228
|
|
25223
25229
|
.amis-scope .a-ScheduleCalendar-large .rdtPicker table td {
|
25224
|
-
border:
|
25230
|
+
border: 0.0625rem solid #d1d5db;
|
25225
25231
|
}
|
25226
25232
|
|
25227
25233
|
.amis-scope .a-ScheduleCalendar-large .rdtDay {
|
25228
|
-
height:
|
25234
|
+
height: 6.25rem;
|
25229
25235
|
vertical-align: top;
|
25230
25236
|
}
|
25231
25237
|
|
@@ -25242,9 +25248,9 @@ readers do not read off random characters that represent icons */
|
|
25242
25248
|
z-index: 10;
|
25243
25249
|
border-radius: 0.142rem;
|
25244
25250
|
text-align: left;
|
25245
|
-
padding:
|
25246
|
-
height:
|
25247
|
-
color:
|
25251
|
+
padding: 0 0.25rem;
|
25252
|
+
height: 1.25rem;
|
25253
|
+
color: #fff;
|
25248
25254
|
}
|
25249
25255
|
|
25250
25256
|
.amis-scope .a-ScheduleCalendar-large .a-ScheduleCalendar-action {
|
@@ -28707,8 +28713,9 @@ readers do not read off random characters that represent icons */
|
|
28707
28713
|
}
|
28708
28714
|
|
28709
28715
|
.amis-scope .a-Card-title {
|
28710
|
-
color: #
|
28716
|
+
color: #58666e;
|
28711
28717
|
font-size: 0.875rem;
|
28718
|
+
font-weight: 500;
|
28712
28719
|
white-space: nowrap;
|
28713
28720
|
overflow: hidden;
|
28714
28721
|
text-overflow: ellipsis;
|
@@ -28729,15 +28736,14 @@ readers do not read off random characters that represent icons */
|
|
28729
28736
|
}
|
28730
28737
|
|
28731
28738
|
.amis-scope .a-Card-dragBtn {
|
28739
|
+
display: inline-block;
|
28732
28740
|
cursor: pointer;
|
28733
|
-
|
28734
|
-
margin: 0.5rem;
|
28741
|
+
padding: 0 0.5rem;
|
28735
28742
|
}
|
28736
28743
|
|
28737
28744
|
.amis-scope .a-Card-heading {
|
28738
28745
|
display: flex;
|
28739
|
-
|
28740
|
-
padding: 0.5rem 0.75rem;
|
28746
|
+
padding: 1rem;
|
28741
28747
|
flex: 1 0 auto;
|
28742
28748
|
}
|
28743
28749
|
|
@@ -28764,7 +28770,7 @@ readers do not read off random characters that represent icons */
|
|
28764
28770
|
float: left;
|
28765
28771
|
margin-right: 0.75rem;
|
28766
28772
|
font-size: 1.25rem;
|
28767
|
-
text-transform: uppercase;
|
28773
|
+
text-transform: uppercase();
|
28768
28774
|
}
|
28769
28775
|
|
28770
28776
|
.amis-scope .a-Card-meta {
|
@@ -28772,11 +28778,14 @@ readers do not read off random characters that represent icons */
|
|
28772
28778
|
flex-grow: 1;
|
28773
28779
|
height: 100%;
|
28774
28780
|
position: relative;
|
28775
|
-
|
28781
|
+
}
|
28782
|
+
|
28783
|
+
.amis-scope .a-Card-meta + .a-Card-toolbar {
|
28784
|
+
margin-left: 1rem;
|
28776
28785
|
}
|
28777
28786
|
|
28778
28787
|
.amis-scope .a-Card-toolbar {
|
28779
|
-
|
28788
|
+
line-height: normal;
|
28780
28789
|
text-align: right;
|
28781
28790
|
}
|
28782
28791
|
|
@@ -28786,18 +28795,16 @@ readers do not read off random characters that represent icons */
|
|
28786
28795
|
height: 0.5rem;
|
28787
28796
|
border-radius: 100%;
|
28788
28797
|
display: inline-block;
|
28789
|
-
|
28790
|
-
top: 0.25rem;
|
28791
|
-
right: 0.125rem;
|
28798
|
+
margin: 0 0.5rem;
|
28792
28799
|
}
|
28793
28800
|
|
28794
28801
|
.amis-scope .a-Card-body {
|
28795
|
-
padding:
|
28802
|
+
padding: 1rem;
|
28796
28803
|
flex: 1 0 auto;
|
28797
28804
|
}
|
28798
28805
|
|
28799
28806
|
.amis-scope .a-Card-heading + .a-Card-body {
|
28800
|
-
padding-top: 0
|
28807
|
+
padding-top: 0;
|
28801
28808
|
}
|
28802
28809
|
|
28803
28810
|
.amis-scope .a-Card-field {
|
@@ -28826,6 +28833,7 @@ readers do not read off random characters that represent icons */
|
|
28826
28833
|
flex-direction: row;
|
28827
28834
|
width: 100%;
|
28828
28835
|
table-layout: fixed;
|
28836
|
+
white-space: nowrap;
|
28829
28837
|
}
|
28830
28838
|
|
28831
28839
|
.amis-scope .a-Card-actions > a {
|
@@ -28913,6 +28921,160 @@ readers do not read off random characters that represent icons */
|
|
28913
28921
|
opacity: 0.1;
|
28914
28922
|
}
|
28915
28923
|
|
28924
|
+
.amis-scope .a-Card-footer-wrapper {
|
28925
|
+
display: flex;
|
28926
|
+
align-items: center;
|
28927
|
+
justify-content: space-between;
|
28928
|
+
}
|
28929
|
+
|
28930
|
+
.amis-scope .a-Card-actions-wrapper {
|
28931
|
+
flex: 1;
|
28932
|
+
display: flex;
|
28933
|
+
align-items: center;
|
28934
|
+
justify-content: flex-end;
|
28935
|
+
flex-wrap: wrap;
|
28936
|
+
}
|
28937
|
+
|
28938
|
+
.amis-scope .a-Card-checkbox {
|
28939
|
+
margin: 0 0.5rem !important;
|
28940
|
+
}
|
28941
|
+
|
28942
|
+
.amis-scope .a-Card-secondary {
|
28943
|
+
max-width: 12.5rem;
|
28944
|
+
color: #83868c;
|
28945
|
+
padding: 0 1rem;
|
28946
|
+
font-size: 0.875rem;
|
28947
|
+
font-weight: 400;
|
28948
|
+
white-space: nowrap;
|
28949
|
+
overflow: hidden;
|
28950
|
+
text-overflow: ellipsis;
|
28951
|
+
}
|
28952
|
+
|
28953
|
+
.amis-scope .a-Card-secondary + .a-Card-actions-wrapper .a-Card-actions {
|
28954
|
+
margin-left: unset;
|
28955
|
+
border: none;
|
28956
|
+
width: unset;
|
28957
|
+
}
|
28958
|
+
|
28959
|
+
.amis-scope .a-Card-secondary + .a-Card-actions-wrapper .a-Card-actions > a {
|
28960
|
+
border: none;
|
28961
|
+
}
|
28962
|
+
|
28963
|
+
.amis-scope .a-Card-multiMedia--top .a-Card-actions-wrapper .a-Card-actions,
|
28964
|
+
.amis-scope .a-Card-multiMedia--bottom .a-Card-actions-wrapper .a-Card-actions,
|
28965
|
+
.amis-scope .a-Card-multiMedia--left .a-Card-actions-wrapper .a-Card-actions,
|
28966
|
+
.amis-scope .a-Card-multiMedia--right .a-Card-actions-wrapper .a-Card-actions {
|
28967
|
+
margin-left: unset;
|
28968
|
+
border: none;
|
28969
|
+
width: unset;
|
28970
|
+
}
|
28971
|
+
|
28972
|
+
.amis-scope .a-Card-multiMedia--top .a-Card-actions-wrapper .a-Card-actions > a,
|
28973
|
+
.amis-scope .a-Card-multiMedia--bottom .a-Card-actions-wrapper .a-Card-actions > a,
|
28974
|
+
.amis-scope .a-Card-multiMedia--left .a-Card-actions-wrapper .a-Card-actions > a,
|
28975
|
+
.amis-scope .a-Card-multiMedia--right .a-Card-actions-wrapper .a-Card-actions > a {
|
28976
|
+
border: none;
|
28977
|
+
}
|
28978
|
+
|
28979
|
+
.amis-scope .a-Card-multiMedia--top {
|
28980
|
+
display: block;
|
28981
|
+
}
|
28982
|
+
|
28983
|
+
.amis-scope .a-Card-multiMedia--top .a-Card-multiMedia-img {
|
28984
|
+
border-bottom-left-radius: unset;
|
28985
|
+
border-bottom-right-radius: unset;
|
28986
|
+
}
|
28987
|
+
|
28988
|
+
.amis-scope .a-Card-multiMedia--bottom {
|
28989
|
+
display: flex;
|
28990
|
+
flex-direction: column-reverse;
|
28991
|
+
}
|
28992
|
+
|
28993
|
+
.amis-scope .a-Card-multiMedia--bottom .a-Card-actions {
|
28994
|
+
border-bottom: 0.0625rem solid #dfe2e6;
|
28995
|
+
}
|
28996
|
+
|
28997
|
+
.amis-scope .a-Card-multiMedia--bottom .a-Card-multiMedia-img {
|
28998
|
+
border-top-left-radius: unset;
|
28999
|
+
border-top-right-radius: unset;
|
29000
|
+
}
|
29001
|
+
|
29002
|
+
.amis-scope .a-Card-multiMedia--top .a-Card-body,
|
29003
|
+
.amis-scope .a-Card-multiMedia--bottom .a-Card-body {
|
29004
|
+
padding-bottom: 1rem;
|
29005
|
+
}
|
29006
|
+
|
29007
|
+
.amis-scope .a-Card-multiMedia--left {
|
29008
|
+
display: flex;
|
29009
|
+
align-items: center;
|
29010
|
+
}
|
29011
|
+
|
29012
|
+
.amis-scope .a-Card-multiMedia--left .a-Card-actions {
|
29013
|
+
margin-left: 1rem;
|
29014
|
+
border-left: 0.0625rem solid #dfe2e6;
|
29015
|
+
}
|
29016
|
+
|
29017
|
+
.amis-scope .a-Card-multiMedia--left .a-Card-multiMedia-img,
|
29018
|
+
.amis-scope .a-Card-multiMedia--left .a-Card-multiMedia-video {
|
29019
|
+
margin: 1rem 0 1rem 1rem;
|
29020
|
+
}
|
29021
|
+
|
29022
|
+
.amis-scope .a-Card-multiMedia--right {
|
29023
|
+
display: flex;
|
29024
|
+
align-items: center;
|
29025
|
+
justify-content: space-between;
|
29026
|
+
flex-direction: row-reverse;
|
29027
|
+
}
|
29028
|
+
|
29029
|
+
.amis-scope .a-Card-multiMedia--right .a-Card-actions {
|
29030
|
+
margin-right: 1rem;
|
29031
|
+
border-right: 0.0625rem solid #dfe2e6;
|
29032
|
+
}
|
29033
|
+
|
29034
|
+
.amis-scope .a-Card-multiMedia--right .a-Card-multiMedia-img,
|
29035
|
+
.amis-scope .a-Card-multiMedia--right .a-Card-multiMedia-video {
|
29036
|
+
margin: 1rem 1rem 1rem 0;
|
29037
|
+
}
|
29038
|
+
|
29039
|
+
.amis-scope .a-Card-multiMedia-flex {
|
29040
|
+
flex: 1;
|
29041
|
+
display: flex;
|
29042
|
+
flex-direction: column;
|
29043
|
+
justify-content: center;
|
29044
|
+
}
|
29045
|
+
|
29046
|
+
.amis-scope .a-Card-multiMedia-img {
|
29047
|
+
display: block;
|
29048
|
+
width: 100%;
|
29049
|
+
height: auto;
|
29050
|
+
object-fit: cover;
|
29051
|
+
border-radius: 0.142rem;
|
29052
|
+
}
|
29053
|
+
|
29054
|
+
.amis-scope .a-Card-multiMedia-video {
|
29055
|
+
width: 11.25rem;
|
29056
|
+
height: 7.5rem;
|
29057
|
+
}
|
29058
|
+
|
29059
|
+
.amis-scope .a-Card-multiMedia-video .a-Video {
|
29060
|
+
width: 100%;
|
29061
|
+
height: 100%;
|
29062
|
+
min-width: unset;
|
29063
|
+
border-radius: 0.142rem;
|
29064
|
+
overflow: hidden;
|
29065
|
+
}
|
29066
|
+
|
29067
|
+
.amis-scope .a-Card-multiMedia-video .a-Video .a-Video-player {
|
29068
|
+
width: 100%;
|
29069
|
+
height: 100%;
|
29070
|
+
}
|
29071
|
+
|
29072
|
+
.amis-scope .a-Card-multiMedia-video .a-Video .a-Video-player .video-react {
|
29073
|
+
width: 100%;
|
29074
|
+
height: 100%;
|
29075
|
+
padding-top: unset !important;
|
29076
|
+
}
|
29077
|
+
|
28916
29078
|
.amis-scope .a-Field-quickEditBtn {
|
28917
29079
|
color: inherit;
|
28918
29080
|
margin-left: 0.25rem;
|
@@ -32156,6 +32318,12 @@ readers do not read off random characters that represent icons */
|
|
32156
32318
|
margin-right: 0.25rem;
|
32157
32319
|
}
|
32158
32320
|
|
32321
|
+
.amis-scope .a-GroupedSelection {
|
32322
|
+
max-height: 18.75rem;
|
32323
|
+
overflow: auto;
|
32324
|
+
user-select: none;
|
32325
|
+
}
|
32326
|
+
|
32159
32327
|
.amis-scope .a-GroupedSelection-group:not(:first-child) > .a-GroupedSelection-itemLabel {
|
32160
32328
|
border-top: 0.0625rem solid #dfe2e6;
|
32161
32329
|
}
|
@@ -32524,6 +32692,12 @@ readers do not read off random characters that represent icons */
|
|
32524
32692
|
transition: all 0s;
|
32525
32693
|
}
|
32526
32694
|
|
32695
|
+
.amis-scope .a-Switch .text > svg {
|
32696
|
+
width: 0.75rem;
|
32697
|
+
height: 0.75rem;
|
32698
|
+
margin-top: calc((1.375rem - 0.75rem) / 2);
|
32699
|
+
}
|
32700
|
+
|
32527
32701
|
.amis-scope .a-Switch .slider:before {
|
32528
32702
|
content: "";
|
32529
32703
|
position: absolute;
|
@@ -34573,8 +34747,9 @@ readers do not read off random characters that represent icons */
|
|
34573
34747
|
}
|
34574
34748
|
|
34575
34749
|
.amis-scope .a-FileControl-selectBtn {
|
34576
|
-
display: flex;
|
34750
|
+
display: inline-flex;
|
34577
34751
|
align-items: center;
|
34752
|
+
margin-right: 10px;
|
34578
34753
|
}
|
34579
34754
|
|
34580
34755
|
.amis-scope .a-FileControl-selectBtn > svg {
|
@@ -34583,7 +34758,6 @@ readers do not read off random characters that represent icons */
|
|
34583
34758
|
}
|
34584
34759
|
|
34585
34760
|
.amis-scope .a-FileControl-description {
|
34586
|
-
margin-left: 10px;
|
34587
34761
|
color: #999;
|
34588
34762
|
font-size: 12px;
|
34589
34763
|
}
|