bri-components 1.3.78 → 1.3.79
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/package.json
CHANGED
|
@@ -155,8 +155,8 @@
|
|
|
155
155
|
<style lang="less">
|
|
156
156
|
.DshControlInput {
|
|
157
157
|
.ivu-icon {
|
|
158
|
-
padding: 2px
|
|
159
|
-
color:
|
|
158
|
+
padding: 2px 7px 2px 3px;
|
|
159
|
+
color: #808695;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
.ivu-tag-size-medium {
|
|
@@ -168,5 +168,9 @@
|
|
|
168
168
|
padding: 0px;
|
|
169
169
|
}
|
|
170
170
|
}
|
|
171
|
+
|
|
172
|
+
&:hover {
|
|
173
|
+
border-color: #64c6d1;
|
|
174
|
+
}
|
|
171
175
|
}
|
|
172
176
|
</style>
|
|
@@ -32,8 +32,7 @@
|
|
|
32
32
|
<dsh-control-input
|
|
33
33
|
:class="{
|
|
34
34
|
...commonClass,
|
|
35
|
-
'bri-control-nodata': this.$isEmptyData(this.showVal0)
|
|
36
|
-
'DshDaterange-item': true
|
|
35
|
+
'bri-control-nodata': this.$isEmptyData(this.showVal0)
|
|
37
36
|
}"
|
|
38
37
|
:value="showVal0"
|
|
39
38
|
:disabled="selfPropsObj._disabled"
|
|
@@ -61,8 +60,7 @@
|
|
|
61
60
|
<dsh-control-input
|
|
62
61
|
:class="{
|
|
63
62
|
...commonClass,
|
|
64
|
-
'bri-control-nodata': this.$isEmptyData(this.showVal1)
|
|
65
|
-
'DshDaterange-item': true
|
|
63
|
+
'bri-control-nodata': this.$isEmptyData(this.showVal1)
|
|
66
64
|
}"
|
|
67
65
|
:value="showVal1"
|
|
68
66
|
:disabled="selfPropsObj._disabled"
|
|
@@ -344,9 +342,5 @@
|
|
|
344
342
|
text-align: center;
|
|
345
343
|
color: @textColor;
|
|
346
344
|
}
|
|
347
|
-
|
|
348
|
-
&-item {
|
|
349
|
-
|
|
350
|
-
}
|
|
351
345
|
}
|
|
352
346
|
</style>
|
|
@@ -219,12 +219,36 @@
|
|
|
219
219
|
</style>
|
|
220
220
|
<style lang="less">
|
|
221
221
|
.DshDefaultSearch {
|
|
222
|
-
input,
|
|
223
|
-
.ivu-select-selection,
|
|
222
|
+
.ivu-input,
|
|
224
223
|
.ivu-input-number,
|
|
225
|
-
.
|
|
226
|
-
.
|
|
224
|
+
.ivu-select-selection,
|
|
225
|
+
.DshControlInput {
|
|
227
226
|
border-radius: 0px!important;
|
|
228
227
|
}
|
|
228
|
+
|
|
229
|
+
/* 为了消除表格类型字段检验后,外层出现.ivu-form-item-error的class,对默认筛选的控件样式的影响 */
|
|
230
|
+
.ivu-input,
|
|
231
|
+
.ivu-input-number,
|
|
232
|
+
.ivu-select-selection,
|
|
233
|
+
.DshControlInput {
|
|
234
|
+
border-color: #E5E5E6;
|
|
235
|
+
|
|
236
|
+
&-focused,
|
|
237
|
+
&:focus {
|
|
238
|
+
border-color: #64c6d1;
|
|
239
|
+
box-shadow: 0 0 0 2px rgba(61, 184, 197, 0.2);
|
|
240
|
+
}
|
|
241
|
+
&:hover {
|
|
242
|
+
border-color: #64c6d1;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
.ivu-select-visible .ivu-select-selection {
|
|
246
|
+
border-color: #64c6d1;
|
|
247
|
+
box-shadow: 0 0 0 2px rgba(61, 184, 197, 0.2);
|
|
248
|
+
}
|
|
249
|
+
.ivu-input-icon,
|
|
250
|
+
.ivu-select-arrow {
|
|
251
|
+
color: #808695;
|
|
252
|
+
}
|
|
229
253
|
}
|
|
230
254
|
</style>
|