ls-pro-common 1.1.4 → 3.0.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.
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _classnames = _interopRequireDefault(require("classnames"));
11
+ require("./common.less");
12
+ var GroupTip = function GroupTip(_ref) {
13
+ var children = _ref.children,
14
+ className = _ref.className,
15
+ text = _ref.text,
16
+ _ref$style = _ref.style,
17
+ style = _ref$style === void 0 ? {} : _ref$style,
18
+ _ref$isInner = _ref.isInner,
19
+ isInner = _ref$isInner === void 0 ? true : _ref$isInner;
20
+ var cls = (0, _classnames.default)('ls-group-tip', className);
21
+ var styles = isInner ? {} : {
22
+ paddingTop: '12px',
23
+ paddingLeft: '20px',
24
+ borderTopLeftRadius: '8px',
25
+ borderTopRightRadius: '8px'
26
+ };
27
+ return /*#__PURE__*/_react.default.createElement("div", {
28
+ className: cls,
29
+ style: (0, _objectSpread2.default)((0, _objectSpread2.default)({}, styles), style)
30
+ }, /*#__PURE__*/_react.default.createElement("div", {
31
+ className: "ls-group-divider"
32
+ }), /*#__PURE__*/_react.default.createElement("div", {
33
+ className: "ls-group-text"
34
+ }, text), children && /*#__PURE__*/_react.default.createElement("div", {
35
+ className: "flex"
36
+ }, children));
37
+ };
38
+ var _default = GroupTip;
39
+ exports.default = _default;
@@ -5,14 +5,17 @@ Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
7
  exports.default = void 0;
8
+ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
8
9
  var _react = _interopRequireDefault(require("react"));
9
10
  var _usePermission2 = _interopRequireDefault(require("../hooks/usePermission"));
11
+ var _excluded = ["children", "rightValue"];
10
12
  var Permission = function Permission(_ref) {
11
13
  var children = _ref.children,
12
- rightValue = _ref.rightValue;
14
+ rightValue = _ref.rightValue,
15
+ rest = (0, _objectWithoutProperties2.default)(_ref, _excluded);
13
16
  var _usePermission = (0, _usePermission2.default)(),
14
17
  checkRight = _usePermission.checkRight;
15
- return checkRight(rightValue) ? /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, children) : null;
18
+ return checkRight(rightValue) ? /*#__PURE__*/_react.default.createElement(_react.default.Fragment, rest, children) : null;
16
19
  };
17
20
  var _default = Permission;
18
21
  exports.default = _default;
@@ -0,0 +1,207 @@
1
+ .ant-timeline-item-tail {
2
+ border-left: 2px dotted var(--ant-primary-color);
3
+ }
4
+
5
+ .ant-timeline-item-head-blue {
6
+ background: var(--ant-primary-color);
7
+ }
8
+
9
+ .ant-row {
10
+ width: 100%;
11
+ }
12
+
13
+ .ant-popover {
14
+ max-width: min-content !important;
15
+ }
16
+
17
+
18
+
19
+ .ant-input-has-value:hover {
20
+ .ant-input-clear-icon {
21
+ visibility: visible;
22
+ }
23
+ }
24
+
25
+ .ant-modal-confirm-body {
26
+ .ant-modal-confirm-content {
27
+ max-height: 60vh;
28
+ overflow : auto;
29
+ }
30
+ }
31
+
32
+ .ant-message-notice-content {
33
+ border-radius: 4px !important;
34
+ }
35
+
36
+ .ant-modal-content {
37
+ border-radius: 8px !important;
38
+ // box-shadow : 0px 4px 6px rgba(0, 0, 0, 0.05) !important;
39
+ }
40
+
41
+ .ant-input-number,
42
+ .ant-input-affix-wrapper,
43
+ .ant-picker,
44
+ .ant-select-selector {
45
+ border-radius: 4px !important;
46
+ }
47
+
48
+ .ant-picker-range-separator {
49
+ padding: 0 2px !important;
50
+
51
+ .ant-picker-separator {
52
+ font-size: 14px;
53
+ }
54
+ }
55
+
56
+
57
+ .ant-btn {
58
+ height : 32px;
59
+ background-color: #EAEEF2;
60
+ border-color : transparent;
61
+ color : #595959;
62
+ border-radius : 4px;
63
+
64
+ &:hover,
65
+ &:focus {
66
+ background-color: #D2D6DD;
67
+ border-color : transparent;
68
+ color : #000;
69
+ }
70
+
71
+ &:active {
72
+ background-color: #B5BBC5;
73
+ border-color : transparent;
74
+ color : #141414;
75
+ }
76
+
77
+ &[disabled],
78
+ &[disabled]:hover,
79
+ &[disabled]:focus,
80
+ &[disabled]:active {
81
+ background-color: #D2D6DD;
82
+ border-color : transparent;
83
+ color : #BFBFBF;
84
+ }
85
+ }
86
+
87
+ .ant-btn-primary {
88
+ background-color: var(--ant-primary-color);
89
+ border-color : transparent;
90
+ color : #fff;
91
+
92
+ &:hover,
93
+ &:focus {
94
+ background-color: var(--ant-primary-color-hover);
95
+ border-color : transparent;
96
+ color : #fff;
97
+ }
98
+
99
+ &:active {
100
+ background-color: var(--ant-primary-color-active);
101
+ border-color : transparent;
102
+ color : #fff;
103
+ }
104
+
105
+ &[disabled],
106
+ &[disabled]:hover,
107
+ &[disabled]:focus,
108
+ &[disabled]:active {
109
+ background-color: rgba(24, 105, 237, 0.4);
110
+ border-color : transparent;
111
+ color : #fff;
112
+ }
113
+ }
114
+
115
+ .ant-btn-dangerous {
116
+ background-color: #FFCCC7;
117
+ border-color : transparent;
118
+ color : #F5222D;
119
+
120
+ &:hover,
121
+ &:focus {
122
+ background-color: #FFF1F0;
123
+ border-color : transparent;
124
+ color : #F5222D;
125
+ }
126
+
127
+ &:active {
128
+ background-color: #FFA39E;
129
+ border-color : transparent;
130
+ color : #F5222D;
131
+ }
132
+
133
+ &[disabled],
134
+ &[disabled]:hover,
135
+ &[disabled]:focus,
136
+ &[disabled]:active {
137
+ background-color: #FFCCC7;
138
+ border-color : transparent;
139
+ color : #FFA39E;
140
+ }
141
+ }
142
+
143
+ .ant-btn-link {
144
+ background-color: transparent;
145
+ border-color : transparent;
146
+ color : var(--ant-primary-color);
147
+ padding : 4px 8px;
148
+
149
+ &[disabled],
150
+ &[disabled]:hover,
151
+ &[disabled]:focus,
152
+ &[disabled]:active,
153
+ &:hover,
154
+ &:focus,
155
+ &:active {
156
+ background-color: transparent;
157
+ border-color : transparent;
158
+ }
159
+
160
+ &:hover,
161
+ &:focus {
162
+ color: var(--ant-primary-color-hover);
163
+ }
164
+
165
+ &:active {
166
+ color: var(--ant-primary-color-active);
167
+ }
168
+
169
+ &[disabled],
170
+ &[disabled]:hover,
171
+ &[disabled]:focus,
172
+ &[disabled]:active {
173
+ color: #A7B5CC;
174
+ }
175
+ }
176
+
177
+ .ant-btn-text {
178
+ background-color: transparent;
179
+ border-color : transparent;
180
+ color : #8C8C8C;
181
+ padding : 4px 8px;
182
+
183
+ &[disabled],
184
+ &[disabled]:hover,
185
+ &[disabled]:focus,
186
+ &[disabled]:active,
187
+ &:hover,
188
+ &:focus,
189
+ &:active {
190
+ background-color: transparent;
191
+ border-color : transparent;
192
+
193
+ }
194
+
195
+ &:hover,
196
+ &:active,
197
+ &:focus {
198
+ color: var(--ant-primary-color-hover);
199
+ }
200
+
201
+ &[disabled],
202
+ &[disabled]:hover,
203
+ &[disabled]:focus,
204
+ &[disabled]:active {
205
+ color: #d9d9d9;
206
+ }
207
+ }
@@ -1,21 +1,21 @@
1
1
  body {
2
- --ant-primary-color : #1869ed;
3
- --ant-primary-color-hover : #418efa;
4
- --ant-primary-color-active : #0a4cc7;
5
- --ant-primary-color-outline : rgba(24, 105, 237, 0.2);
2
+ --ant-primary-color : #0E55CB;
3
+ --ant-primary-color-hover : #3277d9;
4
+ --ant-primary-color-active : #033ca6;
5
+ --ant-primary-color-outline : rgba(14, 85, 203, 0.2);
6
6
  --ant-primary-1 : #e6f4ff;
7
- --ant-primary-2 : #bddfff;
8
- --ant-primary-3 : #94c8ff;
9
- --ant-primary-4 : #6baeff;
10
- --ant-primary-5 : #418efa;
11
- --ant-primary-6 : #1869ed;
12
- --ant-primary-7 : #0a4cc7;
13
- --ant-primary-color-deprecated-pure : #bed5fa;
14
- --ant-primary-color-deprecated-l-35 : #bed5fa;
15
- --ant-primary-color-deprecated-l-20 : #77a6f4;
16
- --ant-primary-color-deprecated-t-20 : #4687f1;
17
- --ant-primary-color-deprecated-t-50 : #8cb4f6;
18
- --ant-primary-color-deprecated-f-12 : rgba(24, 105, 237, 0.12);
7
+ --ant-primary-2 : #b5dbff;
8
+ --ant-primary-3 : #85baf2;
9
+ --ant-primary-4 : #5a99e6;
10
+ --ant-primary-5 : #3277d9;
11
+ --ant-primary-6 : #0E55CB;
12
+ --ant-primary-7 : #033ca6;
13
+ --ant-primary-color-deprecated-pure : #94b9f8;
14
+ --ant-primary-color-deprecated-l-35 : #94b9f8;
15
+ --ant-primary-color-deprecated-l-20 : #4c8bf3;
16
+ --ant-primary-color-deprecated-t-20 : #3e77d5;
17
+ --ant-primary-color-deprecated-t-50 : #87aae5;
18
+ --ant-primary-color-deprecated-f-12 : rgba(14, 85, 203, 0.12);
19
19
  --ant-primary-color-active-deprecated-f-30: rgba(230, 244, 255, 0.3);
20
20
  --ant-primary-color-active-deprecated-d-02: #dcf0ff;
21
21
  --ant-success-color : #52c41a;
@@ -36,9 +36,10 @@ body {
36
36
  --ant-warning-color-outline : rgba(250, 173, 20, 0.2);
37
37
  --ant-warning-color-deprecated-bg : #fffbe6;
38
38
  --ant-warning-color-deprecated-border : #ffe58f;
39
- --ant-info-color : #1869ed;
39
+ --ant-info-color : #0E55CB;
40
40
  --ant-info-color-deprecated-bg : #e6f4ff;
41
- --ant-info-color-deprecated-border : #94c8ff;
41
+ --ant-info-color-deprecated-border : #85baf2;
42
+
42
43
 
43
44
  // --ant-primary-color : #4997E6;
44
45
  // --ant-primary-color-hover : #74b7f2;
@@ -82,52 +83,72 @@ body {
82
83
  // --ant-info-color-deprecated-border : #ccebff;
83
84
  }
84
85
 
86
+ * ::-webkit-scrollbar-thumb {
87
+ background-color: rgba(101, 100, 99, 0.5);
88
+ border-radius : 6px;
89
+
90
+ &:hover {
91
+ background-color: rgba(101, 100, 99, 0.8);
92
+ border-radius : 6px;
93
+ }
94
+ }
95
+
96
+ * ::-webkit-scrollbar {
97
+ width : 8px;
98
+ height : 8px;
99
+ background-color: transparent;
100
+ }
101
+
102
+ * {
103
+ scrollbar-width: thin;
104
+ }
105
+
85
106
 
86
107
  body.theme-yellow {
87
- --ant-primary-color: #fa8500;
88
- --ant-primary-color-hover: #ffa229;
89
- --ant-primary-color-active: #d46a00;
90
- --ant-primary-color-outline: rgba(250, 133, 0, 0.2);
91
- --ant-primary-bg: #fff;
92
- --ant-primary-side: #fff7e6;
93
- --ant-primary-0: #ffd9ad;
94
- --ant-primary-1: #fff7e6;
95
- --ant-primary-2: #ffe0a3;
96
- --ant-primary-3: #ffce7a;
97
- --ant-primary-4: #ffba52;
98
- --ant-primary-5: #ffa229;
99
- --ant-primary-6: #fa8500;
100
- --ant-primary-7: #d46a00;
101
- --ant-primary-color-deprecated-pure: #ffd9ad;
102
- --ant-primary-color-deprecated-l-35: #ffd9ad;
103
- --ant-primary-color-deprecated-l-20: #ffb561;
104
- --ant-primary-color-deprecated-t-20: #fb9d33;
105
- --ant-primary-color-deprecated-t-50: #fdc280;
106
- --ant-primary-color-deprecated-f-12: rgba(250, 133, 0, 0.12);
108
+ --ant-primary-color : #fa8500;
109
+ --ant-primary-color-hover : #ffa229;
110
+ --ant-primary-color-active : #d46a00;
111
+ --ant-primary-color-outline : rgba(250, 133, 0, 0.2);
112
+ --ant-primary-bg : #fff;
113
+ --ant-primary-side : #fff7e6;
114
+ --ant-primary-0 : #ffd9ad;
115
+ --ant-primary-1 : #fff7e6;
116
+ --ant-primary-2 : #ffe0a3;
117
+ --ant-primary-3 : #ffce7a;
118
+ --ant-primary-4 : #ffba52;
119
+ --ant-primary-5 : #ffa229;
120
+ --ant-primary-6 : #fa8500;
121
+ --ant-primary-7 : #d46a00;
122
+ --ant-primary-color-deprecated-pure : #ffd9ad;
123
+ --ant-primary-color-deprecated-l-35 : #ffd9ad;
124
+ --ant-primary-color-deprecated-l-20 : #ffb561;
125
+ --ant-primary-color-deprecated-t-20 : #fb9d33;
126
+ --ant-primary-color-deprecated-t-50 : #fdc280;
127
+ --ant-primary-color-deprecated-f-12 : rgba(250, 133, 0, 0.12);
107
128
  --ant-primary-color-active-deprecated-f-30: rgba(255, 247, 230, 0.3);
108
129
  --ant-primary-color-active-deprecated-d-02: #fff4dc;
109
- --ant-success-color: #52c41a;
110
- --ant-success-color-hover: #73d13d;
111
- --ant-success-color-active: #389e0d;
112
- --ant-success-color-outline: rgba(82, 196, 26, 0.2);
113
- --ant-success-color-deprecated-bg: #f6ffed;
114
- --ant-success-color-deprecated-border: #b7eb8f;
115
- --ant-error-color: #ff4d4f;
116
- --ant-error-color-hover: #ff7875;
117
- --ant-error-color-active: #d9363e;
118
- --ant-error-color-outline: rgba(255, 77, 79, 0.2);
119
- --ant-error-color-deprecated-bg: #fff2f0;
120
- --ant-error-color-deprecated-border: #ffccc7;
121
- --ant-warning-color: #faad14;
122
- --ant-warning-color-hover: #ffc53d;
123
- --ant-warning-color-active: #d48806;
124
- --ant-warning-color-outline: rgba(250, 173, 20, 0.2);
125
- --ant-warning-color-deprecated-bg: #fffbe6;
126
- --ant-warning-color-deprecated-border: #ffe58f;
127
- --ant-info-color: #fa8500;
128
- --ant-info-color-deprecated-bg: #fff7e6;
129
- --ant-info-color-deprecated-border: #ffce7a;
130
- --antd-wave-shadow-color: #fa8500;
130
+ --ant-success-color : #52c41a;
131
+ --ant-success-color-hover : #73d13d;
132
+ --ant-success-color-active : #389e0d;
133
+ --ant-success-color-outline : rgba(82, 196, 26, 0.2);
134
+ --ant-success-color-deprecated-bg : #f6ffed;
135
+ --ant-success-color-deprecated-border : #b7eb8f;
136
+ --ant-error-color : #ff4d4f;
137
+ --ant-error-color-hover : #ff7875;
138
+ --ant-error-color-active : #d9363e;
139
+ --ant-error-color-outline : rgba(255, 77, 79, 0.2);
140
+ --ant-error-color-deprecated-bg : #fff2f0;
141
+ --ant-error-color-deprecated-border : #ffccc7;
142
+ --ant-warning-color : #faad14;
143
+ --ant-warning-color-hover : #ffc53d;
144
+ --ant-warning-color-active : #d48806;
145
+ --ant-warning-color-outline : rgba(250, 173, 20, 0.2);
146
+ --ant-warning-color-deprecated-bg : #fffbe6;
147
+ --ant-warning-color-deprecated-border : #ffe58f;
148
+ --ant-info-color : #fa8500;
149
+ --ant-info-color-deprecated-bg : #fff7e6;
150
+ --ant-info-color-deprecated-border : #ffce7a;
151
+ --antd-wave-shadow-color : #fa8500;
131
152
 
132
153
  .ant-table-cell,
133
154
  .ant-pro-table-alert-info-content {
@@ -151,44 +172,41 @@ body.theme-yellow {
151
172
  left : 0;
152
173
  right : 0;
153
174
  bottom : 0;
154
- background : white;
175
+ background : #f5f5f5;
155
176
  display : flex;
156
177
  flex-direction: column;
157
178
  z-index : 50;
158
179
 
159
180
  .dtl-header {
160
- display : flex;
161
- justify-items: center;
162
- padding : 8px 14px;
163
- border-bottom: 1px solid #f0f0f0;
164
-
165
- .dtl-back {
166
- display : flex;
167
- align-items : center;
168
- padding-right: 5px;
169
-
170
- >span {
171
- padding : 3px;
172
- border-radius: 2px;
173
-
174
- &:hover {
175
- background: var(--ant-primary-2);
176
- color : var(--ant-primary-color)
177
- }
178
- }
179
- }
181
+ display : flex;
182
+ justify-items : center;
183
+ padding : 8px 20px;
184
+ background : #fff;
185
+ // border-bottom: 1px solid #f0f0f0;
186
+
187
+ // .dtl-back {
188
+ // display : flex;
189
+ // align-items : center;
190
+ // padding-right: 5px;
191
+
192
+ // >span {
193
+ // padding : 3px;
194
+ // border-radius: 2px;
195
+
196
+ // &:hover {
197
+ // background: var(--ant-primary-2);
198
+ // color : var(--ant-primary-color)
199
+ // }
200
+ // }
201
+ // }
180
202
 
181
203
  .dtl-title {
182
- font-size: 14pt;
204
+ font-size: 14px;
183
205
  }
184
206
 
185
207
  .dtl-btns {
186
208
  flex : 1;
187
209
  text-align: right;
188
-
189
- button+button {
190
- margin-left: 8px;
191
- }
192
210
  }
193
211
  }
194
212
 
@@ -196,7 +214,6 @@ body.theme-yellow {
196
214
  height : 0;
197
215
  flex : 1;
198
216
  overflow: auto;
199
- padding : 12px;
200
217
  }
201
218
 
202
219
  .dtl-flex {
@@ -272,33 +289,6 @@ body.theme-yellow {
272
289
  }
273
290
  }
274
291
 
275
- .ant-btn {
276
- border-radius: 4px;
277
- border-color : var(--ant-primary-color);
278
- color : var(--ant-primary-color);
279
- height : 28px;
280
- line-height : 1.2;
281
- padding : 2px 15px;
282
-
283
- &:active {
284
- border-color: var(--ant-primary-color-hover);
285
- color : var(--ant-primary-color-hover);
286
- }
287
- }
288
-
289
- .ant-btn-icon-only {
290
- padding: 2px 0;
291
- }
292
-
293
- .ant-btn-primary {
294
- color: #fff;
295
- }
296
-
297
- .ant-btn-dangerous {
298
- color : var(--ant-error-color);
299
- border-color: var(--ant-error-color);
300
- background : #fff;
301
- }
302
292
 
303
293
  a {
304
294
  color: var(--ant-primary-color);
@@ -399,102 +389,103 @@ a:hover {
399
389
  }
400
390
 
401
391
 
402
- .ant-input-has-value:hover {
403
- .ant-input-clear-icon {
404
- visibility: visible;
392
+ .ls-group-tip {
393
+ display : flex;
394
+ position : relative;
395
+ width : 100%;
396
+ align-items : center;
397
+ background : #fff;
398
+ padding-bottom: 12px;
399
+ .ls-group-divider {
400
+ height : 14px;
401
+ border-right: 2px solid var(--ant-primary-color);
405
402
  }
406
- }
407
403
 
408
- .ant-modal-confirm-body {
409
- .ant-modal-confirm-content {
410
- max-height: 60vh;
411
- overflow : auto;
404
+ .ls-group-text {
405
+ font-size : 14px;
406
+ color : #181818;
407
+ padding-left: 8px;
412
408
  }
413
409
  }
414
410
 
415
- .ant-row {
416
- width: 100%;
417
- }
418
411
 
419
- .ant-popover {
420
- max-width: min-content !important;
421
- }
412
+
422
413
  //-------------------省市区组件样式-----------
423
414
  //最外层盒子
424
415
  .ls-area-cascaded-box {
425
- width: 600px;
426
- display: flex;
416
+ width : 600px;
417
+ display : flex;
427
418
  flex-direction: column;
428
- transition: all 0.3s;
419
+ transition : all 0.3s;
429
420
 
430
421
  .ls-area-cascaded-header {
431
- width: 100%;
432
- padding: 2px 0 6px;
433
- border-bottom: 1px solid #f0f0f0;
434
- display: flex;
435
- flex-direction: row;
422
+ width : 100%;
423
+ padding : 2px 0 6px;
424
+ border-bottom : 1px solid #f0f0f0;
425
+ display : flex;
426
+ flex-direction : row;
436
427
  justify-content: space-around;
437
428
  justify-content: center;
438
429
 
439
430
  .ls-word-box-display {
440
- margin: 0 10px;
441
- font-size: 14px;
431
+ margin : 0 10px;
432
+ font-size : 14px;
442
433
  font-weight: 100;
443
434
 
444
435
  button {
445
- border: none;
436
+ border : none;
446
437
  background-color: var(--ant-primary-2, #f0f9ff);
447
438
 
448
439
  &[disabled] {
449
440
  background-color: #fafafa !important;
450
441
 
451
442
  .ls-myself-select-title-style {
452
- color: var(--ant-primary-4, #a3d7ff);
443
+ color : var(--ant-primary-4, #a3d7ff);
453
444
  transition: all 0.3s;
454
445
  }
455
446
  }
456
447
  }
457
448
 
458
449
  .ls-myself-select-title-style {
459
- color: var(--ant-primary-color, rgb(69, 154, 220));
460
- font-size: 14px;
450
+ color : var(--ant-primary-color, rgb(69, 154, 220));
451
+ font-size : 14px;
461
452
  font-weight: 600;
462
- transition: all 0.3s;
453
+ transition : all 0.3s;
463
454
  }
464
455
  }
465
456
 
466
457
  .ls-icon-box-display {
467
- display: flex;
458
+ display : flex;
468
459
  align-items: center;
469
460
  }
470
461
  }
471
462
 
472
463
  .ls-area-cascaded-body {
473
- width: 100%;
474
- min-height: 100px;
475
- max-height: 350px;
476
- overflow: auto;
477
- padding: 8px 12px 4px;
478
- display: grid;
464
+ width : 100%;
465
+ min-height : 100px;
466
+ max-height : 350px;
467
+ overflow : auto;
468
+ padding : 8px 12px 4px;
469
+ display : grid;
479
470
  grid-template-columns: repeat(4, 1fr);
480
- gap: 4px;
481
- justify-content: start;
482
- align-content: flex-start;
483
- align-items: center;
471
+ gap : 4px;
472
+ justify-content : start;
473
+ align-content : flex-start;
474
+ align-items : center;
484
475
 
485
476
  .ls-area-cascaded-span {
486
477
  text-align: center;
487
- padding: 6px 10px;
478
+ padding : 6px 10px;
488
479
 
489
480
  //文字不换行,超出省略
490
- overflow: hidden;
481
+ overflow : hidden;
491
482
  text-overflow: ellipsis;
492
- white-space: nowrap;
493
- cursor: pointer;
483
+ white-space : nowrap;
484
+ cursor : pointer;
494
485
 
495
486
  &.ls-area-selected,
496
487
  &:hover {
497
- color: var(--ant-primary-color, rgb(69, 154, 220));
488
+ color : var(--ant-primary-color, rgb(69, 154, 220));
498
489
  transition: all 0.3s;
499
490
  }
500
491
  }
@@ -508,4 +499,7 @@ a:hover {
508
499
  }
509
500
  }
510
501
 
502
+
503
+ @import url('./antd-custom.less');
504
+
511
505
  //-------------------省市区组件样式-----------