raise-common-lib-new 0.0.25 → 0.0.26
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
|
@@ -6,12 +6,14 @@
|
|
|
6
6
|
.e-dropdowntree,
|
|
7
7
|
.e-daterangepicker,
|
|
8
8
|
.e-datepicker,
|
|
9
|
+
.e-datetimepicker,
|
|
9
10
|
.e-rowcell,
|
|
10
11
|
.e-pivot-calculated-div {
|
|
12
|
+
display: block;
|
|
11
13
|
height: var(--rs-input-line-height);
|
|
12
14
|
font-family: var(--rs-font-family);
|
|
13
15
|
background-color: #fff;
|
|
14
|
-
|
|
16
|
+
> .e-input-group {
|
|
15
17
|
height: 100%;
|
|
16
18
|
min-height: 100%;
|
|
17
19
|
border-radius: var(--rs-input-border-radius);
|
|
@@ -151,7 +153,18 @@
|
|
|
151
153
|
}
|
|
152
154
|
}
|
|
153
155
|
}
|
|
154
|
-
|
|
156
|
+
.e-datetimepicker {
|
|
157
|
+
> .e-input-group {
|
|
158
|
+
&.e-icon-anim {
|
|
159
|
+
.e-input-group-icon {
|
|
160
|
+
&::before {
|
|
161
|
+
transform: none;
|
|
162
|
+
transition: none;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
155
168
|
// 下拉弹窗
|
|
156
169
|
.e-popup.e-ddl {
|
|
157
170
|
font-family: var(--rs-font-family);
|
|
@@ -343,6 +356,7 @@
|
|
|
343
356
|
|
|
344
357
|
// daterangepicker datepicker
|
|
345
358
|
.e-daterangepicker,
|
|
359
|
+
.e-datetimepicker,
|
|
346
360
|
.e-datepicker {
|
|
347
361
|
.e-input-group {
|
|
348
362
|
height: var(--rs-input-line-height) !important;
|
|
@@ -357,22 +371,40 @@
|
|
|
357
371
|
background-size: cover;
|
|
358
372
|
background-position: center;
|
|
359
373
|
}
|
|
360
|
-
&:hover{
|
|
374
|
+
&:hover {
|
|
361
375
|
&::before {
|
|
362
376
|
background-image: url("/assets/img/calendar.svg");
|
|
363
377
|
}
|
|
364
378
|
}
|
|
365
379
|
}
|
|
380
|
+
.e-time-icon {
|
|
381
|
+
&::before {
|
|
382
|
+
display: block;
|
|
383
|
+
width: 14px;
|
|
384
|
+
height: 14px;
|
|
385
|
+
background-image: url("/assets/img/time-disabled.svg");
|
|
386
|
+
}
|
|
387
|
+
&:hover {
|
|
388
|
+
&::before {
|
|
389
|
+
background-image: url("/assets/img/time.svg");
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
|
|
366
394
|
&.e-disabled {
|
|
367
395
|
.e-input-group-icon {
|
|
368
396
|
&::before {
|
|
369
397
|
background-image: url("/assets/img/calendar-disabled.svg");
|
|
370
398
|
}
|
|
371
399
|
}
|
|
400
|
+
.e-time-icon {
|
|
401
|
+
&::before {
|
|
402
|
+
background-image: url("/assets/img/time-disabled.svg");
|
|
403
|
+
}
|
|
404
|
+
}
|
|
372
405
|
}
|
|
373
406
|
}
|
|
374
407
|
}
|
|
375
|
-
|
|
376
408
|
.e-daterangepicker.e-popup,
|
|
377
409
|
.e-datepicker.e-popup {
|
|
378
410
|
height: auto;
|
|
@@ -559,6 +591,51 @@
|
|
|
559
591
|
}
|
|
560
592
|
}
|
|
561
593
|
|
|
562
|
-
.e-
|
|
594
|
+
.e-datetimepicker.e-popup {
|
|
595
|
+
height: auto;
|
|
596
|
+
border-radius: 4px;
|
|
597
|
+
.e-list-item {
|
|
598
|
+
font-family: Arial;
|
|
599
|
+
font-size: var(--rs-input-font-size) !important;
|
|
600
|
+
min-height: var(--rs-input-line-height) !important;
|
|
601
|
+
line-height: var(--rs-input-line-height) !important;
|
|
602
|
+
// 下拉选项超出正常显示,不显示缩略号
|
|
603
|
+
white-space: normal;
|
|
604
|
+
text-indent: 0;
|
|
605
|
+
color: #44566c !important;
|
|
606
|
+
border-radius: 4px;
|
|
607
|
+
&.e-item-focus {
|
|
608
|
+
background: transparent !important;
|
|
609
|
+
box-shadow: none !important;
|
|
610
|
+
}
|
|
611
|
+
&:hover {
|
|
612
|
+
background: rgba(31, 123, 255, 0.04) !important;
|
|
613
|
+
border-color: transparent !important;
|
|
614
|
+
}
|
|
615
|
+
&.e-active {
|
|
616
|
+
background: rgba(31, 123, 255, 0.1) !important;
|
|
617
|
+
border-color: transparent !important;
|
|
618
|
+
.e-checkbox-wrapper {
|
|
619
|
+
background-color: transparent !important;
|
|
620
|
+
&:hover {
|
|
621
|
+
background-color: transparent !important;
|
|
622
|
+
}
|
|
623
|
+
.e-check,
|
|
624
|
+
.e-stop {
|
|
625
|
+
background-color: #007bff !important;
|
|
626
|
+
border-color: #007bff !important;
|
|
627
|
+
color: #fff !important;
|
|
628
|
+
&:hover {
|
|
629
|
+
background-color: #007bff !important;
|
|
630
|
+
border-color: #007bff !important;
|
|
631
|
+
color: #fff !important;
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.e-input-group.e-input-fucos {
|
|
563
640
|
box-shadow: none !important;
|
|
564
641
|
}
|