@hw-component/form 1.10.48 → 1.10.49
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/es/index.css +12 -0
- package/lib/index.css +12 -0
- package/package.json +1 -1
- package/src/components/InputGroup/index.less +12 -0
package/es/index.css
CHANGED
|
@@ -305,10 +305,22 @@
|
|
|
305
305
|
border-color: #ff4d4f !important;
|
|
306
306
|
}
|
|
307
307
|
.ant-hw-input-group-before-body .ant-hw-input-group-number-body {
|
|
308
|
+
border-radius: 0;
|
|
309
|
+
border-top-right-radius: 2px;
|
|
310
|
+
border-bottom-right-radius: 2px;
|
|
311
|
+
}
|
|
312
|
+
.ant-hw-input-group-before-body > .ant-picker {
|
|
313
|
+
border-radius: 0;
|
|
308
314
|
border-top-right-radius: 2px;
|
|
309
315
|
border-bottom-right-radius: 2px;
|
|
310
316
|
}
|
|
311
317
|
.ant-hw-input-group-after-body .ant-hw-input-group-number-body {
|
|
318
|
+
border-radius: 0;
|
|
319
|
+
border-top-left-radius: 2px;
|
|
320
|
+
border-bottom-left-radius: 2px;
|
|
321
|
+
}
|
|
322
|
+
.ant-hw-input-group-after-body > .ant-picker {
|
|
323
|
+
border-radius: 0;
|
|
312
324
|
border-top-left-radius: 2px;
|
|
313
325
|
border-bottom-left-radius: 2px;
|
|
314
326
|
}
|
package/lib/index.css
CHANGED
|
@@ -305,10 +305,22 @@
|
|
|
305
305
|
border-color: #ff4d4f !important;
|
|
306
306
|
}
|
|
307
307
|
.ant-hw-input-group-before-body .ant-hw-input-group-number-body {
|
|
308
|
+
border-radius: 0;
|
|
309
|
+
border-top-right-radius: 2px;
|
|
310
|
+
border-bottom-right-radius: 2px;
|
|
311
|
+
}
|
|
312
|
+
.ant-hw-input-group-before-body > .ant-picker {
|
|
313
|
+
border-radius: 0;
|
|
308
314
|
border-top-right-radius: 2px;
|
|
309
315
|
border-bottom-right-radius: 2px;
|
|
310
316
|
}
|
|
311
317
|
.ant-hw-input-group-after-body .ant-hw-input-group-number-body {
|
|
318
|
+
border-radius: 0;
|
|
319
|
+
border-top-left-radius: 2px;
|
|
320
|
+
border-bottom-left-radius: 2px;
|
|
321
|
+
}
|
|
322
|
+
.ant-hw-input-group-after-body > .ant-picker {
|
|
323
|
+
border-radius: 0;
|
|
312
324
|
border-top-left-radius: 2px;
|
|
313
325
|
border-bottom-left-radius: 2px;
|
|
314
326
|
}
|
package/package.json
CHANGED
|
@@ -27,12 +27,24 @@
|
|
|
27
27
|
}
|
|
28
28
|
.@{all-input-group}-before-body {
|
|
29
29
|
.@{all-input-group}-number-body {
|
|
30
|
+
border-radius: 0;
|
|
31
|
+
border-top-right-radius: @border-radius-base;
|
|
32
|
+
border-bottom-right-radius: @border-radius-base;
|
|
33
|
+
}
|
|
34
|
+
& > .@{ant-prefix}-picker {
|
|
35
|
+
border-radius: 0;
|
|
30
36
|
border-top-right-radius: @border-radius-base;
|
|
31
37
|
border-bottom-right-radius: @border-radius-base;
|
|
32
38
|
}
|
|
33
39
|
}
|
|
34
40
|
.@{all-input-group}-after-body {
|
|
35
41
|
.@{all-input-group}-number-body {
|
|
42
|
+
border-radius: 0;
|
|
43
|
+
border-top-left-radius: @border-radius-base;
|
|
44
|
+
border-bottom-left-radius: @border-radius-base;
|
|
45
|
+
}
|
|
46
|
+
& > .@{ant-prefix}-picker {
|
|
47
|
+
border-radius: 0;
|
|
36
48
|
border-top-left-radius: @border-radius-base;
|
|
37
49
|
border-bottom-left-radius: @border-radius-base;
|
|
38
50
|
}
|