raise-common-lib 0.0.91 → 0.0.93
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
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
.e-datepicker {
|
|
9
9
|
height: var(--rs-input-line-height);
|
|
10
10
|
font-family: var(--rs-font-family);
|
|
11
|
+
background-color: #fff;
|
|
11
12
|
.e-input-group {
|
|
12
13
|
height: 100%;
|
|
13
14
|
min-height: 100%;
|
|
@@ -350,10 +351,15 @@
|
|
|
350
351
|
display: block;
|
|
351
352
|
width: 16px;
|
|
352
353
|
height: 16px;
|
|
353
|
-
background-image: url("/assets/img/calendar.svg");
|
|
354
|
+
background-image: url("/assets/img/calendar-disabled.svg");
|
|
354
355
|
background-size: cover;
|
|
355
356
|
background-position: center;
|
|
356
357
|
}
|
|
358
|
+
&:hover{
|
|
359
|
+
&::before {
|
|
360
|
+
background-image: url("/assets/img/calendar.svg");
|
|
361
|
+
}
|
|
362
|
+
}
|
|
357
363
|
}
|
|
358
364
|
&.e-disabled {
|
|
359
365
|
.e-input-group-icon {
|