@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/variable.css
CHANGED
|
@@ -22939,6 +22939,229 @@ span.ant-radio + * {
|
|
|
22939
22939
|
nz-spin {
|
|
22940
22940
|
display: block;
|
|
22941
22941
|
}
|
|
22942
|
+
.ant-splitter {
|
|
22943
|
+
font-variant: tabular-nums;
|
|
22944
|
+
font-feature-settings: 'tnum';
|
|
22945
|
+
display: flex;
|
|
22946
|
+
align-items: stretch;
|
|
22947
|
+
box-sizing: border-box;
|
|
22948
|
+
width: 100%;
|
|
22949
|
+
height: 100%;
|
|
22950
|
+
margin: 0;
|
|
22951
|
+
padding: 0;
|
|
22952
|
+
color: rgba(0, 0, 0, 0.85);
|
|
22953
|
+
font-size: 14px;
|
|
22954
|
+
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';
|
|
22955
|
+
line-height: 1.5715;
|
|
22956
|
+
list-style: none;
|
|
22957
|
+
}
|
|
22958
|
+
.ant-splitter-horizontal {
|
|
22959
|
+
flex-direction: row;
|
|
22960
|
+
}
|
|
22961
|
+
.ant-splitter-vertical {
|
|
22962
|
+
flex-direction: column;
|
|
22963
|
+
}
|
|
22964
|
+
.ant-splitter-panel {
|
|
22965
|
+
box-sizing: border-box;
|
|
22966
|
+
padding: 0 1px;
|
|
22967
|
+
overflow: auto;
|
|
22968
|
+
scrollbar-width: thin;
|
|
22969
|
+
}
|
|
22970
|
+
.ant-splitter-panel-hidden {
|
|
22971
|
+
padding: 0;
|
|
22972
|
+
overflow: hidden;
|
|
22973
|
+
}
|
|
22974
|
+
.ant-splitter-panel:has(.ant-splitter:only-child) {
|
|
22975
|
+
overflow: hidden;
|
|
22976
|
+
}
|
|
22977
|
+
.ant-splitter-bar {
|
|
22978
|
+
position: relative;
|
|
22979
|
+
flex: none;
|
|
22980
|
+
user-select: none;
|
|
22981
|
+
}
|
|
22982
|
+
.ant-splitter-bar-preview {
|
|
22983
|
+
position: absolute;
|
|
22984
|
+
z-index: 1;
|
|
22985
|
+
display: none;
|
|
22986
|
+
background: var(--ant-primary-color);
|
|
22987
|
+
opacity: 0.2;
|
|
22988
|
+
transition: none;
|
|
22989
|
+
pointer-events: none;
|
|
22990
|
+
}
|
|
22991
|
+
.ant-splitter-bar-preview-active {
|
|
22992
|
+
display: block;
|
|
22993
|
+
}
|
|
22994
|
+
.ant-splitter-bar-dragger {
|
|
22995
|
+
position: absolute;
|
|
22996
|
+
top: 50%;
|
|
22997
|
+
left: 50%;
|
|
22998
|
+
z-index: 1;
|
|
22999
|
+
transform: translate(-50%, -50%);
|
|
23000
|
+
}
|
|
23001
|
+
.ant-splitter-bar-dragger::before {
|
|
23002
|
+
position: absolute;
|
|
23003
|
+
top: 50%;
|
|
23004
|
+
left: 50%;
|
|
23005
|
+
background: rgba(0, 0, 0, 0.04);
|
|
23006
|
+
transform: translate(-50%, -50%);
|
|
23007
|
+
content: '';
|
|
23008
|
+
}
|
|
23009
|
+
.ant-splitter-bar-dragger:hover:not(.ant-splitter-bar-dragger-active)::before {
|
|
23010
|
+
background: #e6f4ff;
|
|
23011
|
+
}
|
|
23012
|
+
.ant-splitter-bar-dragger::after {
|
|
23013
|
+
position: absolute;
|
|
23014
|
+
top: 50%;
|
|
23015
|
+
left: 50%;
|
|
23016
|
+
background: rgba(0, 0, 0, 0.15);
|
|
23017
|
+
transform: translate(-50%, -50%);
|
|
23018
|
+
content: '';
|
|
23019
|
+
}
|
|
23020
|
+
.ant-splitter-bar-dragger-active {
|
|
23021
|
+
z-index: 2;
|
|
23022
|
+
}
|
|
23023
|
+
.ant-splitter-bar-dragger-active::before {
|
|
23024
|
+
background: #bae0ff;
|
|
23025
|
+
}
|
|
23026
|
+
.ant-splitter-bar:hover .ant-splitter-bar-collapse-bar,
|
|
23027
|
+
.ant-splitter-bar:active .ant-splitter-bar-collapse-bar {
|
|
23028
|
+
opacity: 1;
|
|
23029
|
+
}
|
|
23030
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled {
|
|
23031
|
+
z-index: 0;
|
|
23032
|
+
}
|
|
23033
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled,
|
|
23034
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled:hover,
|
|
23035
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled-active {
|
|
23036
|
+
cursor: default;
|
|
23037
|
+
}
|
|
23038
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled::before,
|
|
23039
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled:hover::before,
|
|
23040
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled-active::before {
|
|
23041
|
+
background: rgba(0, 0, 0, 0.04);
|
|
23042
|
+
}
|
|
23043
|
+
.ant-splitter > .ant-splitter-bar > .ant-splitter-bar-dragger.ant-splitter-bar-dragger-disabled::after {
|
|
23044
|
+
display: none;
|
|
23045
|
+
}
|
|
23046
|
+
.ant-splitter-bar-collapse-bar {
|
|
23047
|
+
position: absolute;
|
|
23048
|
+
top: 50%;
|
|
23049
|
+
left: 50%;
|
|
23050
|
+
z-index: 1000;
|
|
23051
|
+
display: flex;
|
|
23052
|
+
align-items: center;
|
|
23053
|
+
justify-content: center;
|
|
23054
|
+
color: rgba(0, 0, 0, 0.85);
|
|
23055
|
+
font-size: 12px;
|
|
23056
|
+
background: rgba(0, 0, 0, 0.04);
|
|
23057
|
+
border-radius: 2px;
|
|
23058
|
+
transform: translate(-50%, -50%);
|
|
23059
|
+
cursor: pointer;
|
|
23060
|
+
opacity: 0;
|
|
23061
|
+
}
|
|
23062
|
+
.ant-splitter-bar-collapse-bar:hover {
|
|
23063
|
+
background: #e6f4ff;
|
|
23064
|
+
}
|
|
23065
|
+
.ant-splitter-bar-collapse-bar:active {
|
|
23066
|
+
background: #bae0ff;
|
|
23067
|
+
}
|
|
23068
|
+
.ant-splitter-horizontal > .ant-splitter-bar {
|
|
23069
|
+
width: 0;
|
|
23070
|
+
}
|
|
23071
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-dragger {
|
|
23072
|
+
width: 6px;
|
|
23073
|
+
height: 100%;
|
|
23074
|
+
cursor: col-resize;
|
|
23075
|
+
}
|
|
23076
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-dragger::before {
|
|
23077
|
+
width: 2px;
|
|
23078
|
+
height: 100%;
|
|
23079
|
+
}
|
|
23080
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-dragger::after {
|
|
23081
|
+
width: 2px;
|
|
23082
|
+
height: 20px;
|
|
23083
|
+
}
|
|
23084
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-preview {
|
|
23085
|
+
width: 2px;
|
|
23086
|
+
height: 100%;
|
|
23087
|
+
}
|
|
23088
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-collapse-bar {
|
|
23089
|
+
width: 12px;
|
|
23090
|
+
height: 24px;
|
|
23091
|
+
}
|
|
23092
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-collapse-bar-start {
|
|
23093
|
+
right: calc(6px / 2);
|
|
23094
|
+
left: auto;
|
|
23095
|
+
transform: translateY(-50%);
|
|
23096
|
+
}
|
|
23097
|
+
.ant-splitter-horizontal > .ant-splitter-bar .ant-splitter-bar-collapse-bar-end {
|
|
23098
|
+
right: auto;
|
|
23099
|
+
left: calc(6px / 2);
|
|
23100
|
+
transform: translateY(-50%);
|
|
23101
|
+
}
|
|
23102
|
+
.ant-splitter-vertical > .ant-splitter-bar {
|
|
23103
|
+
height: 0;
|
|
23104
|
+
}
|
|
23105
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger {
|
|
23106
|
+
width: 100%;
|
|
23107
|
+
height: 6px;
|
|
23108
|
+
cursor: row-resize;
|
|
23109
|
+
}
|
|
23110
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger:has(.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger-disabled) {
|
|
23111
|
+
cursor: default;
|
|
23112
|
+
}
|
|
23113
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger::before {
|
|
23114
|
+
width: 100%;
|
|
23115
|
+
height: 2px;
|
|
23116
|
+
}
|
|
23117
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-dragger::after {
|
|
23118
|
+
width: 20px;
|
|
23119
|
+
height: 2px;
|
|
23120
|
+
}
|
|
23121
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-preview {
|
|
23122
|
+
width: 100%;
|
|
23123
|
+
height: 2px;
|
|
23124
|
+
}
|
|
23125
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-collapse-bar {
|
|
23126
|
+
width: 24px;
|
|
23127
|
+
height: 12px;
|
|
23128
|
+
}
|
|
23129
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-collapse-bar-start {
|
|
23130
|
+
top: auto;
|
|
23131
|
+
bottom: calc(6px / 2);
|
|
23132
|
+
transform: translateX(-50%);
|
|
23133
|
+
}
|
|
23134
|
+
.ant-splitter-vertical > .ant-splitter-bar .ant-splitter-bar-collapse-bar-end {
|
|
23135
|
+
top: calc(6px / 2);
|
|
23136
|
+
bottom: auto;
|
|
23137
|
+
transform: translateX(-50%);
|
|
23138
|
+
}
|
|
23139
|
+
.ant-splitter-mask {
|
|
23140
|
+
position: fixed;
|
|
23141
|
+
z-index: 1000;
|
|
23142
|
+
inset: 0;
|
|
23143
|
+
}
|
|
23144
|
+
.ant-splitter-mask-horizontal {
|
|
23145
|
+
cursor: col-resize;
|
|
23146
|
+
}
|
|
23147
|
+
.ant-splitter-mask-vertical {
|
|
23148
|
+
cursor: row-resize;
|
|
23149
|
+
}
|
|
23150
|
+
.ant-splitter-rtl {
|
|
23151
|
+
direction: rtl;
|
|
23152
|
+
}
|
|
23153
|
+
.ant-splitter-rtl .ant-splitter-dot-spin {
|
|
23154
|
+
transform: rotate(-45deg);
|
|
23155
|
+
animation-name: antRotateRtl;
|
|
23156
|
+
}
|
|
23157
|
+
@keyframes antRotateRtl {
|
|
23158
|
+
to {
|
|
23159
|
+
transform: rotate(-405deg);
|
|
23160
|
+
}
|
|
23161
|
+
}
|
|
23162
|
+
nz-splitter {
|
|
23163
|
+
display: block;
|
|
23164
|
+
}
|
|
22942
23165
|
.ant-statistic {
|
|
22943
23166
|
box-sizing: border-box;
|
|
22944
23167
|
margin: 0;
|
|
@@ -29154,6 +29377,9 @@ nz-tree {
|
|
|
29154
29377
|
margin-bottom: 4px;
|
|
29155
29378
|
overflow: auto;
|
|
29156
29379
|
}
|
|
29380
|
+
.ant-select-dropdown.ant-select-tree-dropdown .cdk-virtual-scroll-content-wrapper {
|
|
29381
|
+
overflow: auto;
|
|
29382
|
+
}
|
|
29157
29383
|
.ant-picker-calendar {
|
|
29158
29384
|
box-sizing: border-box;
|
|
29159
29385
|
margin: 0;
|
|
@@ -30072,7 +30298,7 @@ nz-space-item {
|
|
|
30072
30298
|
width: 16px;
|
|
30073
30299
|
height: 16px;
|
|
30074
30300
|
}
|
|
30075
|
-
.ant-
|
|
30301
|
+
.ant-hash-code {
|
|
30076
30302
|
display: flex;
|
|
30077
30303
|
flex-direction: column;
|
|
30078
30304
|
align-items: center;
|
|
@@ -30086,78 +30312,78 @@ nz-space-item {
|
|
|
30086
30312
|
list-style: none;
|
|
30087
30313
|
cursor: pointer;
|
|
30088
30314
|
}
|
|
30089
|
-
.ant-
|
|
30315
|
+
.ant-hash-code-header-copy {
|
|
30090
30316
|
margin-left: 8px;
|
|
30091
30317
|
cursor: pointer;
|
|
30092
30318
|
opacity: 0.45;
|
|
30093
30319
|
}
|
|
30094
|
-
.ant-
|
|
30320
|
+
.ant-hash-code-header {
|
|
30095
30321
|
display: flex;
|
|
30096
30322
|
justify-content: left;
|
|
30097
30323
|
width: 100%;
|
|
30098
30324
|
height: 22px;
|
|
30099
30325
|
padding-bottom: 8px;
|
|
30100
30326
|
}
|
|
30101
|
-
.ant-
|
|
30327
|
+
.ant-hash-code-header .ant-hash-code-header-title {
|
|
30102
30328
|
font-size: 14px;
|
|
30103
30329
|
line-height: 1.5715;
|
|
30104
30330
|
text-align: center;
|
|
30105
30331
|
opacity: 0.45;
|
|
30106
30332
|
}
|
|
30107
|
-
.ant-
|
|
30333
|
+
.ant-hash-code-header .ant-hash-code-header-logo {
|
|
30108
30334
|
display: flex;
|
|
30109
30335
|
flex: 1;
|
|
30110
30336
|
justify-content: right;
|
|
30111
30337
|
}
|
|
30112
|
-
.ant-
|
|
30338
|
+
.ant-hash-code-double {
|
|
30113
30339
|
width: 172px;
|
|
30114
30340
|
}
|
|
30115
|
-
.ant-
|
|
30341
|
+
.ant-hash-code-double.ant-hash-code-primary {
|
|
30116
30342
|
width: 220px;
|
|
30117
30343
|
}
|
|
30118
|
-
.ant-
|
|
30344
|
+
.ant-hash-code-single {
|
|
30119
30345
|
display: flex;
|
|
30120
30346
|
flex-direction: row-reverse;
|
|
30121
30347
|
width: 236px;
|
|
30122
30348
|
}
|
|
30123
|
-
.ant-
|
|
30349
|
+
.ant-hash-code-single.ant-hash-code-primary {
|
|
30124
30350
|
width: 284px;
|
|
30125
30351
|
}
|
|
30126
|
-
.ant-
|
|
30352
|
+
.ant-hash-code-single .ant-hash-code-header-copy {
|
|
30127
30353
|
margin-top: 8px;
|
|
30128
30354
|
}
|
|
30129
|
-
.ant-
|
|
30355
|
+
.ant-hash-code-strip {
|
|
30130
30356
|
width: 350px;
|
|
30131
30357
|
}
|
|
30132
|
-
.ant-
|
|
30358
|
+
.ant-hash-code-strip.ant-hash-code-primary {
|
|
30133
30359
|
width: 398px;
|
|
30134
30360
|
}
|
|
30135
|
-
.ant-
|
|
30361
|
+
.ant-hash-code-rect {
|
|
30136
30362
|
display: flex;
|
|
30137
30363
|
flex-direction: row-reverse;
|
|
30138
30364
|
width: 196px;
|
|
30139
30365
|
}
|
|
30140
|
-
.ant-
|
|
30366
|
+
.ant-hash-code-rect.ant-hash-code-primary {
|
|
30141
30367
|
width: 244px;
|
|
30142
30368
|
}
|
|
30143
|
-
.ant-
|
|
30369
|
+
.ant-hash-code-primary {
|
|
30144
30370
|
padding: 24px;
|
|
30145
30371
|
background-color: var(--ant-primary-color);
|
|
30146
30372
|
border-radius: 24px;
|
|
30147
30373
|
}
|
|
30148
|
-
.ant-
|
|
30374
|
+
.ant-hash-code-primary .ant-hash-code-header-copy {
|
|
30149
30375
|
opacity: 1;
|
|
30150
30376
|
}
|
|
30151
|
-
.ant-
|
|
30152
|
-
.ant-
|
|
30153
|
-
.ant-
|
|
30377
|
+
.ant-hash-code-primary .ant-hash-code-header-title,
|
|
30378
|
+
.ant-hash-code-primary .ant-hash-code-header-copy,
|
|
30379
|
+
.ant-hash-code-primary .ant-hash-code-header-logo {
|
|
30154
30380
|
color: rgba(255, 255, 255, 0.85);
|
|
30155
30381
|
}
|
|
30156
|
-
.ant-
|
|
30382
|
+
.ant-hash-code-contant {
|
|
30157
30383
|
width: 100%;
|
|
30158
30384
|
height: 100%;
|
|
30159
30385
|
}
|
|
30160
|
-
.ant-
|
|
30386
|
+
.ant-hash-code-code-value {
|
|
30161
30387
|
display: flex;
|
|
30162
30388
|
flex-wrap: wrap;
|
|
30163
30389
|
gap: 0 10px;
|
|
@@ -30165,33 +30391,33 @@ nz-space-item {
|
|
|
30165
30391
|
height: 35px;
|
|
30166
30392
|
overflow: hidden;
|
|
30167
30393
|
}
|
|
30168
|
-
.ant-
|
|
30394
|
+
.ant-hash-code-code-value-block {
|
|
30169
30395
|
height: 16px;
|
|
30170
30396
|
font-size: 14px;
|
|
30171
30397
|
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
30172
30398
|
}
|
|
30173
|
-
.ant-
|
|
30399
|
+
.ant-hash-code-value-primary .ant-hash-code-code-value-block {
|
|
30174
30400
|
color: #fff;
|
|
30175
30401
|
}
|
|
30176
|
-
.ant-
|
|
30402
|
+
.ant-hash-code-texaure-double {
|
|
30177
30403
|
width: 175px;
|
|
30178
30404
|
height: 36px;
|
|
30179
30405
|
}
|
|
30180
|
-
.ant-
|
|
30406
|
+
.ant-hash-code-texaure {
|
|
30181
30407
|
position: absolute;
|
|
30182
30408
|
margin-top: -35px;
|
|
30183
30409
|
overflow: hidden;
|
|
30184
30410
|
}
|
|
30185
|
-
.ant-
|
|
30411
|
+
.ant-hash-code-texaure-single {
|
|
30186
30412
|
width: 210px;
|
|
30187
30413
|
height: 28px;
|
|
30188
30414
|
margin-top: -21px;
|
|
30189
30415
|
}
|
|
30190
|
-
.ant-
|
|
30416
|
+
.ant-hash-code-texaure-strip {
|
|
30191
30417
|
width: 350px;
|
|
30192
30418
|
height: 36px;
|
|
30193
30419
|
}
|
|
30194
|
-
.ant-
|
|
30420
|
+
.ant-hash-code-texaure-rect {
|
|
30195
30421
|
width: 175px;
|
|
30196
30422
|
height: 72px;
|
|
30197
30423
|
margin-top: -71px;
|
|
@@ -30398,6 +30624,181 @@ nz-space-item {
|
|
|
30398
30624
|
width: 32px;
|
|
30399
30625
|
height: 32px;
|
|
30400
30626
|
}
|
|
30627
|
+
.ant-check-list {
|
|
30628
|
+
position: fixed;
|
|
30629
|
+
right: 32px;
|
|
30630
|
+
bottom: 32px;
|
|
30631
|
+
z-index: 999;
|
|
30632
|
+
font-size: 14px;
|
|
30633
|
+
cursor: pointer;
|
|
30634
|
+
}
|
|
30635
|
+
.ant-check-list .ant-check-list-button {
|
|
30636
|
+
display: flex;
|
|
30637
|
+
gap: 8px;
|
|
30638
|
+
align-items: center;
|
|
30639
|
+
justify-content: center;
|
|
30640
|
+
min-width: 110px;
|
|
30641
|
+
height: 40px;
|
|
30642
|
+
border-radius: 20px;
|
|
30643
|
+
}
|
|
30644
|
+
.ant-check-list .ant-check-list-icon {
|
|
30645
|
+
font-size: 24px;
|
|
30646
|
+
line-height: 24px;
|
|
30647
|
+
}
|
|
30648
|
+
.ant-check-list .ant-check-list-description {
|
|
30649
|
+
font-size: 14px;
|
|
30650
|
+
}
|
|
30651
|
+
.ant-check-list-content {
|
|
30652
|
+
display: block;
|
|
30653
|
+
width: 303px;
|
|
30654
|
+
}
|
|
30655
|
+
.ant-check-list-content .ant-check-list-header {
|
|
30656
|
+
display: flex;
|
|
30657
|
+
align-items: center;
|
|
30658
|
+
justify-content: space-between;
|
|
30659
|
+
padding: 12px 12px 16px;
|
|
30660
|
+
}
|
|
30661
|
+
.ant-check-list-content .ant-check-list-header .ant-check-list-header-title {
|
|
30662
|
+
font-weight: 500;
|
|
30663
|
+
font-size: 20px;
|
|
30664
|
+
}
|
|
30665
|
+
.ant-check-list-content .ant-check-list-header .ant-check-list-header-extra {
|
|
30666
|
+
cursor: pointer;
|
|
30667
|
+
}
|
|
30668
|
+
.ant-check-list-content .ant-check-list-header-finish {
|
|
30669
|
+
width: 304px;
|
|
30670
|
+
padding-top: 12px;
|
|
30671
|
+
text-align: center;
|
|
30672
|
+
}
|
|
30673
|
+
.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-icon {
|
|
30674
|
+
width: 64px;
|
|
30675
|
+
height: 64px;
|
|
30676
|
+
color: var(--ant-primary-color);
|
|
30677
|
+
font-size: 64px;
|
|
30678
|
+
}
|
|
30679
|
+
.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-title {
|
|
30680
|
+
margin-top: 8px;
|
|
30681
|
+
margin-bottom: 8px;
|
|
30682
|
+
font-weight: 500;
|
|
30683
|
+
font-size: 16px;
|
|
30684
|
+
}
|
|
30685
|
+
.ant-check-list-content .ant-check-list-progressBar {
|
|
30686
|
+
display: flex;
|
|
30687
|
+
justify-content: space-between;
|
|
30688
|
+
margin: 12px 16px;
|
|
30689
|
+
margin-top: 0;
|
|
30690
|
+
}
|
|
30691
|
+
.ant-check-list-content .ant-check-list-progressBar .ant-check-list-progressBar-progress {
|
|
30692
|
+
flex: auto;
|
|
30693
|
+
}
|
|
30694
|
+
.ant-check-list-content .ant-check-list-steps-content {
|
|
30695
|
+
max-height: 250px;
|
|
30696
|
+
overflow-y: scroll;
|
|
30697
|
+
}
|
|
30698
|
+
.ant-check-list-content .ant-check-list-steps {
|
|
30699
|
+
display: flex;
|
|
30700
|
+
align-items: center;
|
|
30701
|
+
justify-content: space-between;
|
|
30702
|
+
height: 52px;
|
|
30703
|
+
padding-right: 12px;
|
|
30704
|
+
padding-left: 12px;
|
|
30705
|
+
border-radius: 6px;
|
|
30706
|
+
cursor: pointer;
|
|
30707
|
+
}
|
|
30708
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item {
|
|
30709
|
+
display: flex;
|
|
30710
|
+
gap: 12px;
|
|
30711
|
+
align-items: center;
|
|
30712
|
+
justify-content: center;
|
|
30713
|
+
width: calc(100% - 22px);
|
|
30714
|
+
font-weight: 400;
|
|
30715
|
+
}
|
|
30716
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle {
|
|
30717
|
+
display: flex;
|
|
30718
|
+
flex: 0 0 28px;
|
|
30719
|
+
align-items: center;
|
|
30720
|
+
justify-content: center;
|
|
30721
|
+
width: 28px;
|
|
30722
|
+
height: 28px;
|
|
30723
|
+
font-weight: 600;
|
|
30724
|
+
background-color: #fff;
|
|
30725
|
+
border: 1px solid #d9d9d9;
|
|
30726
|
+
border-radius: 50%;
|
|
30727
|
+
user-select: none;
|
|
30728
|
+
}
|
|
30729
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
|
|
30730
|
+
color: var(--ant-primary-color);
|
|
30731
|
+
font-size: 16px;
|
|
30732
|
+
}
|
|
30733
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-checkoutlined {
|
|
30734
|
+
color: #fff;
|
|
30735
|
+
font-size: 14px;
|
|
30736
|
+
}
|
|
30737
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-description {
|
|
30738
|
+
flex: 1;
|
|
30739
|
+
overflow: hidden;
|
|
30740
|
+
line-height: 2;
|
|
30741
|
+
white-space: nowrap;
|
|
30742
|
+
text-overflow: ellipsis;
|
|
30743
|
+
}
|
|
30744
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item-arrows {
|
|
30745
|
+
flex: 0 0 22px;
|
|
30746
|
+
width: 38px;
|
|
30747
|
+
height: 38px;
|
|
30748
|
+
color: var(--ant-primary-color);
|
|
30749
|
+
font-size: 22px;
|
|
30750
|
+
}
|
|
30751
|
+
.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-circle {
|
|
30752
|
+
background-color: var(--ant-primary-color);
|
|
30753
|
+
border: none;
|
|
30754
|
+
}
|
|
30755
|
+
.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-description {
|
|
30756
|
+
font-weight: 500;
|
|
30757
|
+
text-decoration: line-through;
|
|
30758
|
+
text-decoration-thickness: 2px;
|
|
30759
|
+
text-decoration-color: rgba(0, 0, 0, 0.85);
|
|
30760
|
+
opacity: 0.85;
|
|
30761
|
+
}
|
|
30762
|
+
.ant-check-list-content .ant-check-list-highlight {
|
|
30763
|
+
background-color: var(--ant-info-color-deprecated-bg);
|
|
30764
|
+
}
|
|
30765
|
+
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle {
|
|
30766
|
+
border: 1px solid var(--ant-primary-color);
|
|
30767
|
+
}
|
|
30768
|
+
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
|
|
30769
|
+
color: var(--ant-primary-color);
|
|
30770
|
+
}
|
|
30771
|
+
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-description {
|
|
30772
|
+
font-weight: 600;
|
|
30773
|
+
}
|
|
30774
|
+
.ant-check-list-content .ant-check-list-footer {
|
|
30775
|
+
padding: 12px 12px 0;
|
|
30776
|
+
color: rgba(0, 0, 0, 0.45);
|
|
30777
|
+
font-size: 14px;
|
|
30778
|
+
text-decoration: underline;
|
|
30779
|
+
cursor: pointer;
|
|
30780
|
+
}
|
|
30781
|
+
.ant-check-list-content .ant-check-list-close-check {
|
|
30782
|
+
display: flex;
|
|
30783
|
+
flex-direction: column;
|
|
30784
|
+
padding: 12px;
|
|
30785
|
+
}
|
|
30786
|
+
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-title {
|
|
30787
|
+
margin-bottom: 24px;
|
|
30788
|
+
font-weight: 500;
|
|
30789
|
+
font-size: 16px;
|
|
30790
|
+
}
|
|
30791
|
+
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-action {
|
|
30792
|
+
display: flex;
|
|
30793
|
+
flex-direction: row;
|
|
30794
|
+
gap: 8px;
|
|
30795
|
+
margin-bottom: 16px;
|
|
30796
|
+
}
|
|
30797
|
+
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-other {
|
|
30798
|
+
color: rgba(0, 0, 0, 0.45);
|
|
30799
|
+
font-size: 14px;
|
|
30800
|
+
cursor: pointer;
|
|
30801
|
+
}
|
|
30401
30802
|
/** system */
|
|
30402
30803
|
sf + st {
|
|
30403
30804
|
margin-top: 16px;
|
|
@@ -30583,10 +30984,10 @@ a:focus {
|
|
|
30583
30984
|
left: 0;
|
|
30584
30985
|
width: 100%;
|
|
30585
30986
|
padding: 10px 24px;
|
|
30586
|
-
text-align: right;
|
|
30587
|
-
background: #fff;
|
|
30588
30987
|
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
30589
30988
|
border-radius: 0 0 2px 2px;
|
|
30989
|
+
text-align: right;
|
|
30990
|
+
background: #fff;
|
|
30590
30991
|
}
|
|
30591
30992
|
.ant-form-item-label em {
|
|
30592
30993
|
color: var(--grey-6);
|
|
@@ -30642,9 +31043,9 @@ a:focus {
|
|
|
30642
31043
|
justify-content: space-between;
|
|
30643
31044
|
margin: -24px -24px 24px -24px;
|
|
30644
31045
|
padding: 16px 24px;
|
|
30645
|
-
background: #fff;
|
|
30646
31046
|
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
30647
31047
|
border-radius: 2px 2px 0 0;
|
|
31048
|
+
background: #fff;
|
|
30648
31049
|
}
|
|
30649
31050
|
.modal-title {
|
|
30650
31051
|
/**
|
|
@@ -30683,9 +31084,9 @@ a:focus {
|
|
|
30683
31084
|
*/
|
|
30684
31085
|
margin: 24px -24px -24px -24px;
|
|
30685
31086
|
padding: 10px 16px;
|
|
30686
|
-
text-align: right;
|
|
30687
31087
|
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
30688
31088
|
border-radius: 0 0 2px 2px;
|
|
31089
|
+
text-align: right;
|
|
30689
31090
|
}
|
|
30690
31091
|
.modal-include-tabs {
|
|
30691
31092
|
/**
|
|
@@ -30714,8 +31115,8 @@ a:focus {
|
|
|
30714
31115
|
.ant-table td .img {
|
|
30715
31116
|
max-width: 32px;
|
|
30716
31117
|
max-height: 32px;
|
|
30717
|
-
vertical-align: middle;
|
|
30718
31118
|
border-radius: 4px;
|
|
31119
|
+
vertical-align: middle;
|
|
30719
31120
|
}
|
|
30720
31121
|
.ant-table td > img:not(:last-child),
|
|
30721
31122
|
.ant-table td .img:not(:last-child) {
|
|
@@ -30768,9 +31169,9 @@ a:focus {
|
|
|
30768
31169
|
align-items: center;
|
|
30769
31170
|
width: 100%;
|
|
30770
31171
|
padding: 8px 8px;
|
|
31172
|
+
border-bottom: none;
|
|
30771
31173
|
text-align: left !important;
|
|
30772
31174
|
white-space: inherit;
|
|
30773
|
-
border-bottom: none;
|
|
30774
31175
|
}
|
|
30775
31176
|
.ant-table-rep .ant-table-tbody > tr > td .ant-table-rep__title + *:not(.ant-avatar) {
|
|
30776
31177
|
flex: 1;
|
|
@@ -30785,8 +31186,8 @@ a:focus {
|
|
|
30785
31186
|
*/
|
|
30786
31187
|
}
|
|
30787
31188
|
.ant-tag__plus .ant-tag {
|
|
30788
|
-
background: #fff;
|
|
30789
31189
|
border-style: dashed;
|
|
31190
|
+
background: #fff;
|
|
30790
31191
|
}
|
|
30791
31192
|
/**
|
|
30792
31193
|
* Corrected `ng-tag` list line wrapping spacing
|
|
@@ -31150,8 +31551,8 @@ fieldset {
|
|
|
31150
31551
|
}
|
|
31151
31552
|
}
|
|
31152
31553
|
.header-dropdown {
|
|
31153
|
-
background-color: #fff;
|
|
31154
31554
|
border-radius: 4px;
|
|
31555
|
+
background-color: #fff;
|
|
31155
31556
|
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);
|
|
31156
31557
|
}
|
|
31157
31558
|
@media screen and (max-width: 480px) {
|
|
@@ -31210,11 +31611,11 @@ fieldset {
|
|
|
31210
31611
|
display: none;
|
|
31211
31612
|
width: 32px;
|
|
31212
31613
|
height: 32px;
|
|
31614
|
+
border-radius: 50%;
|
|
31213
31615
|
font-size: 20px;
|
|
31214
31616
|
line-height: 32px;
|
|
31215
31617
|
text-align: center;
|
|
31216
31618
|
background: rgba(0, 0, 0, 0.26);
|
|
31217
|
-
border-radius: 50%;
|
|
31218
31619
|
}
|
|
31219
31620
|
.sf__array-container .ant-card .sf__array-remove i {
|
|
31220
31621
|
color: #fff;
|
|
@@ -31375,10 +31776,10 @@ fieldset {
|
|
|
31375
31776
|
width: 20px;
|
|
31376
31777
|
height: 20px;
|
|
31377
31778
|
margin-right: 8px;
|
|
31779
|
+
border-radius: 2px;
|
|
31378
31780
|
font-weight: bold;
|
|
31379
31781
|
color: #fff;
|
|
31380
31782
|
text-align: center;
|
|
31381
|
-
border-radius: 2px;
|
|
31382
31783
|
}
|
|
31383
31784
|
.setting-drawer__handle {
|
|
31384
31785
|
pointer-events: auto;
|
|
@@ -31392,10 +31793,10 @@ fieldset {
|
|
|
31392
31793
|
justify-content: center;
|
|
31393
31794
|
width: 48px;
|
|
31394
31795
|
height: 48px;
|
|
31796
|
+
border-radius: 4px 0 0 4px;
|
|
31395
31797
|
font-size: 16px;
|
|
31396
31798
|
text-align: center;
|
|
31397
31799
|
background: var(--ant-primary-color);
|
|
31398
|
-
border-radius: 4px 0 0 4px;
|
|
31399
31800
|
transition: right 0.3s cubic-bezier(0.9, 0, 0.3, 0.7);
|
|
31400
31801
|
}
|
|
31401
31802
|
.setting-drawer__handle-icon {
|
|
@@ -31829,10 +32230,10 @@ fieldset {
|
|
|
31829
32230
|
code {
|
|
31830
32231
|
margin: 0 4px;
|
|
31831
32232
|
padding: 2px 4px;
|
|
31832
|
-
font-size: 90%;
|
|
31833
|
-
background-color: #fafafa;
|
|
31834
32233
|
border: 1px solid #d9d9d9;
|
|
31835
32234
|
border-radius: 2px;
|
|
32235
|
+
font-size: 90%;
|
|
32236
|
+
background-color: #fafafa;
|
|
31836
32237
|
}
|
|
31837
32238
|
/**
|
|
31838
32239
|
* Set the background to white
|
|
@@ -34227,8 +34628,8 @@ textarea.ant-input::-webkit-scrollbar-thumb {
|
|
|
34227
34628
|
* 隐藏滚动条
|
|
34228
34629
|
*/
|
|
34229
34630
|
.hide-scrollbar {
|
|
34230
|
-
scrollbar-width: none;
|
|
34231
34631
|
scrollbar-color: transparent transparent;
|
|
34632
|
+
scrollbar-width: none;
|
|
34232
34633
|
}
|
|
34233
34634
|
.hide-scrollbar::-webkit-scrollbar {
|
|
34234
34635
|
width: 1px;
|
|
@@ -34284,9 +34685,9 @@ body {
|
|
|
34284
34685
|
padding: 24px;
|
|
34285
34686
|
padding-top: 12px;
|
|
34286
34687
|
padding-bottom: 12px;
|
|
34688
|
+
border-bottom: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
34287
34689
|
color: #929292;
|
|
34288
34690
|
background-color: var(--alain-default-heading-bg, #fafbfc);
|
|
34289
|
-
border-bottom: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
34290
34691
|
}
|
|
34291
34692
|
.alain-default__content-title > h1 {
|
|
34292
34693
|
margin-bottom: 0;
|
|
@@ -34391,9 +34792,9 @@ body {
|
|
|
34391
34792
|
display: block;
|
|
34392
34793
|
min-width: 50px;
|
|
34393
34794
|
padding: 8px 2px;
|
|
34795
|
+
border-radius: 2px;
|
|
34394
34796
|
line-height: 100%;
|
|
34395
34797
|
text-align: center;
|
|
34396
|
-
border-radius: 2px;
|
|
34397
34798
|
outline: none;
|
|
34398
34799
|
transition: background-color 300ms;
|
|
34399
34800
|
}
|
|
@@ -34437,9 +34838,9 @@ body {
|
|
|
34437
34838
|
.alain-default__search .ant-input,
|
|
34438
34839
|
.alain-default__search .ant-input-group-addon,
|
|
34439
34840
|
.alain-default__search .ant-input-affix-wrapper {
|
|
34440
|
-
color: #fff;
|
|
34441
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
34442
34841
|
border: none;
|
|
34842
|
+
color: #fff;
|
|
34843
|
+
background-color: #ffffff;
|
|
34443
34844
|
}
|
|
34444
34845
|
.alain-default__search .ant-input::placeholder,
|
|
34445
34846
|
.alain-default__search .ant-input-group-addon::placeholder,
|
|
@@ -34697,8 +35098,8 @@ body {
|
|
|
34697
35098
|
color: rgba(0, 0, 0, 0.85);
|
|
34698
35099
|
}
|
|
34699
35100
|
.sidebar-nav__selected {
|
|
34700
|
-
background-color: var(--alain-default-aside-nav-selected-bg, #fcfcfc);
|
|
34701
35101
|
border-left-color: var(--ant-primary-color);
|
|
35102
|
+
background-color: var(--alain-default-aside-nav-selected-bg, #fcfcfc);
|
|
34702
35103
|
}
|
|
34703
35104
|
.sidebar-nav__selected > .sidebar-nav__item-link {
|
|
34704
35105
|
color: var(--ant-primary-color);
|
|
@@ -34740,9 +35141,9 @@ body {
|
|
|
34740
35141
|
position: absolute;
|
|
34741
35142
|
width: 6px;
|
|
34742
35143
|
height: 1.5px;
|
|
35144
|
+
border-radius: 2px;
|
|
34743
35145
|
background: #fff;
|
|
34744
35146
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
|
|
34745
|
-
border-radius: 2px;
|
|
34746
35147
|
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);
|
|
34747
35148
|
}
|
|
34748
35149
|
.sidebar-nav__sub-arrow::before {
|
|
@@ -34780,9 +35181,9 @@ body {
|
|
|
34780
35181
|
z-index: 16;
|
|
34781
35182
|
display: none;
|
|
34782
35183
|
min-width: 160px;
|
|
34783
|
-
background-color: var(--alain-default-aside-bg, #fff);
|
|
34784
35184
|
border: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
34785
35185
|
border-radius: 4px;
|
|
35186
|
+
background-color: var(--alain-default-aside-bg, #fff);
|
|
34786
35187
|
}
|
|
34787
35188
|
.sidebar-nav__floating .sidebar-nav__item-link {
|
|
34788
35189
|
padding-left: 16px;
|
|
@@ -34940,8 +35341,8 @@ body {
|
|
|
34940
35341
|
.app-icons .ant-col-6 {
|
|
34941
35342
|
cursor: pointer;
|
|
34942
35343
|
padding: 16px 0;
|
|
34943
|
-
text-align: center;
|
|
34944
35344
|
border-radius: 4px;
|
|
35345
|
+
text-align: center;
|
|
34945
35346
|
transition: background-color 300ms;
|
|
34946
35347
|
}
|
|
34947
35348
|
.app-icons .ant-col-6:hover {
|
|
@@ -34949,8 +35350,8 @@ body {
|
|
|
34949
35350
|
}
|
|
34950
35351
|
.app-icons i {
|
|
34951
35352
|
padding: 15px;
|
|
34952
|
-
font-size: 22px;
|
|
34953
35353
|
border-radius: 50%;
|
|
35354
|
+
font-size: 22px;
|
|
34954
35355
|
}
|
|
34955
35356
|
.app-icons small {
|
|
34956
35357
|
display: block;
|
|
@@ -35044,9 +35445,9 @@ body {
|
|
|
35044
35445
|
width: 100%;
|
|
35045
35446
|
}
|
|
35046
35447
|
.st__btn-sub .st__btn-text {
|
|
35448
|
+
display: block;
|
|
35047
35449
|
width: 100%;
|
|
35048
35450
|
color: inherit;
|
|
35049
|
-
display: block;
|
|
35050
35451
|
}
|
|
35051
35452
|
.st__btn-disabled .st__btn-text {
|
|
35052
35453
|
pointer-events: none;
|
|
@@ -35301,8 +35702,8 @@ body {
|
|
|
35301
35702
|
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
35302
35703
|
}
|
|
35303
35704
|
.sv__bordered .sv__label {
|
|
35304
|
-
background-color: #fafafa;
|
|
35305
35705
|
border-right: 1px solid rgba(0, 0, 0, 0.06);
|
|
35706
|
+
background-color: #fafafa;
|
|
35306
35707
|
}
|
|
35307
35708
|
.sv__bordered .sv__label,
|
|
35308
35709
|
.sv__bordered .sv__detail {
|
|
@@ -35619,9 +36020,9 @@ ellipsis {
|
|
|
35619
36020
|
width: 100%;
|
|
35620
36021
|
height: 56px;
|
|
35621
36022
|
padding: 0 24px;
|
|
36023
|
+
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
35622
36024
|
line-height: 56px;
|
|
35623
36025
|
background: #fff;
|
|
35624
|
-
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
35625
36026
|
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03);
|
|
35626
36027
|
transition: all 0.3s;
|
|
35627
36028
|
}
|
|
@@ -35725,11 +36126,11 @@ ellipsis {
|
|
|
35725
36126
|
.notice-icon__clear {
|
|
35726
36127
|
cursor: pointer;
|
|
35727
36128
|
height: 46px;
|
|
36129
|
+
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
36130
|
+
border-radius: 0 0 2px 2px;
|
|
35728
36131
|
line-height: 46px;
|
|
35729
36132
|
color: rgba(0, 0, 0, 0.85);
|
|
35730
36133
|
text-align: center;
|
|
35731
|
-
border-top: 1px solid rgba(0, 0, 0, 0.06);
|
|
35732
|
-
border-radius: 0 0 2px 2px;
|
|
35733
36134
|
transition: all 0.3s;
|
|
35734
36135
|
}
|
|
35735
36136
|
.notice-icon__clear:hover {
|
|
@@ -35763,8 +36164,8 @@ ellipsis {
|
|
|
35763
36164
|
.page-header {
|
|
35764
36165
|
display: block;
|
|
35765
36166
|
padding: 24px;
|
|
35766
|
-
background-color: #fff;
|
|
35767
36167
|
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
|
|
36168
|
+
background-color: #fff;
|
|
35768
36169
|
}
|
|
35769
36170
|
.page-header__wide {
|
|
35770
36171
|
max-width: 1200px;
|
|
@@ -35923,8 +36324,8 @@ ellipsis {
|
|
|
35923
36324
|
}
|
|
35924
36325
|
.quick-menu,
|
|
35925
36326
|
.quick-menu__ctrl {
|
|
35926
|
-
background-color: #fff;
|
|
35927
36327
|
border: 1px solid #fff;
|
|
36328
|
+
background-color: #fff;
|
|
35928
36329
|
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);
|
|
35929
36330
|
}
|
|
35930
36331
|
.quick-menu__inner {
|
|
@@ -35938,9 +36339,9 @@ ellipsis {
|
|
|
35938
36339
|
left: -50px;
|
|
35939
36340
|
width: 50px;
|
|
35940
36341
|
height: 50px;
|
|
35941
|
-
text-align: center;
|
|
35942
36342
|
border-right: 0;
|
|
35943
36343
|
border-radius: 3px 0 0 3px;
|
|
36344
|
+
text-align: center;
|
|
35944
36345
|
}
|
|
35945
36346
|
.quick-menu__ctrl-icon {
|
|
35946
36347
|
font-size: 20px;
|
|
@@ -35978,9 +36379,9 @@ ellipsis {
|
|
|
35978
36379
|
}
|
|
35979
36380
|
.result__extra {
|
|
35980
36381
|
padding: 24px 40px;
|
|
36382
|
+
border-radius: 2px;
|
|
35981
36383
|
text-align: left;
|
|
35982
36384
|
background: #fafafa;
|
|
35983
|
-
border-radius: 2px;
|
|
35984
36385
|
}
|
|
35985
36386
|
@media screen and (max-width: 480px) {
|
|
35986
36387
|
.result__extra {
|
|
@@ -36237,8 +36638,8 @@ ellipsis {
|
|
|
36237
36638
|
margin-right: 4px;
|
|
36238
36639
|
}
|
|
36239
36640
|
.cell .img {
|
|
36240
|
-
vertical-align: middle;
|
|
36241
36641
|
border-radius: 4px;
|
|
36642
|
+
vertical-align: middle;
|
|
36242
36643
|
}
|
|
36243
36644
|
.cell .unit {
|
|
36244
36645
|
margin-left: 2px;
|
|
@@ -36343,8 +36744,8 @@ g2-tag-cloud {
|
|
|
36343
36744
|
.g2-mini-progress__value {
|
|
36344
36745
|
width: 0;
|
|
36345
36746
|
height: 100%;
|
|
36346
|
-
background-color: var(--ant-primary-color);
|
|
36347
36747
|
border-radius: 1px 0 0 1px;
|
|
36748
|
+
background-color: var(--ant-primary-color);
|
|
36348
36749
|
transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
|
|
36349
36750
|
}
|
|
36350
36751
|
.g2-mini-progress__target {
|