eoss-mobiles 0.2.51 → 0.2.53
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/lib/date.js +45 -21
- package/lib/eoss-mobile.common.js +92 -51
- package/lib/field.js +13 -2
- package/lib/index.js +1 -1
- package/lib/picker.js +6 -4
- package/lib/selector.js +12 -8
- package/lib/theme-chalk/base.css +1 -1
- package/lib/theme-chalk/field.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/date/src/date-picker.vue +2 -7
- package/packages/date/src/main.vue +44 -9
- package/packages/field/src/main.vue +11 -1
- package/packages/picker/src/main.vue +3 -2
- package/packages/selector/src/selector-field.vue +1 -1
- package/packages/theme-chalk/lib/base.css +1 -1
- package/packages/theme-chalk/lib/field.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/base.scss +13 -9
- package/packages/theme-chalk/src/field.scss +17 -15
- package/src/index.js +1 -1
|
@@ -166,21 +166,25 @@ $end: -51;
|
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
}
|
|
169
|
-
.van-button--primary{
|
|
169
|
+
.van-button--primary {
|
|
170
170
|
background-color: $--color-primary;
|
|
171
|
-
border-color
|
|
171
|
+
border-color: $--color-primary;
|
|
172
172
|
}
|
|
173
|
-
.van-button--plain.van-button--primary{
|
|
173
|
+
.van-button--plain.van-button--primary {
|
|
174
174
|
background-color: #fff;
|
|
175
|
-
color
|
|
175
|
+
color: $--color-primary;
|
|
176
176
|
}
|
|
177
|
-
|
|
177
|
+
.van-radio {
|
|
178
178
|
margin-bottom: 8px;
|
|
179
179
|
}
|
|
180
|
-
.van-dialog__confirm,
|
|
181
|
-
|
|
180
|
+
.van-dialog__confirm,
|
|
181
|
+
.van-dialog__confirm:active {
|
|
182
|
+
color: $--color-primary;
|
|
182
183
|
}
|
|
183
|
-
.van-image{
|
|
184
|
+
.van-image {
|
|
184
185
|
width: 100%;
|
|
185
186
|
height: 100%;
|
|
186
|
-
}
|
|
187
|
+
}
|
|
188
|
+
.van-field--disabled .van-field__label{
|
|
189
|
+
color: unset !important;
|
|
190
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
.em-input {
|
|
2
|
+
position: relative;
|
|
2
3
|
.van-field__left-icon {
|
|
3
4
|
display: flex;
|
|
4
5
|
align-items: center;
|
|
@@ -8,21 +9,7 @@
|
|
|
8
9
|
text-align: right;
|
|
9
10
|
}
|
|
10
11
|
}
|
|
11
|
-
|
|
12
|
-
.van-cell::after {
|
|
13
|
-
position: absolute;
|
|
14
|
-
box-sizing: border-box;
|
|
15
|
-
content: ' ';
|
|
16
|
-
display: inline-block;
|
|
17
|
-
pointer-events: none;
|
|
18
|
-
right: 16px;
|
|
19
|
-
bottom: 0;
|
|
20
|
-
left: 16px;
|
|
21
|
-
border-bottom: 1px solid #ebedf0;
|
|
22
|
-
-webkit-transform: scaleY(0.5);
|
|
23
|
-
transform: scaleY(0.5);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
12
|
+
|
|
26
13
|
.input-wrap {
|
|
27
14
|
flex-wrap: wrap;
|
|
28
15
|
.van-field__label {
|
|
@@ -95,3 +82,18 @@
|
|
|
95
82
|
}
|
|
96
83
|
}
|
|
97
84
|
}
|
|
85
|
+
.em-input-border::after{
|
|
86
|
+
// .van-cell::after {
|
|
87
|
+
position: absolute;
|
|
88
|
+
box-sizing: border-box;
|
|
89
|
+
content: ' ';
|
|
90
|
+
display: inline-block;
|
|
91
|
+
pointer-events: none;
|
|
92
|
+
right: 16px;
|
|
93
|
+
bottom: 0;
|
|
94
|
+
left: 16px;
|
|
95
|
+
border-bottom: 1px solid #ebedf0;
|
|
96
|
+
-webkit-transform: scaleY(0.5);
|
|
97
|
+
transform: scaleY(0.5);
|
|
98
|
+
// }
|
|
99
|
+
}
|