@seafile/seafile-calendar 1.0.0-alpha.1 → 1.0.0
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/assets/index.css +18 -8
- package/dist/rc-calendar.css +1178 -0
- package/dist/rc-calendar.css.map +1 -0
- package/dist/rc-calendar.js +7565 -0
- package/dist/rc-calendar.js.map +1 -0
- package/dist/rc-calendar.min.css +1178 -0
- package/dist/rc-calendar.min.css.map +1 -0
- package/dist/rc-calendar.min.js +1 -0
- package/es/Calendar.js +2 -11
- package/es/time/TimeInput.js +0 -2
- package/lib/Calendar.js +2 -11
- package/lib/time/TimeInput.js +0 -2
- package/package.json +1 -1
package/assets/index.css
CHANGED
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
.rc-calendar {
|
|
206
206
|
position: relative;
|
|
207
207
|
outline: none;
|
|
208
|
-
font-family: Arial,
|
|
208
|
+
font-family: Arial, "Hiragino Sans GB", "Microsoft Yahei", "Microsoft Sans Serif", "WenQuanYi Micro Hei", sans-serif;
|
|
209
209
|
width: -moz-fit-content;
|
|
210
210
|
width: fit-content;
|
|
211
211
|
list-style: none;
|
|
@@ -444,10 +444,6 @@
|
|
|
444
444
|
background: #fcecd9;
|
|
445
445
|
cursor: pointer;
|
|
446
446
|
}
|
|
447
|
-
.rc-calendar-selected-day .rc-calendar-date {
|
|
448
|
-
background: #ed7109;
|
|
449
|
-
color: #fff;
|
|
450
|
-
}
|
|
451
447
|
.rc-calendar-selected-date .rc-calendar-date {
|
|
452
448
|
background: #ed7109;
|
|
453
449
|
color: #fff;
|
|
@@ -477,6 +473,20 @@
|
|
|
477
473
|
.rc-calendar-next-month-btn-day .rc-calendar-date {
|
|
478
474
|
color: #bbb;
|
|
479
475
|
}
|
|
476
|
+
.rc-calendar-today .rc-calendar-date {
|
|
477
|
+
position: relative;
|
|
478
|
+
}
|
|
479
|
+
.rc-calendar-today .rc-calendar-date::before {
|
|
480
|
+
content: '';
|
|
481
|
+
background: #ed7109;
|
|
482
|
+
position: absolute;
|
|
483
|
+
width: 4px;
|
|
484
|
+
height: 4px;
|
|
485
|
+
border-radius: 50%;
|
|
486
|
+
left: 45%;
|
|
487
|
+
bottom: 0%;
|
|
488
|
+
display: inline-block;
|
|
489
|
+
}
|
|
480
490
|
.rc-calendar-right-panel {
|
|
481
491
|
height: inherit;
|
|
482
492
|
border-left: 1px solid #eee;
|
|
@@ -769,7 +779,7 @@
|
|
|
769
779
|
cursor: not-allowed;
|
|
770
780
|
}
|
|
771
781
|
.rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month {
|
|
772
|
-
background: #
|
|
782
|
+
background: #ed7109;
|
|
773
783
|
color: #fff;
|
|
774
784
|
}
|
|
775
785
|
.rc-calendar-month-panel-selected-cell .rc-calendar-month-panel-month:hover {
|
|
@@ -889,11 +899,11 @@
|
|
|
889
899
|
cursor: pointer;
|
|
890
900
|
}
|
|
891
901
|
.rc-calendar-year-panel-selected-cell .rc-calendar-year-panel-year {
|
|
892
|
-
background: #
|
|
902
|
+
background: #ed7109;
|
|
893
903
|
color: #fff;
|
|
894
904
|
}
|
|
895
905
|
.rc-calendar-year-panel-selected-cell .rc-calendar-year-panel-year:hover {
|
|
896
|
-
background: #
|
|
906
|
+
background: #ed7109;
|
|
897
907
|
color: #fff;
|
|
898
908
|
}
|
|
899
909
|
.rc-calendar-decade-panel {
|