starfish-form-custom 1.0.12 → 1.0.13
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/style.css +38 -0
- package/package.json +1 -1
- package/src/styles/formedit.scss +18 -0
package/dist/style.css
CHANGED
|
@@ -19,6 +19,25 @@
|
|
|
19
19
|
margin-bottom: 12px;
|
|
20
20
|
display: block;
|
|
21
21
|
}
|
|
22
|
+
.starfish-editor .el-form-item__content .el-input.el-input--default.el-input--suffix,
|
|
23
|
+
.starfish-editor .el-form-item__content .el-select.el-select--default,
|
|
24
|
+
.starfish-editor .el-form-item__content .el-input-number.el-input-number--default,
|
|
25
|
+
.starfish-editor .el-form-item__content .el-input.el-input--default.el-date-editor.el-date-editor--date,
|
|
26
|
+
.starfish-form .el-form-item__content .el-input.el-input--default.el-input--suffix,
|
|
27
|
+
.starfish-form .el-form-item__content .el-select.el-select--default,
|
|
28
|
+
.starfish-form .el-form-item__content .el-input-number.el-input-number--default,
|
|
29
|
+
.starfish-form .el-form-item__content .el-input.el-input--default.el-date-editor.el-date-editor--date,
|
|
30
|
+
.starfish-dynamicform .el-form-item__content .el-input.el-input--default.el-input--suffix,
|
|
31
|
+
.starfish-dynamicform .el-form-item__content .el-select.el-select--default,
|
|
32
|
+
.starfish-dynamicform .el-form-item__content .el-input-number.el-input-number--default,
|
|
33
|
+
.starfish-dynamicform .el-form-item__content .el-input.el-input--default.el-date-editor.el-date-editor--date {
|
|
34
|
+
width: 240px;
|
|
35
|
+
}
|
|
36
|
+
.starfish-editor .el-form-item__content .el-input__wrapper,
|
|
37
|
+
.starfish-form .el-form-item__content .el-input__wrapper,
|
|
38
|
+
.starfish-dynamicform .el-form-item__content .el-input__wrapper {
|
|
39
|
+
width: 220px;
|
|
40
|
+
}
|
|
22
41
|
.starfish-editor .el-form-item,
|
|
23
42
|
.starfish-form .el-form-item,
|
|
24
43
|
.starfish-dynamicform .el-form-item {
|
|
@@ -65,6 +84,25 @@
|
|
|
65
84
|
flex-direction: column;
|
|
66
85
|
align-items: flex-start;
|
|
67
86
|
}
|
|
87
|
+
.starfish-editor .starfish-formitem.starfish-vertical .control .el-input.el-input--default.el-input--suffix,
|
|
88
|
+
.starfish-editor .starfish-formitem.starfish-vertical .control .el-select.el-select--default,
|
|
89
|
+
.starfish-editor .starfish-formitem.starfish-vertical .control .el-input-number.el-input-number--default,
|
|
90
|
+
.starfish-editor .starfish-formitem.starfish-vertical .control .el-input.el-input--default.el-date-editor.el-date-editor--date,
|
|
91
|
+
.starfish-form .starfish-formitem.starfish-vertical .control .el-input.el-input--default.el-input--suffix,
|
|
92
|
+
.starfish-form .starfish-formitem.starfish-vertical .control .el-select.el-select--default,
|
|
93
|
+
.starfish-form .starfish-formitem.starfish-vertical .control .el-input-number.el-input-number--default,
|
|
94
|
+
.starfish-form .starfish-formitem.starfish-vertical .control .el-input.el-input--default.el-date-editor.el-date-editor--date,
|
|
95
|
+
.starfish-dynamicform .starfish-formitem.starfish-vertical .control .el-input.el-input--default.el-input--suffix,
|
|
96
|
+
.starfish-dynamicform .starfish-formitem.starfish-vertical .control .el-select.el-select--default,
|
|
97
|
+
.starfish-dynamicform .starfish-formitem.starfish-vertical .control .el-input-number.el-input-number--default,
|
|
98
|
+
.starfish-dynamicform .starfish-formitem.starfish-vertical .control .el-input.el-input--default.el-date-editor.el-date-editor--date {
|
|
99
|
+
width: 240px;
|
|
100
|
+
}
|
|
101
|
+
.starfish-editor .starfish-formitem.starfish-vertical .control .el-input__wrapper,
|
|
102
|
+
.starfish-form .starfish-formitem.starfish-vertical .control .el-input__wrapper,
|
|
103
|
+
.starfish-dynamicform .starfish-formitem.starfish-vertical .control .el-input__wrapper {
|
|
104
|
+
width: 220px;
|
|
105
|
+
}
|
|
68
106
|
.starfish-editor .starfish-formitem.formCover,
|
|
69
107
|
.starfish-form .starfish-formitem.formCover,
|
|
70
108
|
.starfish-dynamicform .starfish-formitem.formCover {
|
package/package.json
CHANGED
package/src/styles/formedit.scss
CHANGED
|
@@ -5,6 +5,15 @@
|
|
|
5
5
|
margin-left: 0 !important;
|
|
6
6
|
margin-bottom: 12px;
|
|
7
7
|
display: block;
|
|
8
|
+
.el-input.el-input--default.el-input--suffix,
|
|
9
|
+
.el-select.el-select--default,
|
|
10
|
+
.el-input-number.el-input-number--default,
|
|
11
|
+
.el-input.el-input--default.el-date-editor.el-date-editor--date {
|
|
12
|
+
width: 240px;
|
|
13
|
+
}
|
|
14
|
+
.el-input__wrapper {
|
|
15
|
+
width: 220px;
|
|
16
|
+
}
|
|
8
17
|
}
|
|
9
18
|
.el-form-item {
|
|
10
19
|
margin-bottom: 0 !important;
|
|
@@ -33,6 +42,15 @@
|
|
|
33
42
|
flex-direction: column;
|
|
34
43
|
align-items: flex-start;
|
|
35
44
|
}
|
|
45
|
+
.el-input.el-input--default.el-input--suffix,
|
|
46
|
+
.el-select.el-select--default,
|
|
47
|
+
.el-input-number.el-input-number--default,
|
|
48
|
+
.el-input.el-input--default.el-date-editor.el-date-editor--date {
|
|
49
|
+
width: 240px;
|
|
50
|
+
}
|
|
51
|
+
.el-input__wrapper {
|
|
52
|
+
width: 220px;
|
|
53
|
+
}
|
|
36
54
|
}
|
|
37
55
|
}
|
|
38
56
|
&.formCover {
|