bri-components 1.3.79 → 1.3.80
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
|
@@ -227,28 +227,30 @@
|
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
/* 为了消除表格类型字段检验后,外层出现.ivu-form-item-error的class,对默认筛选的控件样式的影响 */
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
230
|
+
> div {
|
|
231
|
+
.ivu-input,
|
|
232
|
+
.ivu-input-number,
|
|
233
|
+
.ivu-select-selection,
|
|
234
|
+
.DshControlInput {
|
|
235
|
+
border-color: #E5E5E6;
|
|
235
236
|
|
|
236
|
-
|
|
237
|
-
|
|
237
|
+
&-focused,
|
|
238
|
+
&:focus {
|
|
239
|
+
border-color: #64c6d1;
|
|
240
|
+
box-shadow: 0 0 0 2px rgba(61, 184, 197, 0.2);
|
|
241
|
+
}
|
|
242
|
+
&:hover {
|
|
243
|
+
border-color: #64c6d1;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
.ivu-select-visible .ivu-select-selection {
|
|
238
247
|
border-color: #64c6d1;
|
|
239
248
|
box-shadow: 0 0 0 2px rgba(61, 184, 197, 0.2);
|
|
240
249
|
}
|
|
241
|
-
|
|
242
|
-
|
|
250
|
+
.ivu-input-icon,
|
|
251
|
+
.ivu-select-arrow {
|
|
252
|
+
color: #808695;
|
|
243
253
|
}
|
|
244
254
|
}
|
|
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
|
-
}
|
|
253
255
|
}
|
|
254
256
|
</style>
|