form-driver 0.4.27 → 0.4.28
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/dist/m3.css +11 -3
- package/dist/m3.js +1 -1
- package/es/m3.css +11 -3
- package/es/m3.js +2 -2
- package/lib/m3.css +11 -3
- package/lib/m3.js +2 -2
- package/package.json +1 -1
- package/src/framework/MViewer.less +11 -3
- package/src/ui/editor/basic/ADatetimePicker.tsx +1 -1
- package/src/ui/editor/basic/ARangePicker.tsx +1 -1
package/dist/m3.css
CHANGED
|
@@ -38,12 +38,20 @@
|
|
|
38
38
|
.MEditor_p .AForm_removeBtn_disabled {
|
|
39
39
|
color: lightgray;
|
|
40
40
|
}
|
|
41
|
-
/** 回填字段的样式,例如日期选择/gb2260
|
|
41
|
+
/** 回填字段的样式,例如日期选择/gb2260选项下,与PC端一致的边框样式 */
|
|
42
42
|
.MEditor_p .backfill {
|
|
43
|
-
border
|
|
43
|
+
border: 1px solid #d9d9d9;
|
|
44
|
+
border-radius: 2px;
|
|
45
|
+
padding: 4px 11px;
|
|
46
|
+
line-height: 1.5715;
|
|
47
|
+
transition: all 0.3s;
|
|
44
48
|
}
|
|
45
49
|
.MEditor_p .backfill_empty {
|
|
46
|
-
border
|
|
50
|
+
border: 1px solid #d9d9d9;
|
|
51
|
+
border-radius: 2px;
|
|
52
|
+
padding: 4px 11px;
|
|
53
|
+
line-height: 1.5715;
|
|
54
|
+
transition: all 0.3s;
|
|
47
55
|
color: gray;
|
|
48
56
|
}
|
|
49
57
|
.MEditor_p input,
|