@syncfusion/ej2-react-schedule 19.2.59 → 19.3.46
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/CHANGELOG.md +43 -2
- package/diConfig.json +2 -0
- package/dist/ej2-react-schedule.umd.min.js +1 -1
- package/package.json +8 -8
- package/src/schedule/schedule.component.d.ts +1 -0
- package/src/schedule/views-directive.d.ts +1 -0
- package/styles/bootstrap-dark.css +48 -66
- package/styles/bootstrap.css +28 -45
- package/styles/bootstrap4.css +28 -44
- package/styles/bootstrap5-dark.css +5172 -0
- package/styles/bootstrap5-dark.scss +2 -0
- package/styles/bootstrap5.css +5173 -0
- package/styles/bootstrap5.scss +2 -0
- package/styles/fabric-dark.css +29 -61
- package/styles/fabric.css +28 -45
- package/styles/highcontrast-light.css +28 -76
- package/styles/highcontrast.css +30 -49
- package/styles/material-dark.css +72 -79
- package/styles/material.css +32 -45
- package/styles/recurrence-editor/bootstrap-dark.css +0 -4
- package/styles/recurrence-editor/bootstrap.css +0 -4
- package/styles/recurrence-editor/bootstrap4.css +0 -4
- package/styles/recurrence-editor/bootstrap5-dark.css +479 -0
- package/styles/recurrence-editor/bootstrap5-dark.scss +1 -0
- package/styles/recurrence-editor/bootstrap5.css +479 -0
- package/styles/recurrence-editor/bootstrap5.scss +1 -0
- package/styles/recurrence-editor/fabric-dark.css +0 -4
- package/styles/recurrence-editor/fabric.css +0 -4
- package/styles/recurrence-editor/highcontrast-light.css +0 -4
- package/styles/recurrence-editor/highcontrast.css +0 -4
- package/styles/recurrence-editor/material-dark.css +0 -4
- package/styles/recurrence-editor/material.css +0 -4
- package/styles/recurrence-editor/tailwind-dark.css +0 -4
- package/styles/recurrence-editor/tailwind.css +0 -4
- package/styles/schedule/bootstrap-dark.css +48 -62
- package/styles/schedule/bootstrap.css +28 -41
- package/styles/schedule/bootstrap4.css +28 -40
- package/styles/schedule/bootstrap5-dark.css +4692 -0
- package/styles/schedule/bootstrap5-dark.scss +1 -0
- package/styles/schedule/bootstrap5.css +4693 -0
- package/styles/schedule/bootstrap5.scss +1 -0
- package/styles/schedule/fabric-dark.css +29 -57
- package/styles/schedule/fabric.css +28 -41
- package/styles/schedule/highcontrast-light.css +28 -72
- package/styles/schedule/highcontrast.css +30 -45
- package/styles/schedule/material-dark.css +72 -75
- package/styles/schedule/material.css +32 -41
- package/styles/schedule/tailwind-dark.css +53 -71
- package/styles/schedule/tailwind.css +53 -70
- package/styles/tailwind-dark.css +53 -75
- package/styles/tailwind.css +53 -74
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,48 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#I344571` - An alignment issue between the resource cells and work cells in timeline year has been fixed.
|
|
10
|
+
- `#FB29199` - Dragging an event from one month to another throws an exception in month view has been fixed.
|
|
11
|
+
- `#I344682` - An issue with virtual up-scrolling while enabling the `rowAutoHeight` property has been fixed.
|
|
12
|
+
|
|
13
|
+
## 19.3.44 (2021-10-05)
|
|
14
|
+
|
|
15
|
+
### Schedule
|
|
16
|
+
|
|
17
|
+
#### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- `#FB29036` - An issue with the `renderCell` event arguments as `resourceGroupCells` has been fixed in the timeline year view with resources.
|
|
20
|
+
- `#I339839` - An issue with the scheduler resize action is not working properly in timeline month has been fixed.
|
|
21
|
+
- `#F168909` - The scheduler agenda view throws script error on multilevel resources grouping has been fixed.
|
|
22
|
+
|
|
23
|
+
- `#F166305` - An issue with dynamically changed `minDate` and `maxDate` property in react scheduler has been fixed.
|
|
24
|
+
|
|
25
|
+
## 19.3.43 (2021-09-30)
|
|
26
|
+
|
|
27
|
+
### Schedule
|
|
28
|
+
|
|
29
|
+
#### New Features
|
|
30
|
+
|
|
31
|
+
- `#I316891`, `#I328879`, `#I331265`, `#I335777`, `#I339302`, `#F165491` - Provided support to sort appointments by priority instead of time.
|
|
32
|
+
- `#I242605`, `#F160122`, `#F165334` - Provided public method for Scheduler to refresh the Scheduler layout without re-render.
|
|
33
|
+
- `#I314842`, `#I320731` - Provided public method for Scheduler to refresh the given templates.
|
|
34
|
+
- `#FB24252` - Provided template support for header indent cells.
|
|
35
|
+
|
|
36
|
+
#### Bug Fixes
|
|
37
|
+
|
|
38
|
+
- `#I333664` - An issue with the dragging between two Schedulers has been fixed.
|
|
39
|
+
- `#I340348` - An issue with opening the editor window in RTL mode has been fixed.
|
|
40
|
+
- `#I342117` - An issue with today button navigation in Agenda view and scrolling down not happening issue has been fixed.
|
|
41
|
+
- `#F168358` - An issue with the "delete icon is not disabled in mobile mode" has been fixed.
|
|
42
|
+
- `#I340332` - An issue with the events rendering performance in vertical views has been fixed.
|
|
43
|
+
- `#I342489` - An issue with identify the clicked button on `popupClose` event has been fixed by providing `event` option on `PopupCloseEventArgs`.
|
|
44
|
+
|
|
45
|
+
## 19.2.59 (2021-08-31)
|
|
46
|
+
|
|
47
|
+
### Schedule
|
|
48
|
+
|
|
49
|
+
#### Bug Fixes
|
|
50
|
+
|
|
9
51
|
- `#I339839` - An issue with the scheduler resize action is not working properly in timeline views has been fixed.
|
|
10
52
|
- `#I338473` - An issue with the scheduler `showWeekend` property set to false appointments missing has been fixed.
|
|
11
53
|
|
|
@@ -51,8 +93,7 @@
|
|
|
51
93
|
- `#I333860, #I333664` - An issue with the external drag between two scheduler has been fixed.
|
|
52
94
|
- `#F166305` - An issue with dynamically changed `minDate` and `maxDate` property in react scheduler has been fixed.
|
|
53
95
|
- `#F166752` - An issue with drag and drop doesn't work when enabled the desktop mode in mobile devices has been fixed.
|
|
54
|
-
|
|
55
|
-
- `#F166305` - An issue with dynamically changed `minDate` and `maxDate` property in react scheduler has been fixed.
|
|
96
|
+
- `#I331086` - An issue with the drag and drop the spanned events in vertical views has been fixed.
|
|
56
97
|
|
|
57
98
|
## 19.2.46 (2021-07-06)
|
|
58
99
|
|
package/diConfig.json
CHANGED
|
@@ -318,6 +318,7 @@
|
|
|
318
318
|
"eventTemplate",
|
|
319
319
|
"monthHeaderTemplate",
|
|
320
320
|
"resourceHeaderTemplate",
|
|
321
|
+
"headerIndentTemplate",
|
|
321
322
|
"timeScale.minorSlotTemplate",
|
|
322
323
|
"timeScale.majorSlotTemplate",
|
|
323
324
|
"group.headerTooltipTemplate"
|
|
@@ -489,6 +490,7 @@
|
|
|
489
490
|
"timeScale.minorSlotTemplate",
|
|
490
491
|
"timeScale.majorSlotTemplate",
|
|
491
492
|
"resourceHeaderTemplate",
|
|
493
|
+
"headerIndentTemplate",
|
|
492
494
|
"quickInfoTemplates.header",
|
|
493
495
|
"quickInfoTemplates.content",
|
|
494
496
|
"quickInfoTemplates.footer",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-react-schedule.umd.min.js
|
|
3
|
-
* version : 19.
|
|
3
|
+
* version : 19.3.46
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-react-schedule@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-react-schedule@19.
|
|
3
|
+
"_id": "@syncfusion/ej2-react-schedule@19.3.44",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-eahBEOs7BOtAdvdW0txjo+mG3rg+AsMyD91g0sABPlDvi8wBTr1wRbYKrVO5xOW1DZ29wclbq2anXJXzl+GCdw==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-react-schedule",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-react-schedule/-/ej2-react-schedule-19.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-react-schedule/-/ej2-react-schedule-19.3.44.tgz",
|
|
23
|
+
"_shasum": "8906e15fcbd22954467603c4c3775e8a9bf85c30",
|
|
24
24
|
"_spec": "@syncfusion/ej2-react-schedule@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~19.
|
|
35
|
-
"@syncfusion/ej2-react-base": "~19.
|
|
36
|
-
"@syncfusion/ej2-schedule": "19.
|
|
34
|
+
"@syncfusion/ej2-base": "~19.3.43",
|
|
35
|
+
"@syncfusion/ej2-react-base": "~19.3.46",
|
|
36
|
+
"@syncfusion/ej2-schedule": "19.3.46"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support. for React",
|
|
@@ -70,6 +70,6 @@
|
|
|
70
70
|
"type": "git",
|
|
71
71
|
"url": "git+https://github.com/syncfusion/ej2-react-ui-components.git"
|
|
72
72
|
},
|
|
73
|
-
"version": "19.
|
|
73
|
+
"version": "19.3.46",
|
|
74
74
|
"sideEffects": false
|
|
75
75
|
}
|
|
@@ -13,6 +13,7 @@ export interface ScheduleTypecast {
|
|
|
13
13
|
timeScaleMinorSlotTemplate?: string | Function | any;
|
|
14
14
|
timeScaleMajorSlotTemplate?: string | Function | any;
|
|
15
15
|
resourceHeaderTemplate?: string | Function | any;
|
|
16
|
+
headerIndentTemplate?: string | Function | any;
|
|
16
17
|
quickInfoTemplatesHeader?: string | Function | any;
|
|
17
18
|
quickInfoTemplatesContent?: string | Function | any;
|
|
18
19
|
quickInfoTemplatesFooter?: string | Function | any;
|
|
@@ -8,6 +8,7 @@ export interface ViewsDirTypecast {
|
|
|
8
8
|
eventTemplate?: string | Function | any;
|
|
9
9
|
monthHeaderTemplate?: string | Function | any;
|
|
10
10
|
resourceHeaderTemplate?: string | Function | any;
|
|
11
|
+
headerIndentTemplate?: string | Function | any;
|
|
11
12
|
timeScaleMinorSlotTemplate?: string | Function | any;
|
|
12
13
|
timeScaleMajorSlotTemplate?: string | Function | any;
|
|
13
14
|
groupHeaderTooltipTemplate?: string | Function | any;
|
|
@@ -218,7 +218,6 @@
|
|
|
218
218
|
box-shadow: none;
|
|
219
219
|
margin-bottom: 0;
|
|
220
220
|
min-height: 43px;
|
|
221
|
-
border-radius: 0;
|
|
222
221
|
}
|
|
223
222
|
|
|
224
223
|
.e-schedule .e-schedule-toolbar .e-active-view .e-tbar-btn-text,
|
|
@@ -227,22 +226,9 @@
|
|
|
227
226
|
}
|
|
228
227
|
|
|
229
228
|
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
230
|
-
background: #131313;
|
|
231
229
|
overflow: auto;
|
|
232
230
|
}
|
|
233
231
|
|
|
234
|
-
.e-schedule .e-schedule-toolbar .e-tbar-btn {
|
|
235
|
-
background: #131313;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.e-schedule .e-schedule-toolbar .e-tbar-btn:hover, .e-schedule .e-schedule-toolbar .e-tbar-btn:focus {
|
|
239
|
-
background-color: #393939;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
.e-schedule .e-schedule-toolbar .e-tbar-btn:active {
|
|
243
|
-
background: #484848;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
232
|
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
247
233
|
cursor: pointer;
|
|
248
234
|
font-size: 14px;
|
|
@@ -267,13 +253,7 @@
|
|
|
267
253
|
padding-top: 0;
|
|
268
254
|
}
|
|
269
255
|
|
|
270
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover {
|
|
271
|
-
background: #393939;
|
|
272
|
-
border-radius: 4px;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
|
|
276
|
-
background: #393939;
|
|
256
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover {
|
|
277
257
|
border-radius: 4px;
|
|
278
258
|
}
|
|
279
259
|
|
|
@@ -314,16 +294,6 @@
|
|
|
314
294
|
text-transform: initial;
|
|
315
295
|
}
|
|
316
296
|
|
|
317
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
318
|
-
cursor: pointer;
|
|
319
|
-
font-size: 14px;
|
|
320
|
-
text-transform: initial;
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
324
|
-
padding-left: 0;
|
|
325
|
-
}
|
|
326
|
-
|
|
327
297
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
328
298
|
background: #131313;
|
|
329
299
|
border-left: 0;
|
|
@@ -336,7 +306,6 @@
|
|
|
336
306
|
}
|
|
337
307
|
|
|
338
308
|
.e-schedule .e-schedule-toolbar .e-hor-nav {
|
|
339
|
-
background: #131313;
|
|
340
309
|
border-left: 1px solid #858585;
|
|
341
310
|
}
|
|
342
311
|
|
|
@@ -547,6 +516,13 @@
|
|
|
547
516
|
width: 100%;
|
|
548
517
|
}
|
|
549
518
|
|
|
519
|
+
.e-schedule .e-content-placeholder {
|
|
520
|
+
height: 100%;
|
|
521
|
+
position: relative;
|
|
522
|
+
width: 100%;
|
|
523
|
+
z-index: 99999;
|
|
524
|
+
}
|
|
525
|
+
|
|
550
526
|
.e-schedule .e-content-wrap,
|
|
551
527
|
.e-schedule .e-scroll-container {
|
|
552
528
|
-webkit-overflow-scrolling: touch;
|
|
@@ -586,7 +562,7 @@
|
|
|
586
562
|
|
|
587
563
|
.e-schedule .e-block-appointment {
|
|
588
564
|
background: rgba(255, 255, 255, 0.08);
|
|
589
|
-
border-radius:
|
|
565
|
+
border-radius: 4px;
|
|
590
566
|
color: #969696;
|
|
591
567
|
cursor: default;
|
|
592
568
|
overflow: hidden;
|
|
@@ -776,8 +752,8 @@
|
|
|
776
752
|
|
|
777
753
|
.e-schedule .e-vertical-view.e-timescale-disable .e-appointment {
|
|
778
754
|
background: #0070f0;
|
|
779
|
-
border: 1px solid #
|
|
780
|
-
border-radius:
|
|
755
|
+
border: 1px solid #1a1a1a;
|
|
756
|
+
border-radius: 4px;
|
|
781
757
|
color: #fff;
|
|
782
758
|
display: -ms-flexbox;
|
|
783
759
|
display: flex;
|
|
@@ -861,7 +837,7 @@
|
|
|
861
837
|
.e-schedule .e-vertical-view.e-timescale-disable .e-more-indicator {
|
|
862
838
|
color: #8d8d8d;
|
|
863
839
|
cursor: pointer;
|
|
864
|
-
font-size:
|
|
840
|
+
font-size: 11px;
|
|
865
841
|
line-height: 11px;
|
|
866
842
|
overflow: hidden;
|
|
867
843
|
padding: 2px 4px;
|
|
@@ -1052,7 +1028,7 @@
|
|
|
1052
1028
|
}
|
|
1053
1029
|
|
|
1054
1030
|
.e-schedule .e-vertical-view .e-date-header-wrap.e-all-day-scroll {
|
|
1055
|
-
border-bottom: 1px solid #
|
|
1031
|
+
border-bottom: 1px solid #1a1a1a;
|
|
1056
1032
|
overflow-y: auto;
|
|
1057
1033
|
}
|
|
1058
1034
|
|
|
@@ -1093,8 +1069,8 @@
|
|
|
1093
1069
|
|
|
1094
1070
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment {
|
|
1095
1071
|
background: #0070f0;
|
|
1096
|
-
border: 1px solid #
|
|
1097
|
-
border-radius:
|
|
1072
|
+
border: 1px solid #1a1a1a;
|
|
1073
|
+
border-radius: 4px;
|
|
1098
1074
|
color: #fff;
|
|
1099
1075
|
display: -ms-flexbox;
|
|
1100
1076
|
display: flex;
|
|
@@ -1151,8 +1127,8 @@
|
|
|
1151
1127
|
|
|
1152
1128
|
.e-schedule .e-vertical-view .e-day-wrapper .e-appointment {
|
|
1153
1129
|
background: #0070f0;
|
|
1154
|
-
border: 1px solid #
|
|
1155
|
-
border-radius:
|
|
1130
|
+
border: 1px solid #1a1a1a;
|
|
1131
|
+
border-radius: 4px;
|
|
1156
1132
|
color: #fff;
|
|
1157
1133
|
overflow: hidden;
|
|
1158
1134
|
position: absolute;
|
|
@@ -1442,8 +1418,8 @@
|
|
|
1442
1418
|
|
|
1443
1419
|
.e-schedule .e-month-view .e-appointment {
|
|
1444
1420
|
background: #0070f0;
|
|
1445
|
-
border: 1px solid #
|
|
1446
|
-
border-radius:
|
|
1421
|
+
border: 1px solid #1a1a1a;
|
|
1422
|
+
border-radius: 4px;
|
|
1447
1423
|
color: #fff;
|
|
1448
1424
|
cursor: default;
|
|
1449
1425
|
display: -ms-flexbox;
|
|
@@ -1511,7 +1487,7 @@
|
|
|
1511
1487
|
.e-schedule .e-month-view .e-more-indicator {
|
|
1512
1488
|
color: #8d8d8d;
|
|
1513
1489
|
cursor: pointer;
|
|
1514
|
-
font-size:
|
|
1490
|
+
font-size: 11px;
|
|
1515
1491
|
line-height: 11px;
|
|
1516
1492
|
overflow: hidden;
|
|
1517
1493
|
padding: 2px 4px;
|
|
@@ -1700,7 +1676,7 @@
|
|
|
1700
1676
|
border-style: solid;
|
|
1701
1677
|
border-width: 0 1px 1px 0;
|
|
1702
1678
|
color: #f0f0f0;
|
|
1703
|
-
height:
|
|
1679
|
+
height: 75px;
|
|
1704
1680
|
padding-left: 15px;
|
|
1705
1681
|
padding-right: 0;
|
|
1706
1682
|
vertical-align: middle;
|
|
@@ -1741,6 +1717,7 @@
|
|
|
1741
1717
|
border-style: solid;
|
|
1742
1718
|
border-width: 0 1px 1px 0;
|
|
1743
1719
|
color: #f0f0f0;
|
|
1720
|
+
padding: 0;
|
|
1744
1721
|
}
|
|
1745
1722
|
|
|
1746
1723
|
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
@@ -1844,7 +1821,7 @@
|
|
|
1844
1821
|
|
|
1845
1822
|
.e-schedule .e-timeline-year-view .e-month-header,
|
|
1846
1823
|
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1847
|
-
height:
|
|
1824
|
+
height: 75px;
|
|
1848
1825
|
}
|
|
1849
1826
|
|
|
1850
1827
|
.e-schedule .e-timeline-year-view .e-header-cells,
|
|
@@ -1885,8 +1862,8 @@
|
|
|
1885
1862
|
|
|
1886
1863
|
.e-schedule .e-timeline-year-view .e-event-table .e-appointment {
|
|
1887
1864
|
background: #0070f0;
|
|
1888
|
-
border: 1px solid #
|
|
1889
|
-
border-radius:
|
|
1865
|
+
border: 1px solid #1a1a1a;
|
|
1866
|
+
border-radius: 4px;
|
|
1890
1867
|
color: #fff;
|
|
1891
1868
|
cursor: default;
|
|
1892
1869
|
display: -ms-flexbox;
|
|
@@ -1964,7 +1941,7 @@
|
|
|
1964
1941
|
.e-schedule .e-timeline-year-view .e-event-table .e-more-indicator {
|
|
1965
1942
|
color: #8d8d8d;
|
|
1966
1943
|
cursor: pointer;
|
|
1967
|
-
font-size:
|
|
1944
|
+
font-size: 11px;
|
|
1968
1945
|
line-height: 11px;
|
|
1969
1946
|
overflow: hidden;
|
|
1970
1947
|
padding: 2px 4px;
|
|
@@ -2095,13 +2072,6 @@
|
|
|
2095
2072
|
background-color: #393939;
|
|
2096
2073
|
}
|
|
2097
2074
|
|
|
2098
|
-
.e-schedule .e-timeline-view .e-resource-cells:focus .e-resource-tree-icon,
|
|
2099
|
-
.e-schedule .e-timeline-month-view .e-resource-cells:focus .e-resource-tree-icon {
|
|
2100
|
-
background-color: #484848;
|
|
2101
|
-
border-radius: 50%;
|
|
2102
|
-
color: #fff;
|
|
2103
|
-
}
|
|
2104
|
-
|
|
2105
2075
|
.e-schedule .e-timeline-view .e-resource-column-wrap,
|
|
2106
2076
|
.e-schedule .e-timeline-month-view .e-resource-column-wrap {
|
|
2107
2077
|
overflow: hidden;
|
|
@@ -2125,6 +2095,12 @@
|
|
|
2125
2095
|
height: 42px;
|
|
2126
2096
|
}
|
|
2127
2097
|
|
|
2098
|
+
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
|
|
2099
|
+
.e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells {
|
|
2100
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
2101
|
+
box-shadow: inset 0 0 0 8px #2a2a2a;
|
|
2102
|
+
}
|
|
2103
|
+
|
|
2128
2104
|
.e-schedule .e-timeline-view .e-resource-tree-icon,
|
|
2129
2105
|
.e-schedule .e-timeline-month-view .e-resource-tree-icon {
|
|
2130
2106
|
color: #fff;
|
|
@@ -2158,8 +2134,8 @@
|
|
|
2158
2134
|
.e-schedule .e-timeline-view .e-appointment,
|
|
2159
2135
|
.e-schedule .e-timeline-month-view .e-appointment {
|
|
2160
2136
|
background: #0070f0;
|
|
2161
|
-
border: 1px solid #
|
|
2162
|
-
border-radius:
|
|
2137
|
+
border: 1px solid #1a1a1a;
|
|
2138
|
+
border-radius: 4px;
|
|
2163
2139
|
color: #fff;
|
|
2164
2140
|
cursor: default;
|
|
2165
2141
|
display: -ms-flexbox;
|
|
@@ -2211,6 +2187,7 @@
|
|
|
2211
2187
|
.e-schedule .e-timeline-view .e-appointment .e-time,
|
|
2212
2188
|
.e-schedule .e-timeline-month-view .e-appointment .e-time {
|
|
2213
2189
|
display: block;
|
|
2190
|
+
line-height: 1.4;
|
|
2214
2191
|
}
|
|
2215
2192
|
|
|
2216
2193
|
.e-schedule .e-timeline-view .e-appointment .e-disable,
|
|
@@ -2261,7 +2238,7 @@
|
|
|
2261
2238
|
.e-schedule .e-timeline-month-view .e-more-indicator {
|
|
2262
2239
|
color: #8d8d8d;
|
|
2263
2240
|
cursor: pointer;
|
|
2264
|
-
font-size:
|
|
2241
|
+
font-size: 11px;
|
|
2265
2242
|
line-height: 11px;
|
|
2266
2243
|
overflow: hidden;
|
|
2267
2244
|
padding: 2px 4px;
|
|
@@ -2387,6 +2364,7 @@
|
|
|
2387
2364
|
|
|
2388
2365
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper .e-week-number {
|
|
2389
2366
|
border-right: 1px solid #505050;
|
|
2367
|
+
height: 40px;
|
|
2390
2368
|
padding-top: 8px;
|
|
2391
2369
|
}
|
|
2392
2370
|
|
|
@@ -2542,7 +2520,7 @@
|
|
|
2542
2520
|
padding: 0;
|
|
2543
2521
|
}
|
|
2544
2522
|
|
|
2545
|
-
.e-schedule .e-month-agenda-view .e-appointment-indicator {
|
|
2523
|
+
.e-schedule .e-month-agenda-view .e-work-cells .e-appointment-indicator {
|
|
2546
2524
|
background: #0070f0;
|
|
2547
2525
|
border-radius: 50%;
|
|
2548
2526
|
height: 6px;
|
|
@@ -3876,7 +3854,7 @@
|
|
|
3876
3854
|
|
|
3877
3855
|
.e-appointment.e-schedule-event-clone {
|
|
3878
3856
|
background: #0070f0;
|
|
3879
|
-
border-radius:
|
|
3857
|
+
border-radius: 4px;
|
|
3880
3858
|
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
|
|
3881
3859
|
color: #fff;
|
|
3882
3860
|
display: -ms-flexbox;
|
|
@@ -4053,7 +4031,7 @@
|
|
|
4053
4031
|
|
|
4054
4032
|
.e-more-popup-wrapper .e-appointment {
|
|
4055
4033
|
background: #0070f0;
|
|
4056
|
-
border-radius:
|
|
4034
|
+
border-radius: 4px;
|
|
4057
4035
|
color: #fff;
|
|
4058
4036
|
display: -ms-flexbox;
|
|
4059
4037
|
display: flex;
|
|
@@ -4201,6 +4179,7 @@
|
|
|
4201
4179
|
border-color: #505050;
|
|
4202
4180
|
border-style: solid;
|
|
4203
4181
|
border-width: 0 0 1px 1px;
|
|
4182
|
+
padding: 0;
|
|
4204
4183
|
}
|
|
4205
4184
|
|
|
4206
4185
|
.e-schedule .e-vertical-view .e-work-cells:hover {
|
|
@@ -4286,6 +4265,7 @@
|
|
|
4286
4265
|
border-style: solid;
|
|
4287
4266
|
border-width: 0 0 1px 1px;
|
|
4288
4267
|
color: #f0f0f0;
|
|
4268
|
+
padding: 0;
|
|
4289
4269
|
}
|
|
4290
4270
|
|
|
4291
4271
|
.e-schedule .e-month-view .e-work-cells:hover,
|
|
@@ -4374,6 +4354,7 @@
|
|
|
4374
4354
|
border-style: solid;
|
|
4375
4355
|
border-width: 0 0 1px 1px;
|
|
4376
4356
|
color: #f0f0f0;
|
|
4357
|
+
padding: 0;
|
|
4377
4358
|
}
|
|
4378
4359
|
|
|
4379
4360
|
.e-schedule .e-timeline-view .e-work-cells:hover:not(.e-resource-group-cells),
|
|
@@ -4382,6 +4363,11 @@
|
|
|
4382
4363
|
color: #fff;
|
|
4383
4364
|
}
|
|
4384
4365
|
|
|
4366
|
+
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells:hover,
|
|
4367
|
+
.e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells:hover {
|
|
4368
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4369
|
+
}
|
|
4370
|
+
|
|
4385
4371
|
.e-schedule .e-timeline-view .e-work-days,
|
|
4386
4372
|
.e-schedule .e-timeline-month-view .e-work-days {
|
|
4387
4373
|
background-color: #1a1a1a;
|
|
@@ -4581,10 +4567,6 @@
|
|
|
4581
4567
|
padding-left: 10px;
|
|
4582
4568
|
}
|
|
4583
4569
|
|
|
4584
|
-
.e-recurrenceeditor .e-icons {
|
|
4585
|
-
height: 0;
|
|
4586
|
-
}
|
|
4587
|
-
|
|
4588
4570
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
4589
4571
|
padding: 0 8px 10px 0;
|
|
4590
4572
|
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -227,22 +227,9 @@
|
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
230
|
-
background: #f8f8f8;
|
|
231
230
|
overflow: auto;
|
|
232
231
|
}
|
|
233
232
|
|
|
234
|
-
.e-schedule .e-schedule-toolbar .e-tbar-btn {
|
|
235
|
-
background: #f8f8f8;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.e-schedule .e-schedule-toolbar .e-tbar-btn:hover, .e-schedule .e-schedule-toolbar .e-tbar-btn:focus {
|
|
239
|
-
background-color: #e6e6e6;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
.e-schedule .e-schedule-toolbar .e-tbar-btn:active {
|
|
243
|
-
background: #e6e6e6;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
233
|
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
247
234
|
cursor: pointer;
|
|
248
235
|
font-size: 14px;
|
|
@@ -267,13 +254,7 @@
|
|
|
267
254
|
padding-top: 0;
|
|
268
255
|
}
|
|
269
256
|
|
|
270
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover {
|
|
271
|
-
background: #e6e6e6;
|
|
272
|
-
border-radius: 0%;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus {
|
|
276
|
-
background: #e6e6e6;
|
|
257
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:focus, .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-left .e-tbar-btn.e-icon-btn:hover {
|
|
277
258
|
border-radius: 0%;
|
|
278
259
|
}
|
|
279
260
|
|
|
@@ -314,16 +295,6 @@
|
|
|
314
295
|
text-transform: initial;
|
|
315
296
|
}
|
|
316
297
|
|
|
317
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn .e-tbar-btn-text {
|
|
318
|
-
cursor: pointer;
|
|
319
|
-
font-size: 14px;
|
|
320
|
-
text-transform: initial;
|
|
321
|
-
}
|
|
322
|
-
|
|
323
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
324
|
-
padding-left: 0;
|
|
325
|
-
}
|
|
326
|
-
|
|
327
298
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
328
299
|
background: #f8f8f8;
|
|
329
300
|
border-left: 0;
|
|
@@ -336,7 +307,6 @@
|
|
|
336
307
|
}
|
|
337
308
|
|
|
338
309
|
.e-schedule .e-schedule-toolbar .e-hor-nav {
|
|
339
|
-
background: #f8f8f8;
|
|
340
310
|
border-left: 1px solid #f8f8f8;
|
|
341
311
|
}
|
|
342
312
|
|
|
@@ -547,6 +517,13 @@
|
|
|
547
517
|
width: 100%;
|
|
548
518
|
}
|
|
549
519
|
|
|
520
|
+
.e-schedule .e-content-placeholder {
|
|
521
|
+
height: 100%;
|
|
522
|
+
position: relative;
|
|
523
|
+
width: 100%;
|
|
524
|
+
z-index: 99999;
|
|
525
|
+
}
|
|
526
|
+
|
|
550
527
|
.e-schedule .e-content-wrap,
|
|
551
528
|
.e-schedule .e-scroll-container {
|
|
552
529
|
-webkit-overflow-scrolling: touch;
|
|
@@ -1700,7 +1677,7 @@
|
|
|
1700
1677
|
border-style: solid;
|
|
1701
1678
|
border-width: 0 1px 1px 0;
|
|
1702
1679
|
color: #333;
|
|
1703
|
-
height:
|
|
1680
|
+
height: 75px;
|
|
1704
1681
|
padding-left: 15px;
|
|
1705
1682
|
padding-right: 0;
|
|
1706
1683
|
vertical-align: middle;
|
|
@@ -1741,6 +1718,7 @@
|
|
|
1741
1718
|
border-style: solid;
|
|
1742
1719
|
border-width: 0 1px 1px 0;
|
|
1743
1720
|
color: #333;
|
|
1721
|
+
padding: 0;
|
|
1744
1722
|
}
|
|
1745
1723
|
|
|
1746
1724
|
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
@@ -1844,7 +1822,7 @@
|
|
|
1844
1822
|
|
|
1845
1823
|
.e-schedule .e-timeline-year-view .e-month-header,
|
|
1846
1824
|
.e-schedule .e-timeline-year-view .e-work-cells {
|
|
1847
|
-
height:
|
|
1825
|
+
height: 75px;
|
|
1848
1826
|
}
|
|
1849
1827
|
|
|
1850
1828
|
.e-schedule .e-timeline-year-view .e-header-cells,
|
|
@@ -2095,13 +2073,6 @@
|
|
|
2095
2073
|
background-color: #f5f5f5;
|
|
2096
2074
|
}
|
|
2097
2075
|
|
|
2098
|
-
.e-schedule .e-timeline-view .e-resource-cells:focus .e-resource-tree-icon,
|
|
2099
|
-
.e-schedule .e-timeline-month-view .e-resource-cells:focus .e-resource-tree-icon {
|
|
2100
|
-
background-color: #e6e6e6;
|
|
2101
|
-
border-radius: 50%;
|
|
2102
|
-
color: #000;
|
|
2103
|
-
}
|
|
2104
|
-
|
|
2105
2076
|
.e-schedule .e-timeline-view .e-resource-column-wrap,
|
|
2106
2077
|
.e-schedule .e-timeline-month-view .e-resource-column-wrap {
|
|
2107
2078
|
overflow: hidden;
|
|
@@ -2125,6 +2096,12 @@
|
|
|
2125
2096
|
height: 42px;
|
|
2126
2097
|
}
|
|
2127
2098
|
|
|
2099
|
+
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
|
|
2100
|
+
.e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells {
|
|
2101
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
2102
|
+
box-shadow: inset 0 0 0 8px #f8f8f8;
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2128
2105
|
.e-schedule .e-timeline-view .e-resource-tree-icon,
|
|
2129
2106
|
.e-schedule .e-timeline-month-view .e-resource-tree-icon {
|
|
2130
2107
|
color: #333;
|
|
@@ -2211,6 +2188,7 @@
|
|
|
2211
2188
|
.e-schedule .e-timeline-view .e-appointment .e-time,
|
|
2212
2189
|
.e-schedule .e-timeline-month-view .e-appointment .e-time {
|
|
2213
2190
|
display: block;
|
|
2191
|
+
line-height: 1.4;
|
|
2214
2192
|
}
|
|
2215
2193
|
|
|
2216
2194
|
.e-schedule .e-timeline-view .e-appointment .e-disable,
|
|
@@ -2387,6 +2365,7 @@
|
|
|
2387
2365
|
|
|
2388
2366
|
.e-schedule .e-month-agenda-view .e-week-number-wrapper .e-week-number {
|
|
2389
2367
|
border-right: 1px solid #ddd;
|
|
2368
|
+
height: 40px;
|
|
2390
2369
|
padding-top: 8px;
|
|
2391
2370
|
}
|
|
2392
2371
|
|
|
@@ -2542,7 +2521,7 @@
|
|
|
2542
2521
|
padding: 0;
|
|
2543
2522
|
}
|
|
2544
2523
|
|
|
2545
|
-
.e-schedule .e-month-agenda-view .e-appointment-indicator {
|
|
2524
|
+
.e-schedule .e-month-agenda-view .e-work-cells .e-appointment-indicator {
|
|
2546
2525
|
background: #317ab9;
|
|
2547
2526
|
border-radius: 50%;
|
|
2548
2527
|
height: 6px;
|
|
@@ -4201,6 +4180,7 @@
|
|
|
4201
4180
|
border-color: #ddd;
|
|
4202
4181
|
border-style: solid;
|
|
4203
4182
|
border-width: 0 0 1px 1px;
|
|
4183
|
+
padding: 0;
|
|
4204
4184
|
}
|
|
4205
4185
|
|
|
4206
4186
|
.e-schedule .e-vertical-view .e-work-cells:hover {
|
|
@@ -4286,6 +4266,7 @@
|
|
|
4286
4266
|
border-style: solid;
|
|
4287
4267
|
border-width: 0 0 1px 1px;
|
|
4288
4268
|
color: #333;
|
|
4269
|
+
padding: 0;
|
|
4289
4270
|
}
|
|
4290
4271
|
|
|
4291
4272
|
.e-schedule .e-month-view .e-work-cells:hover,
|
|
@@ -4374,6 +4355,7 @@
|
|
|
4374
4355
|
border-style: solid;
|
|
4375
4356
|
border-width: 0 0 1px 1px;
|
|
4376
4357
|
color: #333;
|
|
4358
|
+
padding: 0;
|
|
4377
4359
|
}
|
|
4378
4360
|
|
|
4379
4361
|
.e-schedule .e-timeline-view .e-work-cells:hover:not(.e-resource-group-cells),
|
|
@@ -4382,6 +4364,11 @@
|
|
|
4382
4364
|
color: #333;
|
|
4383
4365
|
}
|
|
4384
4366
|
|
|
4367
|
+
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells:hover,
|
|
4368
|
+
.e-schedule .e-timeline-month-view.e-virtual-mask .e-work-cells:hover {
|
|
4369
|
+
background-color: rgba(0, 0, 0, 0.08);
|
|
4370
|
+
}
|
|
4371
|
+
|
|
4385
4372
|
.e-schedule .e-timeline-view .e-work-days,
|
|
4386
4373
|
.e-schedule .e-timeline-month-view .e-work-days {
|
|
4387
4374
|
background-color: #fff;
|
|
@@ -4581,10 +4568,6 @@
|
|
|
4581
4568
|
padding-left: 10px;
|
|
4582
4569
|
}
|
|
4583
4570
|
|
|
4584
|
-
.e-recurrenceeditor .e-icons {
|
|
4585
|
-
height: 0;
|
|
4586
|
-
}
|
|
4587
|
-
|
|
4588
4571
|
.e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
4589
4572
|
padding: 0 8px 10px 0;
|
|
4590
4573
|
}
|