@delon/theme 19.0.1 → 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 +466 -62
- package/compact.min.css +1 -1
- package/dark.css +466 -62
- package/dark.min.css +1 -1
- package/default.css +466 -62
- package/default.min.css +1 -1
- package/fesm2022/layout-default.mjs +28 -36
- package/fesm2022/layout-default.mjs.map +1 -1
- package/fesm2022/setting-drawer.mjs +10 -10
- package/fesm2022/setting-drawer.mjs.map +1 -1
- package/fesm2022/theme-btn.mjs +7 -7
- package/fesm2022/theme.mjs +69 -68
- 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/setting-drawer.types.d.ts +1 -3
- package/setting-drawer/style/index.less +2 -2
- package/src/locale/locale.types.d.ts +1 -3
- package/src/services/http/http.client.d.ts +1 -3
- package/src/services/http/http.decorator.d.ts +1 -3
- package/src/services/menu/interface.d.ts +2 -0
- 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 +466 -62
- package/variable.min.css +1 -1
package/compact.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: 12px;
|
|
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.66667;
|
|
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;
|
|
@@ -29046,6 +29269,9 @@ nz-tree {
|
|
|
29046
29269
|
margin-bottom: 4px;
|
|
29047
29270
|
overflow: auto;
|
|
29048
29271
|
}
|
|
29272
|
+
.ant-select-dropdown.ant-select-tree-dropdown .cdk-virtual-scroll-content-wrapper {
|
|
29273
|
+
overflow: auto;
|
|
29274
|
+
}
|
|
29049
29275
|
.ant-picker-calendar {
|
|
29050
29276
|
box-sizing: border-box;
|
|
29051
29277
|
margin: 0;
|
|
@@ -29964,7 +30190,7 @@ nz-space-item {
|
|
|
29964
30190
|
width: 16px;
|
|
29965
30191
|
height: 16px;
|
|
29966
30192
|
}
|
|
29967
|
-
.ant-
|
|
30193
|
+
.ant-hash-code {
|
|
29968
30194
|
display: flex;
|
|
29969
30195
|
flex-direction: column;
|
|
29970
30196
|
align-items: center;
|
|
@@ -29978,78 +30204,78 @@ nz-space-item {
|
|
|
29978
30204
|
list-style: none;
|
|
29979
30205
|
cursor: pointer;
|
|
29980
30206
|
}
|
|
29981
|
-
.ant-
|
|
30207
|
+
.ant-hash-code-header-copy {
|
|
29982
30208
|
margin-left: 4px;
|
|
29983
30209
|
cursor: pointer;
|
|
29984
30210
|
opacity: 0.45;
|
|
29985
30211
|
}
|
|
29986
|
-
.ant-
|
|
30212
|
+
.ant-hash-code-header {
|
|
29987
30213
|
display: flex;
|
|
29988
30214
|
justify-content: left;
|
|
29989
30215
|
width: 100%;
|
|
29990
30216
|
height: 22px;
|
|
29991
30217
|
padding-bottom: 4px;
|
|
29992
30218
|
}
|
|
29993
|
-
.ant-
|
|
30219
|
+
.ant-hash-code-header .ant-hash-code-header-title {
|
|
29994
30220
|
font-size: 12px;
|
|
29995
30221
|
line-height: 1.66667;
|
|
29996
30222
|
text-align: center;
|
|
29997
30223
|
opacity: 0.45;
|
|
29998
30224
|
}
|
|
29999
|
-
.ant-
|
|
30225
|
+
.ant-hash-code-header .ant-hash-code-header-logo {
|
|
30000
30226
|
display: flex;
|
|
30001
30227
|
flex: 1;
|
|
30002
30228
|
justify-content: right;
|
|
30003
30229
|
}
|
|
30004
|
-
.ant-
|
|
30230
|
+
.ant-hash-code-double {
|
|
30005
30231
|
width: 172px;
|
|
30006
30232
|
}
|
|
30007
|
-
.ant-
|
|
30233
|
+
.ant-hash-code-double.ant-hash-code-primary {
|
|
30008
30234
|
width: 220px;
|
|
30009
30235
|
}
|
|
30010
|
-
.ant-
|
|
30236
|
+
.ant-hash-code-single {
|
|
30011
30237
|
display: flex;
|
|
30012
30238
|
flex-direction: row-reverse;
|
|
30013
30239
|
width: 236px;
|
|
30014
30240
|
}
|
|
30015
|
-
.ant-
|
|
30241
|
+
.ant-hash-code-single.ant-hash-code-primary {
|
|
30016
30242
|
width: 284px;
|
|
30017
30243
|
}
|
|
30018
|
-
.ant-
|
|
30244
|
+
.ant-hash-code-single .ant-hash-code-header-copy {
|
|
30019
30245
|
margin-top: 4px;
|
|
30020
30246
|
}
|
|
30021
|
-
.ant-
|
|
30247
|
+
.ant-hash-code-strip {
|
|
30022
30248
|
width: 350px;
|
|
30023
30249
|
}
|
|
30024
|
-
.ant-
|
|
30250
|
+
.ant-hash-code-strip.ant-hash-code-primary {
|
|
30025
30251
|
width: 398px;
|
|
30026
30252
|
}
|
|
30027
|
-
.ant-
|
|
30253
|
+
.ant-hash-code-rect {
|
|
30028
30254
|
display: flex;
|
|
30029
30255
|
flex-direction: row-reverse;
|
|
30030
30256
|
width: 196px;
|
|
30031
30257
|
}
|
|
30032
|
-
.ant-
|
|
30258
|
+
.ant-hash-code-rect.ant-hash-code-primary {
|
|
30033
30259
|
width: 244px;
|
|
30034
30260
|
}
|
|
30035
|
-
.ant-
|
|
30261
|
+
.ant-hash-code-primary {
|
|
30036
30262
|
padding: 16px;
|
|
30037
30263
|
background-color: #1890ff;
|
|
30038
30264
|
border-radius: 24px;
|
|
30039
30265
|
}
|
|
30040
|
-
.ant-
|
|
30266
|
+
.ant-hash-code-primary .ant-hash-code-header-copy {
|
|
30041
30267
|
opacity: 1;
|
|
30042
30268
|
}
|
|
30043
|
-
.ant-
|
|
30044
|
-
.ant-
|
|
30045
|
-
.ant-
|
|
30269
|
+
.ant-hash-code-primary .ant-hash-code-header-title,
|
|
30270
|
+
.ant-hash-code-primary .ant-hash-code-header-copy,
|
|
30271
|
+
.ant-hash-code-primary .ant-hash-code-header-logo {
|
|
30046
30272
|
color: rgba(255, 255, 255, 0.85);
|
|
30047
30273
|
}
|
|
30048
|
-
.ant-
|
|
30274
|
+
.ant-hash-code-contant {
|
|
30049
30275
|
width: 100%;
|
|
30050
30276
|
height: 100%;
|
|
30051
30277
|
}
|
|
30052
|
-
.ant-
|
|
30278
|
+
.ant-hash-code-code-value {
|
|
30053
30279
|
display: flex;
|
|
30054
30280
|
flex-wrap: wrap;
|
|
30055
30281
|
gap: 0 10px;
|
|
@@ -30057,33 +30283,33 @@ nz-space-item {
|
|
|
30057
30283
|
height: 35px;
|
|
30058
30284
|
overflow: hidden;
|
|
30059
30285
|
}
|
|
30060
|
-
.ant-
|
|
30286
|
+
.ant-hash-code-code-value-block {
|
|
30061
30287
|
height: 16px;
|
|
30062
30288
|
font-size: 12px;
|
|
30063
30289
|
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
|
|
30064
30290
|
}
|
|
30065
|
-
.ant-
|
|
30291
|
+
.ant-hash-code-value-primary .ant-hash-code-code-value-block {
|
|
30066
30292
|
color: #fff;
|
|
30067
30293
|
}
|
|
30068
|
-
.ant-
|
|
30294
|
+
.ant-hash-code-texaure-double {
|
|
30069
30295
|
width: 175px;
|
|
30070
30296
|
height: 36px;
|
|
30071
30297
|
}
|
|
30072
|
-
.ant-
|
|
30298
|
+
.ant-hash-code-texaure {
|
|
30073
30299
|
position: absolute;
|
|
30074
30300
|
margin-top: -35px;
|
|
30075
30301
|
overflow: hidden;
|
|
30076
30302
|
}
|
|
30077
|
-
.ant-
|
|
30303
|
+
.ant-hash-code-texaure-single {
|
|
30078
30304
|
width: 210px;
|
|
30079
30305
|
height: 28px;
|
|
30080
30306
|
margin-top: -21px;
|
|
30081
30307
|
}
|
|
30082
|
-
.ant-
|
|
30308
|
+
.ant-hash-code-texaure-strip {
|
|
30083
30309
|
width: 350px;
|
|
30084
30310
|
height: 36px;
|
|
30085
30311
|
}
|
|
30086
|
-
.ant-
|
|
30312
|
+
.ant-hash-code-texaure-rect {
|
|
30087
30313
|
width: 175px;
|
|
30088
30314
|
height: 72px;
|
|
30089
30315
|
margin-top: -71px;
|
|
@@ -30290,6 +30516,181 @@ nz-space-item {
|
|
|
30290
30516
|
width: 32px;
|
|
30291
30517
|
height: 32px;
|
|
30292
30518
|
}
|
|
30519
|
+
.ant-check-list {
|
|
30520
|
+
position: fixed;
|
|
30521
|
+
right: 32px;
|
|
30522
|
+
bottom: 32px;
|
|
30523
|
+
z-index: 999;
|
|
30524
|
+
font-size: 12px;
|
|
30525
|
+
cursor: pointer;
|
|
30526
|
+
}
|
|
30527
|
+
.ant-check-list .ant-check-list-button {
|
|
30528
|
+
display: flex;
|
|
30529
|
+
gap: 4px;
|
|
30530
|
+
align-items: center;
|
|
30531
|
+
justify-content: center;
|
|
30532
|
+
min-width: 110px;
|
|
30533
|
+
height: 40px;
|
|
30534
|
+
border-radius: 20px;
|
|
30535
|
+
}
|
|
30536
|
+
.ant-check-list .ant-check-list-icon {
|
|
30537
|
+
font-size: 21px;
|
|
30538
|
+
line-height: 24px;
|
|
30539
|
+
}
|
|
30540
|
+
.ant-check-list .ant-check-list-description {
|
|
30541
|
+
font-size: 12px;
|
|
30542
|
+
}
|
|
30543
|
+
.ant-check-list-content {
|
|
30544
|
+
display: block;
|
|
30545
|
+
width: 303px;
|
|
30546
|
+
}
|
|
30547
|
+
.ant-check-list-content .ant-check-list-header {
|
|
30548
|
+
display: flex;
|
|
30549
|
+
align-items: center;
|
|
30550
|
+
justify-content: space-between;
|
|
30551
|
+
padding: 8px 8px 8px;
|
|
30552
|
+
}
|
|
30553
|
+
.ant-check-list-content .ant-check-list-header .ant-check-list-header-title {
|
|
30554
|
+
font-weight: 500;
|
|
30555
|
+
font-size: 18px;
|
|
30556
|
+
}
|
|
30557
|
+
.ant-check-list-content .ant-check-list-header .ant-check-list-header-extra {
|
|
30558
|
+
cursor: pointer;
|
|
30559
|
+
}
|
|
30560
|
+
.ant-check-list-content .ant-check-list-header-finish {
|
|
30561
|
+
width: 304px;
|
|
30562
|
+
padding-top: 8px;
|
|
30563
|
+
text-align: center;
|
|
30564
|
+
}
|
|
30565
|
+
.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-icon {
|
|
30566
|
+
width: 64px;
|
|
30567
|
+
height: 64px;
|
|
30568
|
+
color: #1890ff;
|
|
30569
|
+
font-size: 64px;
|
|
30570
|
+
}
|
|
30571
|
+
.ant-check-list-content .ant-check-list-header-finish .ant-check-list-header-finish-title {
|
|
30572
|
+
margin-top: 4px;
|
|
30573
|
+
margin-bottom: 4px;
|
|
30574
|
+
font-weight: 500;
|
|
30575
|
+
font-size: 14px;
|
|
30576
|
+
}
|
|
30577
|
+
.ant-check-list-content .ant-check-list-progressBar {
|
|
30578
|
+
display: flex;
|
|
30579
|
+
justify-content: space-between;
|
|
30580
|
+
margin: 8px 8px;
|
|
30581
|
+
margin-top: 0;
|
|
30582
|
+
}
|
|
30583
|
+
.ant-check-list-content .ant-check-list-progressBar .ant-check-list-progressBar-progress {
|
|
30584
|
+
flex: auto;
|
|
30585
|
+
}
|
|
30586
|
+
.ant-check-list-content .ant-check-list-steps-content {
|
|
30587
|
+
max-height: 250px;
|
|
30588
|
+
overflow-y: scroll;
|
|
30589
|
+
}
|
|
30590
|
+
.ant-check-list-content .ant-check-list-steps {
|
|
30591
|
+
display: flex;
|
|
30592
|
+
align-items: center;
|
|
30593
|
+
justify-content: space-between;
|
|
30594
|
+
height: 52px;
|
|
30595
|
+
padding-right: 8px;
|
|
30596
|
+
padding-left: 8px;
|
|
30597
|
+
border-radius: 6px;
|
|
30598
|
+
cursor: pointer;
|
|
30599
|
+
}
|
|
30600
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item {
|
|
30601
|
+
display: flex;
|
|
30602
|
+
gap: 12px;
|
|
30603
|
+
align-items: center;
|
|
30604
|
+
justify-content: center;
|
|
30605
|
+
width: calc(100% - 22px);
|
|
30606
|
+
font-weight: 400;
|
|
30607
|
+
}
|
|
30608
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle {
|
|
30609
|
+
display: flex;
|
|
30610
|
+
flex: 0 0 28px;
|
|
30611
|
+
align-items: center;
|
|
30612
|
+
justify-content: center;
|
|
30613
|
+
width: 28px;
|
|
30614
|
+
height: 28px;
|
|
30615
|
+
font-weight: 600;
|
|
30616
|
+
background-color: #fff;
|
|
30617
|
+
border: 1px solid #d9d9d9;
|
|
30618
|
+
border-radius: 50%;
|
|
30619
|
+
user-select: none;
|
|
30620
|
+
}
|
|
30621
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
|
|
30622
|
+
color: #1890ff;
|
|
30623
|
+
font-size: 14px;
|
|
30624
|
+
}
|
|
30625
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-checkoutlined {
|
|
30626
|
+
color: #fff;
|
|
30627
|
+
font-size: 12px;
|
|
30628
|
+
}
|
|
30629
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item .ant-check-list-steps-item-description {
|
|
30630
|
+
flex: 1;
|
|
30631
|
+
overflow: hidden;
|
|
30632
|
+
line-height: 2;
|
|
30633
|
+
white-space: nowrap;
|
|
30634
|
+
text-overflow: ellipsis;
|
|
30635
|
+
}
|
|
30636
|
+
.ant-check-list-content .ant-check-list-steps .ant-check-list-steps-item-arrows {
|
|
30637
|
+
flex: 0 0 22px;
|
|
30638
|
+
width: 38px;
|
|
30639
|
+
height: 38px;
|
|
30640
|
+
color: #1890ff;
|
|
30641
|
+
font-size: 22px;
|
|
30642
|
+
}
|
|
30643
|
+
.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-circle {
|
|
30644
|
+
background-color: #1890ff;
|
|
30645
|
+
border: none;
|
|
30646
|
+
}
|
|
30647
|
+
.ant-check-list-content .ant-check-list-checked .ant-check-list-steps-item .ant-check-list-steps-item-description {
|
|
30648
|
+
font-weight: 500;
|
|
30649
|
+
text-decoration: line-through;
|
|
30650
|
+
text-decoration-thickness: 2px;
|
|
30651
|
+
text-decoration-color: rgba(0, 0, 0, 0.85);
|
|
30652
|
+
opacity: 0.85;
|
|
30653
|
+
}
|
|
30654
|
+
.ant-check-list-content .ant-check-list-highlight {
|
|
30655
|
+
background-color: #e6f7ff;
|
|
30656
|
+
}
|
|
30657
|
+
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle {
|
|
30658
|
+
border: 1px solid #1890ff;
|
|
30659
|
+
}
|
|
30660
|
+
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-circle .ant-check-list-steps-number {
|
|
30661
|
+
color: #1890ff;
|
|
30662
|
+
}
|
|
30663
|
+
.ant-check-list-content .ant-check-list-highlight .ant-check-list-steps-item .ant-check-list-steps-item-description {
|
|
30664
|
+
font-weight: 600;
|
|
30665
|
+
}
|
|
30666
|
+
.ant-check-list-content .ant-check-list-footer {
|
|
30667
|
+
padding: 8px 8px 0;
|
|
30668
|
+
color: rgba(0, 0, 0, 0.45);
|
|
30669
|
+
font-size: 12px;
|
|
30670
|
+
text-decoration: underline;
|
|
30671
|
+
cursor: pointer;
|
|
30672
|
+
}
|
|
30673
|
+
.ant-check-list-content .ant-check-list-close-check {
|
|
30674
|
+
display: flex;
|
|
30675
|
+
flex-direction: column;
|
|
30676
|
+
padding: 8px;
|
|
30677
|
+
}
|
|
30678
|
+
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-title {
|
|
30679
|
+
margin-bottom: 16px;
|
|
30680
|
+
font-weight: 500;
|
|
30681
|
+
font-size: 14px;
|
|
30682
|
+
}
|
|
30683
|
+
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-action {
|
|
30684
|
+
display: flex;
|
|
30685
|
+
flex-direction: row;
|
|
30686
|
+
gap: 4px;
|
|
30687
|
+
margin-bottom: 8px;
|
|
30688
|
+
}
|
|
30689
|
+
.ant-check-list-content .ant-check-list-close-check .ant-check-list-close-check-other {
|
|
30690
|
+
color: rgba(0, 0, 0, 0.45);
|
|
30691
|
+
font-size: 12px;
|
|
30692
|
+
cursor: pointer;
|
|
30693
|
+
}
|
|
30293
30694
|
/** system */
|
|
30294
30695
|
sf + st {
|
|
30295
30696
|
margin-top: 16px;
|
|
@@ -30475,10 +30876,10 @@ a:focus {
|
|
|
30475
30876
|
left: 0;
|
|
30476
30877
|
width: 100%;
|
|
30477
30878
|
padding: 8px 16px;
|
|
30478
|
-
text-align: right;
|
|
30479
|
-
background: #fff;
|
|
30480
30879
|
border-top: 1px solid #f0f0f0;
|
|
30481
30880
|
border-radius: 0 0 2px 2px;
|
|
30881
|
+
text-align: right;
|
|
30882
|
+
background: #fff;
|
|
30482
30883
|
}
|
|
30483
30884
|
.ant-form-item-label em {
|
|
30484
30885
|
color: #bfbfbf;
|
|
@@ -30534,9 +30935,9 @@ a:focus {
|
|
|
30534
30935
|
justify-content: space-between;
|
|
30535
30936
|
margin: -16px -16px 16px -16px;
|
|
30536
30937
|
padding: 11px 16px;
|
|
30537
|
-
background: #fff;
|
|
30538
30938
|
border-bottom: 1px solid #f0f0f0;
|
|
30539
30939
|
border-radius: 2px 2px 0 0;
|
|
30940
|
+
background: #fff;
|
|
30540
30941
|
}
|
|
30541
30942
|
.modal-title {
|
|
30542
30943
|
/**
|
|
@@ -30575,9 +30976,9 @@ a:focus {
|
|
|
30575
30976
|
*/
|
|
30576
30977
|
margin: 16px -16px -16px -16px;
|
|
30577
30978
|
padding: 8px 16px;
|
|
30578
|
-
text-align: right;
|
|
30579
30979
|
border-top: 1px solid #f0f0f0;
|
|
30580
30980
|
border-radius: 0 0 2px 2px;
|
|
30981
|
+
text-align: right;
|
|
30581
30982
|
}
|
|
30582
30983
|
.modal-include-tabs {
|
|
30583
30984
|
/**
|
|
@@ -30606,8 +31007,8 @@ a:focus {
|
|
|
30606
31007
|
.ant-table td .img {
|
|
30607
31008
|
max-width: 32px;
|
|
30608
31009
|
max-height: 32px;
|
|
30609
|
-
vertical-align: middle;
|
|
30610
31010
|
border-radius: 4px;
|
|
31011
|
+
vertical-align: middle;
|
|
30611
31012
|
}
|
|
30612
31013
|
.ant-table td > img:not(:last-child),
|
|
30613
31014
|
.ant-table td .img:not(:last-child) {
|
|
@@ -30660,9 +31061,9 @@ a:focus {
|
|
|
30660
31061
|
align-items: center;
|
|
30661
31062
|
width: 100%;
|
|
30662
31063
|
padding: 6px 4px;
|
|
31064
|
+
border-bottom: none;
|
|
30663
31065
|
text-align: left !important;
|
|
30664
31066
|
white-space: inherit;
|
|
30665
|
-
border-bottom: none;
|
|
30666
31067
|
}
|
|
30667
31068
|
.ant-table-rep .ant-table-tbody > tr > td .ant-table-rep__title + *:not(.ant-avatar) {
|
|
30668
31069
|
flex: 1;
|
|
@@ -30677,8 +31078,8 @@ a:focus {
|
|
|
30677
31078
|
*/
|
|
30678
31079
|
}
|
|
30679
31080
|
.ant-tag__plus .ant-tag {
|
|
30680
|
-
background: #fff;
|
|
30681
31081
|
border-style: dashed;
|
|
31082
|
+
background: #fff;
|
|
30682
31083
|
}
|
|
30683
31084
|
/**
|
|
30684
31085
|
* Corrected `ng-tag` list line wrapping spacing
|
|
@@ -31042,8 +31443,8 @@ fieldset {
|
|
|
31042
31443
|
}
|
|
31043
31444
|
}
|
|
31044
31445
|
.header-dropdown {
|
|
31045
|
-
background-color: #fff;
|
|
31046
31446
|
border-radius: 4px;
|
|
31447
|
+
background-color: #fff;
|
|
31047
31448
|
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);
|
|
31048
31449
|
}
|
|
31049
31450
|
@media screen and (max-width: 480px) {
|
|
@@ -31102,11 +31503,11 @@ fieldset {
|
|
|
31102
31503
|
display: none;
|
|
31103
31504
|
width: 32px;
|
|
31104
31505
|
height: 32px;
|
|
31506
|
+
border-radius: 50%;
|
|
31105
31507
|
font-size: 20px;
|
|
31106
31508
|
line-height: 32px;
|
|
31107
31509
|
text-align: center;
|
|
31108
31510
|
background: rgba(0, 0, 0, 0.26);
|
|
31109
|
-
border-radius: 50%;
|
|
31110
31511
|
}
|
|
31111
31512
|
.sf__array-container .ant-card .sf__array-remove i {
|
|
31112
31513
|
color: #fff;
|
|
@@ -31267,10 +31668,10 @@ fieldset {
|
|
|
31267
31668
|
width: 20px;
|
|
31268
31669
|
height: 20px;
|
|
31269
31670
|
margin-right: 8px;
|
|
31671
|
+
border-radius: 2px;
|
|
31270
31672
|
font-weight: bold;
|
|
31271
31673
|
color: #fff;
|
|
31272
31674
|
text-align: center;
|
|
31273
|
-
border-radius: 2px;
|
|
31274
31675
|
}
|
|
31275
31676
|
.setting-drawer__handle {
|
|
31276
31677
|
pointer-events: auto;
|
|
@@ -31284,10 +31685,10 @@ fieldset {
|
|
|
31284
31685
|
justify-content: center;
|
|
31285
31686
|
width: 48px;
|
|
31286
31687
|
height: 48px;
|
|
31688
|
+
border-radius: 4px 0 0 4px;
|
|
31287
31689
|
font-size: 16px;
|
|
31288
31690
|
text-align: center;
|
|
31289
31691
|
background: #1890ff;
|
|
31290
|
-
border-radius: 4px 0 0 4px;
|
|
31291
31692
|
transition: right 0.3s cubic-bezier(0.9, 0, 0.3, 0.7);
|
|
31292
31693
|
}
|
|
31293
31694
|
.setting-drawer__handle-icon {
|
|
@@ -31721,10 +32122,10 @@ fieldset {
|
|
|
31721
32122
|
code {
|
|
31722
32123
|
margin: 0 4px;
|
|
31723
32124
|
padding: 2px 4px;
|
|
31724
|
-
font-size: 90%;
|
|
31725
|
-
background-color: #fafafa;
|
|
31726
32125
|
border: 1px solid #d9d9d9;
|
|
31727
32126
|
border-radius: 2px;
|
|
32127
|
+
font-size: 90%;
|
|
32128
|
+
background-color: #fafafa;
|
|
31728
32129
|
}
|
|
31729
32130
|
/**
|
|
31730
32131
|
* Set the background to white
|
|
@@ -34119,8 +34520,8 @@ textarea.ant-input::-webkit-scrollbar-thumb {
|
|
|
34119
34520
|
* 隐藏滚动条
|
|
34120
34521
|
*/
|
|
34121
34522
|
.hide-scrollbar {
|
|
34122
|
-
scrollbar-width: none;
|
|
34123
34523
|
scrollbar-color: transparent transparent;
|
|
34524
|
+
scrollbar-width: none;
|
|
34124
34525
|
}
|
|
34125
34526
|
.hide-scrollbar::-webkit-scrollbar {
|
|
34126
34527
|
width: 1px;
|
|
@@ -34176,9 +34577,9 @@ body {
|
|
|
34176
34577
|
padding: 24px;
|
|
34177
34578
|
padding-top: 12px;
|
|
34178
34579
|
padding-bottom: 12px;
|
|
34580
|
+
border-bottom: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
34179
34581
|
color: #929292;
|
|
34180
34582
|
background-color: var(--alain-default-heading-bg, #fafbfc);
|
|
34181
|
-
border-bottom: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
34182
34583
|
}
|
|
34183
34584
|
.alain-default__content-title > h1 {
|
|
34184
34585
|
margin-bottom: 0;
|
|
@@ -34283,9 +34684,9 @@ body {
|
|
|
34283
34684
|
display: block;
|
|
34284
34685
|
min-width: 50px;
|
|
34285
34686
|
padding: 8px 2px;
|
|
34687
|
+
border-radius: 2px;
|
|
34286
34688
|
line-height: 100%;
|
|
34287
34689
|
text-align: center;
|
|
34288
|
-
border-radius: 2px;
|
|
34289
34690
|
outline: none;
|
|
34290
34691
|
transition: background-color 300ms;
|
|
34291
34692
|
}
|
|
@@ -34329,9 +34730,9 @@ body {
|
|
|
34329
34730
|
.alain-default__search .ant-input,
|
|
34330
34731
|
.alain-default__search .ant-input-group-addon,
|
|
34331
34732
|
.alain-default__search .ant-input-affix-wrapper {
|
|
34332
|
-
color: #fff;
|
|
34333
|
-
background-color: rgba(255, 255, 255, 0.2);
|
|
34334
34733
|
border: none;
|
|
34734
|
+
color: #fff;
|
|
34735
|
+
background-color: #ffffff;
|
|
34335
34736
|
}
|
|
34336
34737
|
.alain-default__search .ant-input::placeholder,
|
|
34337
34738
|
.alain-default__search .ant-input-group-addon::placeholder,
|
|
@@ -34589,8 +34990,8 @@ body {
|
|
|
34589
34990
|
color: rgba(0, 0, 0, 0.85);
|
|
34590
34991
|
}
|
|
34591
34992
|
.sidebar-nav__selected {
|
|
34592
|
-
background-color: var(--alain-default-aside-nav-selected-bg, #fcfcfc);
|
|
34593
34993
|
border-left-color: #1890ff;
|
|
34994
|
+
background-color: var(--alain-default-aside-nav-selected-bg, #fcfcfc);
|
|
34594
34995
|
}
|
|
34595
34996
|
.sidebar-nav__selected > .sidebar-nav__item-link {
|
|
34596
34997
|
color: #1890ff;
|
|
@@ -34632,9 +35033,9 @@ body {
|
|
|
34632
35033
|
position: absolute;
|
|
34633
35034
|
width: 6px;
|
|
34634
35035
|
height: 1.5px;
|
|
35036
|
+
border-radius: 2px;
|
|
34635
35037
|
background: #fff;
|
|
34636
35038
|
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
|
|
34637
|
-
border-radius: 2px;
|
|
34638
35039
|
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);
|
|
34639
35040
|
}
|
|
34640
35041
|
.sidebar-nav__sub-arrow::before {
|
|
@@ -34672,9 +35073,9 @@ body {
|
|
|
34672
35073
|
z-index: 16;
|
|
34673
35074
|
display: none;
|
|
34674
35075
|
min-width: 160px;
|
|
34675
|
-
background-color: var(--alain-default-aside-bg, #fff);
|
|
34676
35076
|
border: 1px solid var(--alain-default-heading-border, #efe3e5);
|
|
34677
35077
|
border-radius: 4px;
|
|
35078
|
+
background-color: var(--alain-default-aside-bg, #fff);
|
|
34678
35079
|
}
|
|
34679
35080
|
.sidebar-nav__floating .sidebar-nav__item-link {
|
|
34680
35081
|
padding-left: 16px;
|
|
@@ -34832,8 +35233,8 @@ body {
|
|
|
34832
35233
|
.app-icons .ant-col-6 {
|
|
34833
35234
|
cursor: pointer;
|
|
34834
35235
|
padding: 16px 0;
|
|
34835
|
-
text-align: center;
|
|
34836
35236
|
border-radius: 4px;
|
|
35237
|
+
text-align: center;
|
|
34837
35238
|
transition: background-color 300ms;
|
|
34838
35239
|
}
|
|
34839
35240
|
.app-icons .ant-col-6:hover {
|
|
@@ -34841,8 +35242,8 @@ body {
|
|
|
34841
35242
|
}
|
|
34842
35243
|
.app-icons i {
|
|
34843
35244
|
padding: 15px;
|
|
34844
|
-
font-size: 22px;
|
|
34845
35245
|
border-radius: 50%;
|
|
35246
|
+
font-size: 22px;
|
|
34846
35247
|
}
|
|
34847
35248
|
.app-icons small {
|
|
34848
35249
|
display: block;
|
|
@@ -34936,9 +35337,9 @@ body {
|
|
|
34936
35337
|
width: 100%;
|
|
34937
35338
|
}
|
|
34938
35339
|
.st__btn-sub .st__btn-text {
|
|
35340
|
+
display: block;
|
|
34939
35341
|
width: 100%;
|
|
34940
35342
|
color: inherit;
|
|
34941
|
-
display: block;
|
|
34942
35343
|
}
|
|
34943
35344
|
.st__btn-disabled .st__btn-text {
|
|
34944
35345
|
pointer-events: none;
|
|
@@ -35193,8 +35594,8 @@ body {
|
|
|
35193
35594
|
border-bottom: 1px solid #f0f0f0;
|
|
35194
35595
|
}
|
|
35195
35596
|
.sv__bordered .sv__label {
|
|
35196
|
-
background-color: #fafafa;
|
|
35197
35597
|
border-right: 1px solid #f0f0f0;
|
|
35598
|
+
background-color: #fafafa;
|
|
35198
35599
|
}
|
|
35199
35600
|
.sv__bordered .sv__label,
|
|
35200
35601
|
.sv__bordered .sv__detail {
|
|
@@ -35511,9 +35912,9 @@ ellipsis {
|
|
|
35511
35912
|
width: 100%;
|
|
35512
35913
|
height: 48px;
|
|
35513
35914
|
padding: 0 16px;
|
|
35915
|
+
border-top: 1px solid #f0f0f0;
|
|
35514
35916
|
line-height: 48px;
|
|
35515
35917
|
background: #fff;
|
|
35516
|
-
border-top: 1px solid #f0f0f0;
|
|
35517
35918
|
box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03);
|
|
35518
35919
|
transition: all 0.3s;
|
|
35519
35920
|
}
|
|
@@ -35617,11 +36018,11 @@ ellipsis {
|
|
|
35617
36018
|
.notice-icon__clear {
|
|
35618
36019
|
cursor: pointer;
|
|
35619
36020
|
height: 46px;
|
|
36021
|
+
border-top: 1px solid #f0f0f0;
|
|
36022
|
+
border-radius: 0 0 2px 2px;
|
|
35620
36023
|
line-height: 46px;
|
|
35621
36024
|
color: rgba(0, 0, 0, 0.85);
|
|
35622
36025
|
text-align: center;
|
|
35623
|
-
border-top: 1px solid #f0f0f0;
|
|
35624
|
-
border-radius: 0 0 2px 2px;
|
|
35625
36026
|
transition: all 0.3s;
|
|
35626
36027
|
}
|
|
35627
36028
|
.notice-icon__clear:hover {
|
|
@@ -35649,11 +36050,14 @@ ellipsis {
|
|
|
35649
36050
|
font-weight: normal;
|
|
35650
36051
|
color: rgba(0, 0, 0, 0.45);
|
|
35651
36052
|
}
|
|
36053
|
+
.notice-icon__item-extra .ant-tag {
|
|
36054
|
+
margin-right: 0;
|
|
36055
|
+
}
|
|
35652
36056
|
.page-header {
|
|
35653
36057
|
display: block;
|
|
35654
36058
|
padding: 8px 16px 0 16px;
|
|
35655
|
-
background-color: #fff;
|
|
35656
36059
|
border-bottom: 1px solid #f0f0f0;
|
|
36060
|
+
background-color: #fff;
|
|
35657
36061
|
}
|
|
35658
36062
|
.page-header__wide {
|
|
35659
36063
|
max-width: 1200px;
|
|
@@ -35812,8 +36216,8 @@ ellipsis {
|
|
|
35812
36216
|
}
|
|
35813
36217
|
.quick-menu,
|
|
35814
36218
|
.quick-menu__ctrl {
|
|
35815
|
-
background-color: #fff;
|
|
35816
36219
|
border: 1px solid #fff;
|
|
36220
|
+
background-color: #fff;
|
|
35817
36221
|
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);
|
|
35818
36222
|
}
|
|
35819
36223
|
.quick-menu__inner {
|
|
@@ -35827,9 +36231,9 @@ ellipsis {
|
|
|
35827
36231
|
left: -50px;
|
|
35828
36232
|
width: 50px;
|
|
35829
36233
|
height: 50px;
|
|
35830
|
-
text-align: center;
|
|
35831
36234
|
border-right: 0;
|
|
35832
36235
|
border-radius: 3px 0 0 3px;
|
|
36236
|
+
text-align: center;
|
|
35833
36237
|
}
|
|
35834
36238
|
.quick-menu__ctrl-icon {
|
|
35835
36239
|
font-size: 20px;
|
|
@@ -35867,9 +36271,9 @@ ellipsis {
|
|
|
35867
36271
|
}
|
|
35868
36272
|
.result__extra {
|
|
35869
36273
|
padding: 24px 40px;
|
|
36274
|
+
border-radius: 2px;
|
|
35870
36275
|
text-align: left;
|
|
35871
36276
|
background: #fafafa;
|
|
35872
|
-
border-radius: 2px;
|
|
35873
36277
|
}
|
|
35874
36278
|
@media screen and (max-width: 480px) {
|
|
35875
36279
|
.result__extra {
|
|
@@ -36126,8 +36530,8 @@ ellipsis {
|
|
|
36126
36530
|
margin-right: 4px;
|
|
36127
36531
|
}
|
|
36128
36532
|
.cell .img {
|
|
36129
|
-
vertical-align: middle;
|
|
36130
36533
|
border-radius: 4px;
|
|
36534
|
+
vertical-align: middle;
|
|
36131
36535
|
}
|
|
36132
36536
|
.cell .unit {
|
|
36133
36537
|
margin-left: 2px;
|
|
@@ -36232,8 +36636,8 @@ g2-tag-cloud {
|
|
|
36232
36636
|
.g2-mini-progress__value {
|
|
36233
36637
|
width: 0;
|
|
36234
36638
|
height: 100%;
|
|
36235
|
-
background-color: #1890ff;
|
|
36236
36639
|
border-radius: 1px 0 0 1px;
|
|
36640
|
+
background-color: #1890ff;
|
|
36237
36641
|
transition: all 0.4s cubic-bezier(0.08, 0.82, 0.17, 1) 0s;
|
|
36238
36642
|
}
|
|
36239
36643
|
.g2-mini-progress__target {
|