@delon/theme 19.1.0 → 19.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compact.css +463 -62
- package/compact.min.css +1 -1
- package/dark.css +463 -62
- package/dark.min.css +1 -1
- package/default.css +463 -62
- package/default.min.css +1 -1
- package/fesm2022/layout-default.mjs +25 -25
- package/fesm2022/setting-drawer.mjs +10 -10
- package/fesm2022/theme-btn.mjs +7 -7
- package/fesm2022/theme.mjs +66 -66
- package/fesm2022/theme.mjs.map +1 -1
- package/layout-default/style/_header.less +3 -3
- package/layout-default/style/_layout.less +1 -1
- package/layout-default/style/fix/_sidebar-nav.less +3 -3
- package/layout-default/style/widgets/_app-icons.less +2 -2
- package/package.json +6 -6
- package/setting-drawer/style/index.less +2 -2
- package/system/antd/_drawer.less +2 -2
- package/system/antd/_modal.less +2 -2
- package/system/antd/_table.less +2 -2
- package/system/antd/_tag.less +1 -1
- package/system/utils/_code.less +2 -2
- package/system/utils/_scrollbar.less +1 -1
- package/system/widgets/_header-dropdown.less +1 -1
- package/variable.css +463 -62
- package/variable.min.css +1 -1
package/default.css
CHANGED
|
@@ -22832,6 +22832,229 @@ span.ant-radio + * {
|
|
|
22832
22832
|
nz-spin {
|
|
22833
22833
|
display: block;
|
|
22834
22834
|
}
|
|
22835
|
+
.ant-splitter {
|
|
22836
|
+
font-variant: tabular-nums;
|
|
22837
|
+
font-feature-settings: 'tnum';
|
|
22838
|
+
display: flex;
|
|
22839
|
+
align-items: stretch;
|
|
22840
|
+
box-sizing: border-box;
|
|
22841
|
+
width: 100%;
|
|
22842
|
+
height: 100%;
|
|
22843
|
+
margin: 0;
|
|
22844
|
+
padding: 0;
|
|
22845
|
+
color: rgba(0, 0, 0, 0.85);
|
|
22846
|
+
font-size: 14px;
|
|
22847
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
|
22848
|
+
line-height: 1.5715;
|
|
22849
|
+
list-style: none;
|
|
22850
|
+
}
|
|
22851
|
+
.ant-splitter-horizontal {
|
|
22852
|
+
flex-direction: row;
|
|
22853
|
+
}
|
|
22854
|
+
.ant-splitter-vertical {
|
|
22855
|
+
flex-direction: column;
|
|
22856
|
+
}
|
|
22857
|
+
.ant-splitter-panel {
|
|
22858
|
+
box-sizing: border-box;
|
|
22859
|
+
padding: 0 1px;
|
|
22860
|
+
overflow: auto;
|
|
22861
|
+
scrollbar-width: thin;
|
|
22862
|
+
}
|
|
22863
|
+
.ant-splitter-panel-hidden {
|
|
22864
|
+
padding: 0;
|
|
22865
|
+
overflow: hidden;
|
|
22866
|
+
}
|
|
22867
|
+
.ant-splitter-panel:has(.ant-splitter:only-child) {
|
|
22868
|
+
overflow: hidden;
|
|
22869
|
+
}
|
|
22870
|
+
.ant-splitter-bar {
|
|
22871
|
+
position: relative;
|
|
22872
|
+
flex: none;
|
|
22873
|
+
user-select: none;
|
|
22874
|
+
}
|
|
22875
|
+
.ant-splitter-bar-preview {
|
|
22876
|
+
position: absolute;
|
|
22877
|
+
z-index: 1;
|
|
22878
|
+
display: none;
|
|
22879
|
+
background: #1890ff;
|
|
22880
|
+
opacity: 0.2;
|
|
22881
|
+
transition: none;
|
|
22882
|
+
pointer-events: none;
|
|
22883
|
+
}
|
|
22884
|
+
.ant-splitter-bar-preview-active {
|
|
22885
|
+
display: block;
|
|
22886
|
+
}
|
|
22887
|
+
.ant-splitter-bar-dragger {
|
|
22888
|
+
position: absolute;
|
|
22889
|
+
top: 50%;
|
|
22890
|
+
left: 50%;
|
|
22891
|
+
z-index: 1;
|
|
22892
|
+
transform: translate(-50%, -50%);
|
|
22893
|
+
}
|
|
22894
|
+
.ant-splitter-bar-dragger::before {
|
|
22895
|
+
position: absolute;
|
|
22896
|
+
top: 50%;
|
|
22897
|
+
left: 50%;
|
|
22898
|
+
background: rgba(0, 0, 0, 0.04);
|
|
22899
|
+
transform: translate(-50%, -50%);
|
|
22900
|
+
content: '';
|
|
22901
|
+
}
|
|
22902
|
+
.ant-splitter-bar-dragger:hover:not(.ant-splitter-bar-dragger-active)::before {
|
|
22903
|
+
background: #e6f4ff;
|
|
22904
|
+
}
|
|
22905
|
+
.ant-splitter-bar-dragger::after {
|
|
22906
|
+
position: absolute;
|
|
22907
|
+
top: 50%;
|
|
22908
|
+
left: 50%;
|
|
22909
|
+
background: rgba(0, 0, 0, 0.15);
|
|
22910
|
+
transform: translate(-50%, -50%);
|
|
22911
|
+
content: '';
|
|
22912
|
+
}
|
|
22913
|
+
.ant-splitter-bar-dragger-active {
|
|
22914
|
+
z-index: 2;
|
|
22915
|
+
}
|
|
22916
|
+
.ant-splitter-bar-dragger-active::before {
|
|
22917
|
+
background: #bae0ff;
|
|
22918
|
+
}
|
|
22919
|
+
.ant-splitter-bar:hover .ant-splitter-bar-collapse-bar,
|
|
22920
|
+
.ant-splitter-bar:active .ant-splitter-bar-collapse-bar {
|
|
22921
|
+
opacity: 1;
|
|
22922
|
+
}
|
|
22923
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled {
|
|
22924
|
+
z-index: 0;
|
|
22925
|
+
}
|
|
22926
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled,
|
|
22927
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled:hover,
|
|
22928
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled-active {
|
|
22929
|
+
cursor: default;
|
|
22930
|
+
}
|
|
22931
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled::before,
|
|
22932
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled:hover::before,
|
|
22933
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled-active::before {
|
|
22934
|
+
background: rgba(0, 0, 0, 0.04);
|
|
22935
|
+
}
|
|
22936
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled::after {
|
|
22937
|
+
display: none;
|
|
22938
|
+
}
|
|
22939
|
+
.ant-splitter-bar-collapse-bar {
|
|
22940
|
+
position: absolute;
|
|
22941
|
+
top: 50%;
|
|
22942
|
+
left: 50%;
|
|
22943
|
+
z-index: 1000;
|
|
22944
|
+
display: flex;
|
|
22945
|
+
align-items: center;
|
|
22946
|
+
justify-content: center;
|
|
22947
|
+
color: rgba(0, 0, 0, 0.85);
|
|
22948
|
+
font-size: 12px;
|
|
22949
|
+
background: rgba(0, 0, 0, 0.04);
|
|
22950
|
+
border-radius: 2px;
|
|
22951
|
+
transform: translate(-50%, -50%);
|
|
22952
|
+
cursor: pointer;
|
|
22953
|
+
opacity: 0;
|
|
22954
|
+
}
|
|
22955
|
+
.ant-splitter-bar-collapse-bar:hover {
|
|
22956
|
+
background: #e6f4ff;
|
|
22957
|
+
}
|
|
22958
|
+
.ant-splitter-bar-collapse-bar:active {
|
|
22959
|
+
background: #bae0ff;
|
|
22960
|
+
}
|
|
22961
|
+
.ant-splitter-horizontal > .ant-splitter-bar {
|
|
22962
|
+
width: 0;
|
|
22963
|
+
}
|
|
22964
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-dragger {
|
|
22965
|
+
width: 6px;
|
|
22966
|
+
height: 100%;
|
|
22967
|
+
cursor: col-resize;
|
|
22968
|
+
}
|
|
22969
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-dragger::before {
|
|
22970
|
+
width: 2px;
|
|
22971
|
+
height: 100%;
|
|
22972
|
+
}
|
|
22973
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-dragger::after {
|
|
22974
|
+
width: 2px;
|
|
22975
|
+
height: 20px;
|
|
22976
|
+
}
|
|
22977
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-preview {
|
|
22978
|
+
width: 2px;
|
|
22979
|
+
height: 100%;
|
|
22980
|
+
}
|
|
22981
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-collapse-bar {
|
|
22982
|
+
width: 12px;
|
|
22983
|
+
height: 24px;
|
|
22984
|
+
}
|
|
22985
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-collapse-bar-start {
|
|
22986
|
+
right: calc(6px / 2);
|
|
22987
|
+
left: auto;
|
|
22988
|
+
transform: translateY(-50%);
|
|
22989
|
+
}
|
|
22990
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-collapse-bar-end {
|
|
22991
|
+
right: auto;
|
|
22992
|
+
left: calc(6px / 2);
|
|
22993
|
+
transform: translateY(-50%);
|
|
22994
|
+
}
|
|
22995
|
+
.ant-splitter-vertical > .ant-splitter-bar {
|
|
22996
|
+
height: 0;
|
|
22997
|
+
}
|
|
22998
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger {
|
|
22999
|
+
width: 100%;
|
|
23000
|
+
height: 6px;
|
|
23001
|
+
cursor: row-resize;
|
|
23002
|
+
}
|
|
23003
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger:has(.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger-disabled) {
|
|
23004
|
+
cursor: default;
|
|
23005
|
+
}
|
|
23006
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger::before {
|
|
23007
|
+
width: 100%;
|
|
23008
|
+
height: 2px;
|
|
23009
|
+
}
|
|
23010
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger::after {
|
|
23011
|
+
width: 20px;
|
|
23012
|
+
height: 2px;
|
|
23013
|
+
}
|
|
23014
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-preview {
|
|
23015
|
+
width: 100%;
|
|
23016
|
+
height: 2px;
|
|
23017
|
+
}
|
|
23018
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-collapse-bar {
|
|
23019
|
+
width: 24px;
|
|
23020
|
+
height: 12px;
|
|
23021
|
+
}
|
|
23022
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-collapse-bar-start {
|
|
23023
|
+
top: auto;
|
|
23024
|
+
bottom: calc(6px / 2);
|
|
23025
|
+
transform: translateX(-50%);
|
|
23026
|
+
}
|
|
23027
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-collapse-bar-end {
|
|
23028
|
+
top: calc(6px / 2);
|
|
23029
|
+
bottom: auto;
|
|
23030
|
+
transform: translateX(-50%);
|
|
23031
|
+
}
|
|
23032
|
+
.ant-splitter-mask {
|
|
23033
|
+
position: fixed;
|
|
23034
|
+
z-index: 1000;
|
|
23035
|
+
inset: 0;
|
|
23036
|
+
}
|
|
23037
|
+
.ant-splitter-mask-horizontal {
|
|
23038
|
+
cursor: col-resize;
|
|
23039
|
+
}
|
|
23040
|
+
.ant-splitter-mask-vertical {
|
|
23041
|
+
cursor: row-resize;
|
|
23042
|
+
}
|
|
23043
|
+
.ant-splitter-rtl {
|
|
23044
|
+
direction: rtl;
|
|
23045
|
+
}
|
|
23046
|
+
.ant-splitter-rtl .ant-splitter-dot-spin {
|
|
23047
|
+
transform: rotate(-45deg);
|
|
23048
|
+
animation-name: antRotateRtl;
|
|
23049
|
+
}
|
|
23050
|
+
@keyframes antRotateRtl {
|
|
23051
|
+
to {
|
|
23052
|
+
transform: rotate(-405deg);
|
|
23053
|
+
}
|
|
23054
|
+
}
|
|
23055
|
+
nz-splitter {
|
|
23056
|
+
display: block;
|
|
23057
|
+
}
|
|
22835
23058
|
.ant-statistic {
|
|
22836
23059
|
box-sizing: border-box;
|
|
22837
23060
|
margin: 0;
|
|
@@ -29047,6 +29270,9 @@ nz-tree {
|
|
|
29047
29270
|
margin-bottom: 4px;
|
|
29048
29271
|
overflow: auto;
|
|
29049
29272
|
}
|
|
29273
|
+
.ant-select-dropdown.ant-select-tree-dropdown .cdk-virtual-scroll-content-wrapper {
|
|
29274
|
+
overflow: auto;
|
|
29275
|
+
}
|
|
29050
29276
|
.ant-picker-calendar {
|
|
29051
29277
|
box-sizing: border-box;
|
|
29052
29278
|
margin: 0;
|
|
@@ -29965,7 +30191,7 @@ nz-space-item {
|
|
|
29965
30191
|
width: 16px;
|
|
29966
30192
|
height: 16px;
|
|
29967
30193
|
}
|
|
29968
|
-
.ant-
|
|
30194
|
+
.ant-hash-code {
|
|
29969
30195
|
display: flex;
|
|
29970
30196
|
flex-direction: column;
|
|
29971
30197
|
align-items: center;
|
|
@@ -29979,78 +30205,78 @@ nz-space-item {
|
|
|
29979
30205
|
list-style: none;
|
|
29980
30206
|
cursor: pointer;
|
|
29981
30207
|
}
|
|
29982
|
-
.ant-
|
|
30208
|
+
.ant-hash-code-header-copy {
|
|
29983
30209
|
margin-left: 8px;
|
|
29984
30210
|
cursor: pointer;
|
|
29985
30211
|
opacity: 0.45;
|
|
29986
30212
|
}
|
|
29987
|
-
.ant-
|
|
30213
|
+
.ant-hash-code-header {
|
|
29988
30214
|
display: flex;
|
|
29989
30215
|
justify-content: left;
|
|
29990
30216
|
width: 100%;
|
|
29991
30217
|
height: 22px;
|
|
29992
30218
|
padding-bottom: 8px;
|
|
29993
30219
|
}
|
|
29994
|
-
.ant-
|
|
30220
|
+
.ant-hash-code-header .ant-hash-code-header-title {
|
|
29995
30221
|
font-size: 14px;
|
|
29996
30222
|
line-height: 1.5715;
|
|
29997
30223
|
text-align: center;
|
|
29998
30224
|
opacity: 0.45;
|
|
29999
30225
|
}
|
|
30000
|
-
.ant-
|
|
30226
|
+
.ant-hash-code-header .ant-hash-code-header-logo {
|
|
30001
30227
|
display: flex;
|
|
30002
30228
|
flex: 1;
|
|
30003
30229
|
justify-content: right;
|
|
30004
30230
|
}
|
|
30005
|
-
.ant-
|
|
30231
|
+
.ant-hash-code-double {
|
|
30006
30232
|
width: 172px;
|
|
30007
30233
|
}
|
|
30008
|
-
.ant-
|
|
30234
|
+
.ant-hash-code-double.ant-hash-code-primary {
|
|
30009
30235
|
width: 220px;
|
|
30010
30236
|
}
|
|
30011
|
-
.ant-
|
|
30237
|
+
.ant-hash-code-single {
|
|
30012
30238
|
display: flex;
|
|
30013
30239
|
flex-direction: row-reverse;
|
|
30014
30240
|
width: 236px;
|
|
30015
30241
|
}
|
|
30016
|
-
.ant-
|
|
30242
|
+
.ant-hash-code-single.ant-hash-code-primary {
|
|
30017
30243
|
width: 284px;
|
|
30018
30244
|
}
|
|
30019
|
-
.ant-
|
|
30245
|
+
.ant-hash-code-single .ant-hash-code-header-copy {
|
|
30020
30246
|
margin-top: 8px;
|
|
30021
30247
|
}
|
|
30022
|
-
.ant-
|
|
30248
|
+
.ant-hash-code-strip {
|
|
30023
30249
|
width: 350px;
|
|
30024
30250
|
}
|
|
30025
|
-
.ant-
|
|
30251
|
+
.ant-hash-code-strip.ant-hash-code-primary {
|
|
30026
30252
|
width: 398px;
|
|
30027
30253
|
}
|
|
30028
|
-
.ant-
|
|
30254
|
+
.ant-hash-code-rect {
|
|
30029
30255
|
display: flex;
|
|
30030
30256
|
flex-direction: row-reverse;
|
|
30031
30257
|
width: 196px;
|
|
30032
30258
|
}
|
|
30033
|
-
.ant-
|
|
30259
|
+
.ant-hash-code-rect.ant-hash-code-primary {
|
|
30034
30260
|
width: 244px;
|
|
30035
30261
|
}
|
|
30036
|
-
.ant-
|
|
30262
|
+
.ant-hash-code-primary {
|
|
30037
30263
|
padding: 24px;
|
|
30038
30264
|
background-color: #1890ff;
|
|
30039
30265
|
border-radius: 24px;
|
|
30040
30266
|
}
|
|
30041
|
-
.ant-
|
|
30267
|
+
.ant-hash-code-primary .ant-hash-code-header-copy {
|
|
30042
30268
|
opacity: 1;
|
|
30043
30269
|
}
|
|
30044
|
-
.ant-
|
|
30045
|
-
.ant-
|
|
30046
|
-
.ant-
|
|
30270
|
+
.ant-hash-code-primary .ant-hash-code-header-title,
|
|
30271
|
+
.ant-hash-code-primary .ant-hash-code-header-copy,
|
|
30272
|
+
.ant-hash-code-primary .ant-hash-code-header-logo {
|
|
30047
30273
|
color: rgba(255, 255, 255, 0.85);
|
|
30048
30274
|
}
|
|
30049
|
-
.ant-
|
|
30275
|
+
.ant-hash-code-contant {
|
|
30050
30276
|
width: 100%;
|
|
30051
30277
|
height: 100%;
|
|
30052
30278
|
}
|
|
30053
|
-
.ant-
|
|
30279
|
+
.ant-hash-code-code-value {
|
|
30054
30280
|
display: flex;
|
|
30055
30281
|
flex-wrap: wrap;
|
|
30056
30282
|
gap: 0 10px;
|
|
@@ -30058,33 +30284,33 @@ nz-space-item {
|
|
|
30058
30284
|
height: 35px;
|
|
30059
30285
|
overflow: hidden;
|
|
30060
30286
|
}
|
|
30061
|
-
.ant-
|
|
30287
|
+
.ant-hash-code-code-value-block {
|
|
30062
30288
|
height: 16px;
|
|
30063
30289
|
font-size: 14px;
|
|
30064
30290
|
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
30065
30291
|
}
|
|
30066
|
-
.ant-
|
|
30292
|
+
.ant-hash-code-value-primary .ant-hash-code-code-value-block {
|
|
30067
30293
|
color: #fff;
|
|
30068
30294
|
}
|
|
30069
|
-
.ant-
|
|
30295
|
+
.ant-hash-code-texaure-double {
|
|
30070
30296
|
width: 175px;
|
|
30071
30297
|
height: 36px;
|
|
30072
30298
|
}
|
|
30073
|
-
.ant-
|
|
30299
|
+
.ant-hash-code-texaure {
|
|
30074
30300
|
position: absolute;
|
|
30075
30301
|
margin-top: -35px;
|
|
30076
30302
|
overflow: hidden;
|
|
30077
30303
|
}
|
|
30078
|
-
.ant-
|
|
30304
|
+
.ant-hash-code-texaure-single {
|
|
30079
30305
|
width: 210px;
|
|
30080
30306
|
height: 28px;
|
|
30081
30307
|
margin-top: -21px;
|
|
30082
30308
|
}
|
|
30083
|
-
.ant-
|
|
30309
|
+
.ant-hash-code-texaure-strip {
|
|
30084
30310
|
width: 350px;
|
|
30085
30311
|
height: 36px;
|
|
30086
30312
|
}
|
|
30087
|
-
.ant-
|
|
30313
|
+
.ant-hash-code-texaure-rect {
|
|
30088
30314
|
width: 175px;
|
|
30089
30315
|
height: 72px;
|
|
30090
30316
|
margin-top: -71px;
|
|
@@ -30291,6 +30517,181 @@ nz-space-item {
|
|
|
30291
30517
|
width: 32px;
|
|
30292
30518
|
height: 32px;
|
|
30293
30519
|
}
|
|
30520
|
+
.ant-check-list {
|
|
30521
|
+
position: fixed;
|
|
30522
|
+
right: 32px;
|
|
30523
|
+
bottom: 32px;
|
|
30524
|
+
z-index: 999;
|
|
30525
|
+
font-size: 14px;
|
|
30526
|
+
cursor: pointer;
|
|
30527
|
+
}
|
|
30528
|
+
.ant-check-list .ant-check-list-button {
|
|
30529
|
+
display: flex;
|
|
30530
|
+
gap: 8px;
|
|
30531
|
+
align-items: center;
|
|
30532
|
+
justify-content: center;
|
|
30533
|
+
min-width: 110px;
|
|
30534
|
+
height: 40px;
|
|
30535
|
+
border-radius: 20px;
|
|
30536
|
+
}
|
|
30537
|
+
.ant-check-list .ant-check-list-icon {
|
|
30538
|
+
font-size: 24px;
|
|
30539
|
+
line-height: 24px;
|
|
30540
|
+
}
|
|
30541
|
+
.ant-check-list .ant-check-list-description {
|
|
30542
|
+
font-size: 14px;
|
|
30543
|
+
}
|
|
30544
|
+
.ant-check-list-content {
|
|
30545
|
+
display: block;
|
|
30546
|
+
width: 303px;
|
|
30547
|
+
}
|
|
30548
|
+
.ant-check-list-content .ant-check-list-header {
|
|
30549
|
+
display: flex;
|
|
30550
|
+
align-items: center;
|
|
30551
|
+
justify-content: space-between;
|
|
30552
|
+
padding: 12px 12px 16px;
|
|
30553
|
+
}
|
|
30554
|
+
.ant-check-list-content .ant-check-list-header .ant-check-list-header-title {
|
|
30555
|
+
font-weight: 500;
|
|
30556
|
+
font-size: 20px;
|
|
30557
|
+
}
|
|
30558
|
+
.ant-check-list-content .ant-check-list-header .ant-check-list-header-extra {
|
|
30559
|
+
cursor: pointer;
|
|
30560
|
+
}
|
|
30561
|
+
.ant-check-list-content .ant-check-list-header-finish {
|
|
30562
|
+
width: 304px;
|
|
30563
|
+
padding-top: 12px;
|
|
30564
|
+
text-align: center;
|
|
30565
|
+
}
|
|
30566
|
+
.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-icon {
|
|
30567
|
+
width: 64px;
|
|
30568
|
+
height: 64px;
|
|
30569
|
+
color: #1890ff;
|
|
30570
|
+
font-size: 64px;
|
|
30571
|
+
}
|
|
30572
|
+
.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-title {
|
|
30573
|
+
margin-top: 8px;
|
|
30574
|
+
margin-bottom: 8px;
|
|
30575
|
+
font-weight: 500;
|
|
30576
|
+
font-size: 16px;
|
|
30577
|
+
}
|
|
30578
|
+
.ant-check-list-content .ant-check-list-progressBar {
|
|
30579
|
+
display: flex;
|
|
30580
|
+
justify-content: space-between;
|
|
30581
|
+
margin: 12px 16px;
|
|
30582
|
+
margin-top: 0;
|
|
30583
|
+
}
|
|
30584
|
+
.ant-check-list-content .ant-check-list-progressBar .ant-check-list-progressBar-progress {
|
|
30585
|
+
flex: auto;
|
|
30586
|
+
}
|
|
30587
|
+
.ant-check-list-content .ant-check-list-steps-content {
|
|
30588
|
+
max-height: 250px;
|
|
30589
|
+
overflow-y: scroll;
|
|
30590
|
+
}
|
|
30591
|
+
.ant-check-list-content .ant-check-list-steps {
|
|
30592
|
+
display: flex;
|
|
30593
|
+
align-items: center;
|
|
30594
|
+
justify-content: space-between;
|
|
30595
|
+
height: 52px;
|
|
30596
|
+
padding-right: 12px;
|
|
30597
|
+
padding-left: 12px;
|
|
30598
|
+
border-radius: 6px;
|
|
30599
|
+
cursor: pointer;
|
|
30600
|
+
}
|
|
30601
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item {
|
|
30602
|
+
display: flex;
|
|
30603
|
+
gap: 12px;
|
|
30604
|
+
align-items: center;
|
|
30605
|
+
justify-content: center;
|
|
30606
|
+
width: calc(100% - 22px);
|
|
30607
|
+
font-weight: 400;
|
|
30608
|
+
}
|
|
30609
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle {
|
|
30610
|
+
display: flex;
|
|
30611
|
+
flex: 0 0 28px;
|
|
30612
|
+
align-items: center;
|
|
30613
|
+
justify-content: center;
|
|
30614
|
+
width: 28px;
|
|
30615
|
+
height: 28px;
|
|
30616
|
+
font-weight: 600;
|
|
30617
|
+
background-color: #fff;
|
|
30618
|
+
border: 1px solid #d9d9d9;
|
|
30619
|
+
border-radius: 50%;
|
|
30620
|
+
user-select: none;
|
|
30621
|
+
}
|
|
30622
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
|
|
30623
|
+
color: #1890ff;
|
|
30624
|
+
font-size: 16px;
|
|
30625
|
+
}
|
|
30626
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-checkoutlined {
|
|
30627
|
+
color: #fff;
|
|
30628
|
+
font-size: 14px;
|
|
30629
|
+
}
|
|
30630
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-description {
|
|
30631
|
+
flex: 1;
|
|
30632
|
+
overflow: hidden;
|
|
30633
|
+
line-height: 2;
|
|
30634
|
+
white-space: nowrap;
|
|
30635
|
+
text-overflow: ellipsis;
|
|
30636
|
+
}
|
|
30637
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item-arrows {
|
|
30638
|
+
flex: 0 0 22px;
|
|
30639
|
+
width: 38px;
|
|
30640
|
+
height: 38px;
|
|
30641
|
+
color: #1890ff;
|
|
30642
|
+
font-size: 22px;
|
|
30643
|
+
}
|
|
30644
|
+
.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-circle {
|
|
30645
|
+
background-color: #1890ff;
|
|
30646
|
+
border: none;
|
|
30647
|
+
}
|
|
30648
|
+
.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-description {
|
|
30649
|
+
font-weight: 500;
|
|
30650
|
+
text-decoration: line-through;
|
|
30651
|
+
text-decoration-thickness: 2px;
|
|
30652
|
+
text-decoration-color: rgba(0, 0, 0, 0.85);
|
|
30653
|
+
opacity: 0.85;
|
|
30654
|
+
}
|
|
30655
|
+
.ant-check-list-content .ant-check-list-highlight {
|
|
30656
|
+
background-color: #e6f7ff;
|
|
30657
|
+
}
|
|
30658
|
+
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle {
|
|
30659
|
+
border: 1px solid #1890ff;
|
|
30660
|
+
}
|
|
30661
|
+
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
|
|
30662
|
+
color: #1890ff;
|
|
30663
|
+
}
|
|
30664
|
+
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-description {
|
|
30665
|
+
font-weight: 600;
|
|
30666
|
+
}
|
|
30667
|
+
.ant-check-list-content .ant-check-list-footer {
|
|
30668
|
+
padding: 12px 12px 0;
|
|
30669
|
+
color: rgba(0, 0, 0, 0.45);
|
|
30670
|
+
font-size: 14px;
|
|
30671
|
+
text-decoration: underline;
|
|
30672
|
+
cursor: pointer;
|
|
30673
|
+
}
|
|
30674
|
+
.ant-check-list-content .ant-check-list-close-check {
|
|
30675
|
+
display: flex;
|
|
30676
|
+
flex-direction: column;
|
|
30677
|
+
padding: 12px;
|
|
30678
|
+
}
|
|
30679
|
+
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-title {
|
|
30680
|
+
margin-bottom: 24px;
|
|
30681
|
+
font-weight: 500;
|
|
30682
|
+
font-size: 16px;
|
|
30683
|
+
}
|
|
30684
|
+
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-action {
|
|
30685
|
+
display: flex;
|
|
30686
|
+
flex-direction: row;
|
|
30687
|
+
gap: 8px;
|
|
30688
|
+
margin-bottom: 16px;
|
|
30689
|
+
}
|
|
30690
|
+
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-other {
|
|
30691
|
+
color: rgba(0, 0, 0, 0.45);
|
|
30692
|
+
font-size: 14px;
|
|
30693
|
+
cursor: pointer;
|
|
30694
|
+
}
|
|
30294
30695
|
/** system */
|
|
30295
30696
|
sf + st {
|
|
30296
30697
|
margin-top: 16px;
|
|
@@ -30476,10 +30877,10 @@ a:focus {
|
|
|
30476
30877
|
left: 0;
|
|
30477
30878
|
width: 100%;
|
|
30478
30879
|
padding: 10px 24px;
|
|
30479
|
-
text-align: right;
|
|
30480
|
-
background: #fff;
|
|
30481
30880
|
border-top: 1px solid #f0f0f0;
|
|
30482
30881
|
border-radius: 0 0 2px 2px;
|
|
30882
|
+
text-align: right;
|
|
30883
|
+
background: #fff;
|
|
30483
30884
|
}
|
|
30484
30885
|
.ant-form-item-label em {
|
|
30485
30886
|
color: #bfbfbf;
|
|
@@ -30535,9 +30936,9 @@ a:focus {
|
|
|
30535
30936
|
justify-content: space-between;
|
|
30536
30937
|
margin: -24px -24px 24px -24px;
|
|
30537
30938
|
padding: 16px 24px;
|
|
30538
|
-
background: #fff;
|
|
30539
30939
|
border-bottom: 1px solid #f0f0f0;
|
|
30540
30940
|
border-radius: 2px 2px 0 0;
|
|
30941
|
+
background: #fff;
|
|
30541
30942
|
}
|
|
30542
30943
|
.modal-title {
|
|
30543
30944
|
/**
|
|
@@ -30576,9 +30977,9 @@ a:focus {
|
|
|
30576
30977
|
*/
|
|
30577
30978
|
margin: 24px -24px -24px -24px;
|
|
30578
30979
|
padding: 10px 16px;
|
|
30579
|
-
text-align: right;
|
|
30580
30980
|
border-top: 1px solid #f0f0f0;
|
|
30581
30981
|
border-radius: 0 0 2px 2px;
|
|
30982
|
+
text-align: right;
|
|
30582
30983
|
}
|
|
30583
30984
|
.modal-include-tabs {
|
|
30584
30985
|
/**
|
|
@@ -30607,8 +31008,8 @@ a:focus {
|
|
|
30607
31008
|
.ant-table td .img {
|
|
30608
31009
|
max-width: 32px;
|
|
30609
31010
|
max-height: 32px;
|
|
30610
|
-
vertical-align: middle;
|
|
30611
31011
|
border-radius: 4px;
|
|
31012
|
+
vertical-align: middle;
|
|
30612
31013
|
}
|
|
30613
31014
|
.ant-table td > img:not(:last-child),
|
|
30614
31015
|
.ant-table td .img:not(:last-child) {
|
|
@@ -30661,9 +31062,9 @@ a:focus {
|
|
|
30661
31062
|
align-items: center;
|
|
30662
31063
|
width: 100%;
|
|
30663
31064
|
padding: 8px 8px;
|
|
31065
|
+
border-bottom: none;
|
|
30664
31066
|
text-align: left !important;
|
|
30665
31067
|
white-space: inherit;
|
|
30666
|
-
border-bottom: none;
|
|
30667
31068
|
}
|
|
30668
31069
|
.ant-table-rep .ant-table-tbody > tr > td .ant-table-rep__title + *:not(.ant-avatar) {
|
|
30669
31070
|
flex: 1;
|
|
@@ -30678,8 +31079,8 @@ a:focus {
|
|
|
30678
31079
|
*/
|
|
30679
31080
|
}
|
|
30680
31081
|
.ant-tag__plus .ant-tag {
|
|
30681
|
-
background: #fff;
|
|
30682
31082
|
border-style: dashed;
|
|
31083
|
+
background: #fff;
|
|
30683
31084
|
}
|
|
30684
31085
|
/**
|
|
30685
31086
|
* Corrected `ng-tag` list line wrapping spacing
|
|
@@ -31043,8 +31444,8 @@ fieldset {
|
|
|
31043
31444
|
}
|
|
31044
31445
|
}
|
|
31045
31446
|
.header-dropdown {
|
|
31046
|
-
background-color: #fff;
|
|
31047
31447
|
border-radius: 4px;
|
|
31448
|
+
background-color: #fff;
|
|
31048
31449
|
box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
|
|
31049
31450
|
}
|
|
31050
31451
|
@media screen and (max-width: 480px) {
|
|
@@ -31103,11 +31504,11 @@ fieldset {
|
|
|
31103
31504
|
display: none;
|
|
31104
31505
|
width: 32px;
|
|
31105
31506
|
height: 32px;
|
|
31507
|
+
border-radius: 50%;
|
|
31106
31508
|
font-size: 20px;
|
|
31107
31509
|
line-height: 32px;
|
|
31108
31510
|
text-align: center;
|
|
31109
31511
|
background: rgba(0, 0, 0, 0.26);
|
|
31110
|
-
border-radius: 50%;
|
|
31111
31512
|
}
|
|
31112
31513
|
.sf__array-container .ant-card .sf__array-remove i {
|
|
31113
31514
|
color: #fff;
|
|
@@ -31268,10 +31669,10 @@ fieldset {
|
|
|
31268
31669
|
width: 20px;
|
|
31269
31670
|
height: 20px;
|
|
31270
31671
|
margin-right: 8px;
|
|
31672
|
+
border-radius: 2px;
|
|
31271
31673
|
font-weight: bold;
|
|
31272
31674
|
color: #fff;
|
|
31273
31675
|
text-align: center;
|
|
31274
|
-
border-radius: 2px;
|
|
31275
31676
|
}
|
|
31276
31677
|
.setting-drawer__handle {
|
|
31277
31678
|
pointer-events: auto;
|
|
@@ -31285,10 +31686,10 @@ fieldset {
|
|
|
31285
31686
|
justify-content: center;
|
|
31286
31687
|
width: 48px;
|
|
31287
31688
|
height: 48px;
|
|
31689
|
+
border-radius: 4px 0 0 4px;
|
|
31288
31690
|
font-size: 16px;
|
|
31289
31691
|
text-align: center;
|
|
31290
31692
|
background: #1890ff;
|
|
31291
|
-
border-radius: 4px 0 0 4px;
|
|
31292
31693
|
transition: right 0.3s cubic-bezier(0.9, 0, 0.3, 0.7);
|
|
31293
31694
|
}
|
|
31294
31695
|
.setting-drawer__handle-icon {
|
|
@@ -31722,10 +32123,10 @@ fieldset {
|
|
|
31722
32123
|
code {
|
|
31723
32124
|
margin: 0 4px;
|
|
31724
32125
|
padding: 2px 4px;
|
|
31725
|
-
font-size: 90%;
|
|
31726
|
-
background-color: #fafafa;
|
|
31727
32126
|
border: 1px solid #d9d9d9;
|
|
31728
32127
|
border-radius: 2px;
|
|
32128
|
+
font-size: 90%;
|
|
32129
|
+
background-color: #fafafa;
|
|
31729
32130
|
}
|
|
31730
32131
|
/**
|
|
31731
32132
|
* Set the background to white
|
|
@@ -34120,8 +34521,8 @@ textarea.ant-input::-webkit-scrollbar-thumb {
|
|
|
34120
34521
|
* 隐藏滚动条
|
|
34121
34522
|
*/
|
|
34122
34523
|
.hide-scrollbar {
|
|
34123
|
-
scrollbar-width: none;
|
|
34124
34524
|
scrollbar-color: transparent transparent;
|
|
34525
|
+
scrollbar-width: none;
|
|
34125
34526
|
}
|
|
34126
34527
|
.hide-scrollbar::-webkit-scrollbar {
|
|
34127
34528
|
width: 1px;
|
|
@@ -34177,9 +34578,9 @@ body {
|
|
|
34177
34578
|
padding: 24px;
|
|
34178
34579
|
padding-top: 12px;
|
|
34179
34580
|
padding-bottom: 12px;
|
|
34581
|
+
border-bottom: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
34180
34582
|
color: #929292;
|
|
34181
34583
|
background-color: var(--alain-default-heading-bg, #fafbfc);
|
|
34182
|
-
border-bottom: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
34183
34584
|
}
|
|
34184
34585
|
.alain-default__content-title > h1 {
|
|
34185
34586
|
margin-bottom: 0;
|
|
@@ -34284,9 +34685,9 @@ body {
|
|
|
34284
34685
|
display: block;
|
|
34285
34686
|
min-width: 50px;
|
|
34286
34687
|
padding: 8px 2px;
|
|
34688
|
+
border-radius: 2px;
|
|
34287
34689
|
line-height: 100%;
|
|
34288
34690
|
text-align: center;
|
|
34289
|
-
border-radius: 2px;
|
|
34290
34691
|
outline: none;
|
|
34291
34692
|
transition: background-color 300ms;
|
|
34292
34693
|
}
|
|
@@ -34330,9 +34731,9 @@ body {
|
|
|
34330
34731
|
.alain-default__search .ant-input,
|
|
34331
34732
|
.alain-default__search .ant-input-group-addon,
|
|
34332
34733
|
.alain-default__search .ant-input-affix-wrapper {
|
|
34333
|
-
color: #fff;
|
|
34334
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
34335
34734
|
border: none;
|
|
34735
|
+
color: #fff;
|
|
34736
|
+
background-color: #ffffff;
|
|
34336
34737
|
}
|
|
34337
34738
|
.alain-default__search .ant-input::placeholder,
|
|
34338
34739
|
.alain-default__search .ant-input-group-addon::placeholder,
|
|
@@ -34590,8 +34991,8 @@ body {
|
|
|
34590
34991
|
color: rgba(0, 0, 0, 0.85);
|
|
34591
34992
|
}
|
|
34592
34993
|
.sidebar-nav__selected {
|
|
34593
|
-
background-color: var(--alain-default-aside-nav-selected-bg, #fcfcfc);
|
|
34594
34994
|
border-left-color: #1890ff;
|
|
34995
|
+
background-color: var(--alain-default-aside-nav-selected-bg, #fcfcfc);
|
|
34595
34996
|
}
|
|
34596
34997
|
.sidebar-nav__selected > .sidebar-nav__item-link {
|
|
34597
34998
|
color: #1890ff;
|
|
@@ -34633,9 +35034,9 @@ body {
|
|
|
34633
35034
|
position: absolute;
|
|
34634
35035
|
width: 6px;
|
|
34635
35036
|
height: 1.5px;
|
|
35037
|
+
border-radius: 2px;
|
|
34636
35038
|
background: #fff;
|
|
34637
35039
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
|
|
34638
|
-
border-radius: 2px;
|
|
34639
35040
|
transition: background-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
34640
35041
|
}
|
|
34641
35042
|
.sidebar-nav__sub-arrow::before {
|
|
@@ -34673,9 +35074,9 @@ body {
|
|
|
34673
35074
|
z-index: 16;
|
|
34674
35075
|
display: none;
|
|
34675
35076
|
min-width: 160px;
|
|
34676
|
-
background-color: var(--alain-default-aside-bg, #fff);
|
|
34677
35077
|
border: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
34678
35078
|
border-radius: 4px;
|
|
35079
|
+
background-color: var(--alain-default-aside-bg, #fff);
|
|
34679
35080
|
}
|
|
34680
35081
|
.sidebar-nav__floating .sidebar-nav__item-link {
|
|
34681
35082
|
padding-left: 16px;
|
|
@@ -34833,8 +35234,8 @@ body {
|
|
|
34833
35234
|
.app-icons .ant-col-6 {
|
|
34834
35235
|
cursor: pointer;
|
|
34835
35236
|
padding: 16px 0;
|
|
34836
|
-
text-align: center;
|
|
34837
35237
|
border-radius: 4px;
|
|
35238
|
+
text-align: center;
|
|
34838
35239
|
transition: background-color 300ms;
|
|
34839
35240
|
}
|
|
34840
35241
|
.app-icons .ant-col-6:hover {
|
|
@@ -34842,8 +35243,8 @@ body {
|
|
|
34842
35243
|
}
|
|
34843
35244
|
.app-icons i {
|
|
34844
35245
|
padding: 15px;
|
|
34845
|
-
font-size: 22px;
|
|
34846
35246
|
border-radius: 50%;
|
|
35247
|
+
font-size: 22px;
|
|
34847
35248
|
}
|
|
34848
35249
|
.app-icons small {
|
|
34849
35250
|
display: block;
|
|
@@ -34937,9 +35338,9 @@ body {
|
|
|
34937
35338
|
width: 100%;
|
|
34938
35339
|
}
|
|
34939
35340
|
.st__btn-sub .st__btn-text {
|
|
35341
|
+
display: block;
|
|
34940
35342
|
width: 100%;
|
|
34941
35343
|
color: inherit;
|
|
34942
|
-
display: block;
|
|
34943
35344
|
}
|
|
34944
35345
|
.st__btn-disabled .st__btn-text {
|
|
34945
35346
|
pointer-events: none;
|
|
@@ -35194,8 +35595,8 @@ body {
|
|
|
35194
35595
|
border-bottom: 1px solid #f0f0f0;
|
|
35195
35596
|
}
|
|
35196
35597
|
.sv__bordered .sv__label {
|
|
35197
|
-
background-color: #fafafa;
|
|
35198
35598
|
border-right: 1px solid #f0f0f0;
|
|
35599
|
+
background-color: #fafafa;
|
|
35199
35600
|
}
|
|
35200
35601
|
.sv__bordered .sv__label,
|
|
35201
35602
|
.sv__bordered .sv__detail {
|
|
@@ -35512,9 +35913,9 @@ ellipsis {
|
|
|
35512
35913
|
width: 100%;
|
|
35513
35914
|
height: 56px;
|
|
35514
35915
|
padding: 0 24px;
|
|
35916
|
+
border-top: 1px solid #f0f0f0;
|
|
35515
35917
|
line-height: 56px;
|
|
35516
35918
|
background: #fff;
|
|
35517
|
-
border-top: 1px solid #f0f0f0;
|
|
35518
35919
|
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03);
|
|
35519
35920
|
transition: all 0.3s;
|
|
35520
35921
|
}
|
|
@@ -35618,11 +36019,11 @@ ellipsis {
|
|
|
35618
36019
|
.notice-icon__clear {
|
|
35619
36020
|
cursor: pointer;
|
|
35620
36021
|
height: 46px;
|
|
36022
|
+
border-top: 1px solid #f0f0f0;
|
|
36023
|
+
border-radius: 0 0 2px 2px;
|
|
35621
36024
|
line-height: 46px;
|
|
35622
36025
|
color: rgba(0, 0, 0, 0.85);
|
|
35623
36026
|
text-align: center;
|
|
35624
|
-
border-top: 1px solid #f0f0f0;
|
|
35625
|
-
border-radius: 0 0 2px 2px;
|
|
35626
36027
|
transition: all 0.3s;
|
|
35627
36028
|
}
|
|
35628
36029
|
.notice-icon__clear:hover {
|
|
@@ -35656,8 +36057,8 @@ ellipsis {
|
|
|
35656
36057
|
.page-header {
|
|
35657
36058
|
display: block;
|
|
35658
36059
|
padding: 24px;
|
|
35659
|
-
background-color: #fff;
|
|
35660
36060
|
border-bottom: 1px solid #f0f0f0;
|
|
36061
|
+
background-color: #fff;
|
|
35661
36062
|
}
|
|
35662
36063
|
.page-header__wide {
|
|
35663
36064
|
max-width: 1200px;
|
|
@@ -35816,8 +36217,8 @@ ellipsis {
|
|
|
35816
36217
|
}
|
|
35817
36218
|
.quick-menu,
|
|
35818
36219
|
.quick-menu__ctrl {
|
|
35819
|
-
background-color: #fff;
|
|
35820
36220
|
border: 1px solid #fff;
|
|
36221
|
+
background-color: #fff;
|
|
35821
36222
|
box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.08), 0 9px 28px 0 rgba(0, 0, 0, 0.05), 0 12px 48px 16px rgba(0, 0, 0, 0.03);
|
|
35822
36223
|
}
|
|
35823
36224
|
.quick-menu__inner {
|
|
@@ -35831,9 +36232,9 @@ ellipsis {
|
|
|
35831
36232
|
left: -50px;
|
|
35832
36233
|
width: 50px;
|
|
35833
36234
|
height: 50px;
|
|
35834
|
-
text-align: center;
|
|
35835
36235
|
border-right: 0;
|
|
35836
36236
|
border-radius: 3px 0 0 3px;
|
|
36237
|
+
text-align: center;
|
|
35837
36238
|
}
|
|
35838
36239
|
.quick-menu__ctrl-icon {
|
|
35839
36240
|
font-size: 20px;
|
|
@@ -35871,9 +36272,9 @@ ellipsis {
|
|
|
35871
36272
|
}
|
|
35872
36273
|
.result__extra {
|
|
35873
36274
|
padding: 24px 40px;
|
|
36275
|
+
border-radius: 2px;
|
|
35874
36276
|
text-align: left;
|
|
35875
36277
|
background: #fafafa;
|
|
35876
|
-
border-radius: 2px;
|
|
35877
36278
|
}
|
|
35878
36279
|
@media screen and (max-width: 480px) {
|
|
35879
36280
|
.result__extra {
|
|
@@ -36130,8 +36531,8 @@ ellipsis {
|
|
|
36130
36531
|
margin-right: 4px;
|
|
36131
36532
|
}
|
|
36132
36533
|
.cell .img {
|
|
36133
|
-
vertical-align: middle;
|
|
36134
36534
|
border-radius: 4px;
|
|
36535
|
+
vertical-align: middle;
|
|
36135
36536
|
}
|
|
36136
36537
|
.cell .unit {
|
|
36137
36538
|
margin-left: 2px;
|
|
@@ -36236,8 +36637,8 @@ g2-tag-cloud {
|
|
|
36236
36637
|
.g2-mini-progress__value {
|
|
36237
36638
|
width: 0;
|
|
36238
36639
|
height: 100%;
|
|
36239
|
-
background-color: #1890ff;
|
|
36240
36640
|
border-radius: 1px 0 0 1px;
|
|
36641
|
+
background-color: #1890ff;
|
|
36241
36642
|
transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
|
|
36242
36643
|
}
|
|
36243
36644
|
.g2-mini-progress__target {
|