@syncfusion/ej2-schedule 27.2.5 → 28.1.35
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/README.md +2 -2
- package/dist/ej2-schedule.min.js +3 -3
- package/dist/ej2-schedule.umd.min.js +3 -3
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +435 -52
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +464 -54
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +3 -3
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +16 -16
- package/src/schedule/actions/action-base.js +4 -3
- package/src/schedule/actions/drag.d.ts +1 -0
- package/src/schedule/actions/drag.js +12 -8
- package/src/schedule/actions/keyboard.d.ts +16 -0
- package/src/schedule/actions/keyboard.js +254 -8
- package/src/schedule/actions/touch.js +7 -2
- package/src/schedule/base/constant.d.ts +4 -0
- package/src/schedule/base/constant.js +4 -0
- package/src/schedule/base/css-constant.d.ts +2 -0
- package/src/schedule/base/css-constant.js +2 -0
- package/src/schedule/base/interface.d.ts +14 -4
- package/src/schedule/base/schedule-model.d.ts +17 -1
- package/src/schedule/base/schedule.d.ts +67 -1
- package/src/schedule/base/schedule.js +131 -1
- package/src/schedule/base/type.d.ts +8 -0
- package/src/schedule/popups/event-tooltip.js +4 -0
- package/src/schedule/renderer/agenda.d.ts +2 -1
- package/src/schedule/renderer/agenda.js +1 -1
- package/src/schedule/renderer/header-renderer.js +4 -2
- package/src/schedule/renderer/month-agenda.d.ts +2 -1
- package/src/schedule/renderer/month-agenda.js +2 -2
- package/src/schedule/renderer/month.d.ts +4 -3
- package/src/schedule/renderer/month.js +16 -9
- package/src/schedule/renderer/view-base.d.ts +5 -4
- package/src/schedule/renderer/view-base.js +13 -10
- package/src/schedule/renderer/year.d.ts +3 -2
- package/src/schedule/renderer/year.js +10 -7
- package/styles/bds-lite.css +4400 -0
- package/styles/bds-lite.scss +18 -0
- package/styles/bds.css +5161 -0
- package/styles/bds.scss +20 -0
- package/styles/bootstrap-dark-lite.css +19 -6
- package/styles/bootstrap-dark.css +23 -10
- package/styles/bootstrap-lite.css +18 -5
- package/styles/bootstrap.css +22 -9
- package/styles/bootstrap4-lite.css +18 -5
- package/styles/bootstrap4.css +22 -9
- package/styles/bootstrap5-dark-lite.css +18 -5
- package/styles/bootstrap5-dark.css +23 -10
- package/styles/bootstrap5-lite.css +18 -5
- package/styles/bootstrap5.3-lite.css +18 -5
- package/styles/bootstrap5.3.css +23 -10
- package/styles/bootstrap5.css +23 -10
- package/styles/fabric-dark-lite.css +18 -5
- package/styles/fabric-dark.css +22 -9
- package/styles/fabric-lite.css +18 -5
- package/styles/fabric.css +22 -9
- package/styles/fluent-dark-lite.css +18 -5
- package/styles/fluent-dark.css +22 -9
- package/styles/fluent-lite.css +18 -5
- package/styles/fluent.css +22 -9
- package/styles/fluent2-lite.css +43 -6
- package/styles/fluent2.css +50 -13
- package/styles/highcontrast-light-lite.css +18 -5
- package/styles/highcontrast-light.css +22 -9
- package/styles/highcontrast-lite.css +19 -6
- package/styles/highcontrast.css +23 -10
- package/styles/material-dark-lite.css +18 -5
- package/styles/material-dark.css +22 -9
- package/styles/material-lite.css +18 -5
- package/styles/material.css +22 -9
- package/styles/material3-dark-lite.css +18 -5
- package/styles/material3-dark.css +23 -10
- package/styles/material3-lite.css +18 -5
- package/styles/material3.css +23 -10
- package/styles/recurrence-editor/_bigger.scss +2 -3
- package/styles/recurrence-editor/_fluent2-definition.scss +1 -1
- package/styles/recurrence-editor/_tailwind3-definition.scss +14 -0
- package/styles/recurrence-editor/bds.css +533 -0
- package/styles/recurrence-editor/bds.scss +9 -0
- package/styles/recurrence-editor/bootstrap-dark.css +2 -3
- package/styles/recurrence-editor/bootstrap.css +2 -3
- package/styles/recurrence-editor/bootstrap4.css +2 -3
- package/styles/recurrence-editor/bootstrap5-dark.css +2 -3
- package/styles/recurrence-editor/bootstrap5.3.css +2 -3
- package/styles/recurrence-editor/bootstrap5.css +2 -3
- package/styles/recurrence-editor/fabric-dark.css +2 -3
- package/styles/recurrence-editor/fabric.css +2 -3
- package/styles/recurrence-editor/fluent-dark.css +2 -3
- package/styles/recurrence-editor/fluent.css +2 -3
- package/styles/recurrence-editor/fluent2.css +3 -4
- package/styles/recurrence-editor/highcontrast-light.css +2 -3
- package/styles/recurrence-editor/highcontrast.css +3 -4
- package/styles/recurrence-editor/material-dark.css +2 -3
- package/styles/recurrence-editor/material.css +2 -3
- package/styles/recurrence-editor/material3-dark.css +2 -3
- package/styles/recurrence-editor/material3.css +2 -3
- package/styles/recurrence-editor/tailwind-dark.css +2 -3
- package/styles/recurrence-editor/tailwind.css +2 -3
- package/styles/recurrence-editor/tailwind3.css +500 -0
- package/styles/recurrence-editor/tailwind3.scss +9 -0
- package/styles/schedule/_bigger.scss +2 -1
- package/styles/schedule/_bootstrap5-definition.scss +1 -1
- package/styles/schedule/_bootstrap5.3-definition.scss +1 -1
- package/styles/schedule/_fluent2-definition.scss +3 -3
- package/styles/schedule/_layout.scss +43 -2
- package/styles/schedule/_material3-definition.scss +1 -1
- package/styles/schedule/_tailwind-definition.scss +1 -1
- package/styles/schedule/_tailwind3-definition.scss +276 -0
- package/styles/schedule/_theme.scss +0 -4
- package/styles/schedule/bds.css +4760 -0
- package/styles/schedule/bds.scss +17 -0
- package/styles/schedule/bootstrap-dark.css +21 -7
- package/styles/schedule/bootstrap.css +20 -6
- package/styles/schedule/bootstrap4.css +20 -6
- package/styles/schedule/bootstrap5-dark.css +21 -7
- package/styles/schedule/bootstrap5.3.css +21 -7
- package/styles/schedule/bootstrap5.css +21 -7
- package/styles/schedule/fabric-dark.css +20 -6
- package/styles/schedule/fabric.css +20 -6
- package/styles/schedule/fluent-dark.css +20 -6
- package/styles/schedule/fluent.css +20 -6
- package/styles/schedule/fluent2.css +47 -9
- package/styles/schedule/highcontrast-light.css +20 -6
- package/styles/schedule/highcontrast.css +21 -7
- package/styles/schedule/icons/_tailwind3.scss +220 -0
- package/styles/schedule/material-dark.css +20 -6
- package/styles/schedule/material.css +20 -6
- package/styles/schedule/material3-dark.css +21 -7
- package/styles/schedule/material3.css +21 -7
- package/styles/schedule/tailwind-dark.css +21 -7
- package/styles/schedule/tailwind.css +21 -7
- package/styles/schedule/tailwind3.css +4599 -0
- package/styles/schedule/tailwind3.scss +17 -0
- package/styles/tailwind-dark-lite.css +18 -5
- package/styles/tailwind-dark.css +23 -10
- package/styles/tailwind-lite.css +18 -5
- package/styles/tailwind.css +23 -10
- package/styles/tailwind3-lite.css +4239 -0
- package/styles/tailwind3-lite.scss +18 -0
- package/styles/tailwind3.css +5000 -0
- package/styles/tailwind3.scss +20 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@import 'ej2-base/styles/definition/bds.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/toolbar/bds-definition.scss';
|
|
3
|
+
@import 'ej2-navigations/styles/treeview/bds-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/bds-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bds-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/calendar/bds-definition.scss';
|
|
7
|
+
@import 'ej2-calendars/styles/datepicker/bds-definition.scss';
|
|
8
|
+
@import 'ej2-calendars/styles/datetimepicker/bds-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bds-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/bds-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/button/bds-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/check-box/bds-definition.scss';
|
|
13
|
+
@import '../recurrence-editor/bds-definition.scss';
|
|
14
|
+
@import 'bds-definition.scss';
|
|
15
|
+
@import 'icons/bds.scss';
|
|
16
|
+
@import 'all.scss';
|
|
17
|
+
@import 'bigger.scss';
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
67
67
|
border-radius: 0 4px 4px 0;
|
|
68
68
|
border-right-width: 0;
|
|
69
|
-
height:
|
|
69
|
+
height: 32px;
|
|
70
70
|
width: 36px;
|
|
71
71
|
}
|
|
72
72
|
|
|
@@ -1229,6 +1229,17 @@
|
|
|
1229
1229
|
vertical-align: top;
|
|
1230
1230
|
width: 36px;
|
|
1231
1231
|
}
|
|
1232
|
+
.e-schedule .e-clipboard {
|
|
1233
|
+
cursor: default;
|
|
1234
|
+
height: 1px;
|
|
1235
|
+
left: -1000px;
|
|
1236
|
+
position: fixed;
|
|
1237
|
+
resize: none;
|
|
1238
|
+
top: -1000px;
|
|
1239
|
+
width: 1px;
|
|
1240
|
+
overflow: hidden;
|
|
1241
|
+
opacity: 0;
|
|
1242
|
+
}
|
|
1232
1243
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1233
1244
|
border-bottom-width: 0;
|
|
1234
1245
|
}
|
|
@@ -2346,13 +2357,18 @@
|
|
|
2346
2357
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2347
2358
|
color: #f0f0f0;
|
|
2348
2359
|
}
|
|
2349
|
-
.e-schedule .e-agenda-view .e-subject
|
|
2360
|
+
.e-schedule .e-agenda-view .e-subject,
|
|
2361
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2350
2362
|
color: #f0f0f0;
|
|
2351
2363
|
font-size: 14px;
|
|
2352
2364
|
line-height: 23px;
|
|
2353
2365
|
overflow: hidden;
|
|
2354
2366
|
text-overflow: ellipsis;
|
|
2355
2367
|
}
|
|
2368
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2369
|
+
font-weight: normal;
|
|
2370
|
+
padding-top: 0;
|
|
2371
|
+
}
|
|
2356
2372
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2357
2373
|
color: #f0f0f0;
|
|
2358
2374
|
font-size: 13px;
|
|
@@ -3393,6 +3409,7 @@
|
|
|
3393
3409
|
margin: 0;
|
|
3394
3410
|
max-width: 100%;
|
|
3395
3411
|
overflow: hidden;
|
|
3412
|
+
position: fixed;
|
|
3396
3413
|
right: 0;
|
|
3397
3414
|
top: 0;
|
|
3398
3415
|
width: 100%;
|
|
@@ -3629,10 +3646,6 @@
|
|
|
3629
3646
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
3630
3647
|
border-left-width: 0;
|
|
3631
3648
|
}
|
|
3632
|
-
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
3633
|
-
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
3634
|
-
border-bottom-width: 0;
|
|
3635
|
-
}
|
|
3636
3649
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3637
3650
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3638
3651
|
background: #1a1a1a;
|
|
@@ -4194,7 +4207,8 @@
|
|
|
4194
4207
|
.e-bigger .e-agenda-view .e-appointment {
|
|
4195
4208
|
padding: 0 8px;
|
|
4196
4209
|
}
|
|
4197
|
-
.e-bigger .e-agenda-view .e-subject
|
|
4210
|
+
.e-bigger .e-agenda-view .e-subject,
|
|
4211
|
+
.e-bigger .e-agenda-view .e-inline-subject {
|
|
4198
4212
|
font-size: 16px;
|
|
4199
4213
|
}
|
|
4200
4214
|
.e-bigger .e-agenda-view .e-date-time {
|
|
@@ -1224,6 +1224,17 @@
|
|
|
1224
1224
|
vertical-align: top;
|
|
1225
1225
|
width: 36px;
|
|
1226
1226
|
}
|
|
1227
|
+
.e-schedule .e-clipboard {
|
|
1228
|
+
cursor: default;
|
|
1229
|
+
height: 1px;
|
|
1230
|
+
left: -1000px;
|
|
1231
|
+
position: fixed;
|
|
1232
|
+
resize: none;
|
|
1233
|
+
top: -1000px;
|
|
1234
|
+
width: 1px;
|
|
1235
|
+
overflow: hidden;
|
|
1236
|
+
opacity: 0;
|
|
1237
|
+
}
|
|
1227
1238
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1228
1239
|
border-bottom-width: 0;
|
|
1229
1240
|
}
|
|
@@ -2341,13 +2352,18 @@
|
|
|
2341
2352
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2342
2353
|
color: #333;
|
|
2343
2354
|
}
|
|
2344
|
-
.e-schedule .e-agenda-view .e-subject
|
|
2355
|
+
.e-schedule .e-agenda-view .e-subject,
|
|
2356
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2345
2357
|
color: #333;
|
|
2346
2358
|
font-size: 14px;
|
|
2347
2359
|
line-height: 23px;
|
|
2348
2360
|
overflow: hidden;
|
|
2349
2361
|
text-overflow: ellipsis;
|
|
2350
2362
|
}
|
|
2363
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2364
|
+
font-weight: normal;
|
|
2365
|
+
padding-top: 0;
|
|
2366
|
+
}
|
|
2351
2367
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2352
2368
|
color: #333;
|
|
2353
2369
|
font-size: 13px;
|
|
@@ -3388,6 +3404,7 @@
|
|
|
3388
3404
|
margin: 0;
|
|
3389
3405
|
max-width: 100%;
|
|
3390
3406
|
overflow: hidden;
|
|
3407
|
+
position: fixed;
|
|
3391
3408
|
right: 0;
|
|
3392
3409
|
top: 0;
|
|
3393
3410
|
width: 100%;
|
|
@@ -3624,10 +3641,6 @@
|
|
|
3624
3641
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
3625
3642
|
border-left-width: 0;
|
|
3626
3643
|
}
|
|
3627
|
-
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
3628
|
-
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
3629
|
-
border-bottom-width: 0;
|
|
3630
|
-
}
|
|
3631
3644
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3632
3645
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3633
3646
|
background: #fff;
|
|
@@ -4189,7 +4202,8 @@
|
|
|
4189
4202
|
.e-bigger .e-agenda-view .e-appointment {
|
|
4190
4203
|
padding: 0 8px;
|
|
4191
4204
|
}
|
|
4192
|
-
.e-bigger .e-agenda-view .e-subject
|
|
4205
|
+
.e-bigger .e-agenda-view .e-subject,
|
|
4206
|
+
.e-bigger .e-agenda-view .e-inline-subject {
|
|
4193
4207
|
font-size: 16px;
|
|
4194
4208
|
}
|
|
4195
4209
|
.e-bigger .e-agenda-view .e-date-time {
|
|
@@ -1271,6 +1271,17 @@
|
|
|
1271
1271
|
vertical-align: top;
|
|
1272
1272
|
width: 36px;
|
|
1273
1273
|
}
|
|
1274
|
+
.e-schedule .e-clipboard {
|
|
1275
|
+
cursor: default;
|
|
1276
|
+
height: 1px;
|
|
1277
|
+
left: -1000px;
|
|
1278
|
+
position: fixed;
|
|
1279
|
+
resize: none;
|
|
1280
|
+
top: -1000px;
|
|
1281
|
+
width: 1px;
|
|
1282
|
+
overflow: hidden;
|
|
1283
|
+
opacity: 0;
|
|
1284
|
+
}
|
|
1274
1285
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1275
1286
|
border-bottom-width: 0;
|
|
1276
1287
|
}
|
|
@@ -2388,13 +2399,18 @@
|
|
|
2388
2399
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2389
2400
|
color: #212529;
|
|
2390
2401
|
}
|
|
2391
|
-
.e-schedule .e-agenda-view .e-subject
|
|
2402
|
+
.e-schedule .e-agenda-view .e-subject,
|
|
2403
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2392
2404
|
color: #212529;
|
|
2393
2405
|
font-size: 14px;
|
|
2394
2406
|
line-height: 23px;
|
|
2395
2407
|
overflow: hidden;
|
|
2396
2408
|
text-overflow: ellipsis;
|
|
2397
2409
|
}
|
|
2410
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2411
|
+
font-weight: normal;
|
|
2412
|
+
padding-top: 0;
|
|
2413
|
+
}
|
|
2398
2414
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2399
2415
|
color: #212529;
|
|
2400
2416
|
font-size: 13px;
|
|
@@ -3435,6 +3451,7 @@
|
|
|
3435
3451
|
margin: 0;
|
|
3436
3452
|
max-width: 100%;
|
|
3437
3453
|
overflow: hidden;
|
|
3454
|
+
position: fixed;
|
|
3438
3455
|
right: 0;
|
|
3439
3456
|
top: 0;
|
|
3440
3457
|
width: 100%;
|
|
@@ -3671,10 +3688,6 @@
|
|
|
3671
3688
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
3672
3689
|
border-left-width: 0;
|
|
3673
3690
|
}
|
|
3674
|
-
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
3675
|
-
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
3676
|
-
border-bottom-width: 0;
|
|
3677
|
-
}
|
|
3678
3691
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3679
3692
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3680
3693
|
background: #fff;
|
|
@@ -4236,7 +4249,8 @@
|
|
|
4236
4249
|
.e-bigger .e-agenda-view .e-appointment {
|
|
4237
4250
|
padding: 0 14px;
|
|
4238
4251
|
}
|
|
4239
|
-
.e-bigger .e-agenda-view .e-subject
|
|
4252
|
+
.e-bigger .e-agenda-view .e-subject,
|
|
4253
|
+
.e-bigger .e-agenda-view .e-inline-subject {
|
|
4240
4254
|
font-size: 16px;
|
|
4241
4255
|
}
|
|
4242
4256
|
.e-bigger .e-agenda-view .e-date-time {
|
|
@@ -1274,6 +1274,17 @@
|
|
|
1274
1274
|
vertical-align: top;
|
|
1275
1275
|
width: 36px;
|
|
1276
1276
|
}
|
|
1277
|
+
.e-schedule .e-clipboard {
|
|
1278
|
+
cursor: default;
|
|
1279
|
+
height: 1px;
|
|
1280
|
+
left: -1000px;
|
|
1281
|
+
position: fixed;
|
|
1282
|
+
resize: none;
|
|
1283
|
+
top: -1000px;
|
|
1284
|
+
width: 1px;
|
|
1285
|
+
overflow: hidden;
|
|
1286
|
+
opacity: 0;
|
|
1287
|
+
}
|
|
1277
1288
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1278
1289
|
border-bottom-width: 0;
|
|
1279
1290
|
}
|
|
@@ -2391,13 +2402,18 @@
|
|
|
2391
2402
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2392
2403
|
color: #fff;
|
|
2393
2404
|
}
|
|
2394
|
-
.e-schedule .e-agenda-view .e-subject
|
|
2405
|
+
.e-schedule .e-agenda-view .e-subject,
|
|
2406
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2395
2407
|
color: #fff;
|
|
2396
2408
|
font-size: 14px;
|
|
2397
2409
|
line-height: 23px;
|
|
2398
2410
|
overflow: hidden;
|
|
2399
2411
|
text-overflow: ellipsis;
|
|
2400
2412
|
}
|
|
2413
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2414
|
+
font-weight: normal;
|
|
2415
|
+
padding-top: 0;
|
|
2416
|
+
}
|
|
2401
2417
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2402
2418
|
color: #fff;
|
|
2403
2419
|
font-size: 12px;
|
|
@@ -3438,6 +3454,7 @@
|
|
|
3438
3454
|
margin: 0;
|
|
3439
3455
|
max-width: 100%;
|
|
3440
3456
|
overflow: hidden;
|
|
3457
|
+
position: fixed;
|
|
3441
3458
|
right: 0;
|
|
3442
3459
|
top: 0;
|
|
3443
3460
|
width: 100%;
|
|
@@ -3674,10 +3691,6 @@
|
|
|
3674
3691
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
3675
3692
|
border-left-width: 0;
|
|
3676
3693
|
}
|
|
3677
|
-
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
3678
|
-
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
3679
|
-
border-bottom-width: 0;
|
|
3680
|
-
}
|
|
3681
3694
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3682
3695
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3683
3696
|
background: #212529;
|
|
@@ -4196,7 +4209,7 @@
|
|
|
4196
4209
|
}
|
|
4197
4210
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
4198
4211
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
4199
|
-
padding-right:
|
|
4212
|
+
padding-right: 10px;
|
|
4200
4213
|
}
|
|
4201
4214
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
4202
4215
|
font-size: 16px;
|
|
@@ -4239,7 +4252,8 @@
|
|
|
4239
4252
|
.e-bigger .e-agenda-view .e-appointment {
|
|
4240
4253
|
padding: 0 14px;
|
|
4241
4254
|
}
|
|
4242
|
-
.e-bigger .e-agenda-view .e-subject
|
|
4255
|
+
.e-bigger .e-agenda-view .e-subject,
|
|
4256
|
+
.e-bigger .e-agenda-view .e-inline-subject {
|
|
4243
4257
|
font-size: 16px;
|
|
4244
4258
|
}
|
|
4245
4259
|
.e-bigger .e-agenda-view .e-date-time {
|
|
@@ -1278,6 +1278,17 @@
|
|
|
1278
1278
|
vertical-align: top;
|
|
1279
1279
|
width: 36px;
|
|
1280
1280
|
}
|
|
1281
|
+
.e-schedule .e-clipboard {
|
|
1282
|
+
cursor: default;
|
|
1283
|
+
height: 1px;
|
|
1284
|
+
left: -1000px;
|
|
1285
|
+
position: fixed;
|
|
1286
|
+
resize: none;
|
|
1287
|
+
top: -1000px;
|
|
1288
|
+
width: 1px;
|
|
1289
|
+
overflow: hidden;
|
|
1290
|
+
opacity: 0;
|
|
1291
|
+
}
|
|
1281
1292
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1282
1293
|
border-bottom-width: 0;
|
|
1283
1294
|
}
|
|
@@ -2395,13 +2406,18 @@
|
|
|
2395
2406
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2396
2407
|
color: var(--color-sf-content-text-color);
|
|
2397
2408
|
}
|
|
2398
|
-
.e-schedule .e-agenda-view .e-subject
|
|
2409
|
+
.e-schedule .e-agenda-view .e-subject,
|
|
2410
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2399
2411
|
color: var(--color-sf-content-text-color);
|
|
2400
2412
|
font-size: 14px;
|
|
2401
2413
|
line-height: 23px;
|
|
2402
2414
|
overflow: hidden;
|
|
2403
2415
|
text-overflow: ellipsis;
|
|
2404
2416
|
}
|
|
2417
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2418
|
+
font-weight: normal;
|
|
2419
|
+
padding-top: 0;
|
|
2420
|
+
}
|
|
2405
2421
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2406
2422
|
color: var(--color-sf-content-text-color);
|
|
2407
2423
|
font-size: 12px;
|
|
@@ -3442,6 +3458,7 @@
|
|
|
3442
3458
|
margin: 0;
|
|
3443
3459
|
max-width: 100%;
|
|
3444
3460
|
overflow: hidden;
|
|
3461
|
+
position: fixed;
|
|
3445
3462
|
right: 0;
|
|
3446
3463
|
top: 0;
|
|
3447
3464
|
width: 100%;
|
|
@@ -3704,10 +3721,6 @@
|
|
|
3704
3721
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
3705
3722
|
border-left-width: 0;
|
|
3706
3723
|
}
|
|
3707
|
-
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
3708
|
-
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
3709
|
-
border-bottom-width: 0;
|
|
3710
|
-
}
|
|
3711
3724
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3712
3725
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3713
3726
|
background: var(--color-sf-content-bg-color);
|
|
@@ -4242,7 +4255,7 @@
|
|
|
4242
4255
|
}
|
|
4243
4256
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
4244
4257
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
4245
|
-
padding-right:
|
|
4258
|
+
padding-right: 10px;
|
|
4246
4259
|
}
|
|
4247
4260
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
4248
4261
|
font-size: 16px;
|
|
@@ -4285,7 +4298,8 @@
|
|
|
4285
4298
|
.e-bigger .e-agenda-view .e-appointment {
|
|
4286
4299
|
padding: 0 14px;
|
|
4287
4300
|
}
|
|
4288
|
-
.e-bigger .e-agenda-view .e-subject
|
|
4301
|
+
.e-bigger .e-agenda-view .e-subject,
|
|
4302
|
+
.e-bigger .e-agenda-view .e-inline-subject {
|
|
4289
4303
|
font-size: 16px;
|
|
4290
4304
|
}
|
|
4291
4305
|
.e-bigger .e-agenda-view .e-date-time {
|
|
@@ -1274,6 +1274,17 @@
|
|
|
1274
1274
|
vertical-align: top;
|
|
1275
1275
|
width: 36px;
|
|
1276
1276
|
}
|
|
1277
|
+
.e-schedule .e-clipboard {
|
|
1278
|
+
cursor: default;
|
|
1279
|
+
height: 1px;
|
|
1280
|
+
left: -1000px;
|
|
1281
|
+
position: fixed;
|
|
1282
|
+
resize: none;
|
|
1283
|
+
top: -1000px;
|
|
1284
|
+
width: 1px;
|
|
1285
|
+
overflow: hidden;
|
|
1286
|
+
opacity: 0;
|
|
1287
|
+
}
|
|
1277
1288
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1278
1289
|
border-bottom-width: 0;
|
|
1279
1290
|
}
|
|
@@ -2391,13 +2402,18 @@
|
|
|
2391
2402
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2392
2403
|
color: #212529;
|
|
2393
2404
|
}
|
|
2394
|
-
.e-schedule .e-agenda-view .e-subject
|
|
2405
|
+
.e-schedule .e-agenda-view .e-subject,
|
|
2406
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2395
2407
|
color: #212529;
|
|
2396
2408
|
font-size: 14px;
|
|
2397
2409
|
line-height: 23px;
|
|
2398
2410
|
overflow: hidden;
|
|
2399
2411
|
text-overflow: ellipsis;
|
|
2400
2412
|
}
|
|
2413
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2414
|
+
font-weight: normal;
|
|
2415
|
+
padding-top: 0;
|
|
2416
|
+
}
|
|
2401
2417
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2402
2418
|
color: #212529;
|
|
2403
2419
|
font-size: 12px;
|
|
@@ -3438,6 +3454,7 @@
|
|
|
3438
3454
|
margin: 0;
|
|
3439
3455
|
max-width: 100%;
|
|
3440
3456
|
overflow: hidden;
|
|
3457
|
+
position: fixed;
|
|
3441
3458
|
right: 0;
|
|
3442
3459
|
top: 0;
|
|
3443
3460
|
width: 100%;
|
|
@@ -3674,10 +3691,6 @@
|
|
|
3674
3691
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
3675
3692
|
border-left-width: 0;
|
|
3676
3693
|
}
|
|
3677
|
-
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
3678
|
-
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
3679
|
-
border-bottom-width: 0;
|
|
3680
|
-
}
|
|
3681
3694
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3682
3695
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3683
3696
|
background: #fff;
|
|
@@ -4196,7 +4209,7 @@
|
|
|
4196
4209
|
}
|
|
4197
4210
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-date-time-icon,
|
|
4198
4211
|
.e-bigger .e-quick-popup-wrapper .e-event-popup .e-date-time-icon {
|
|
4199
|
-
padding-right:
|
|
4212
|
+
padding-right: 10px;
|
|
4200
4213
|
}
|
|
4201
4214
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-header-icon-wrapper .e-close .e-close-icon {
|
|
4202
4215
|
font-size: 16px;
|
|
@@ -4239,7 +4252,8 @@
|
|
|
4239
4252
|
.e-bigger .e-agenda-view .e-appointment {
|
|
4240
4253
|
padding: 0 14px;
|
|
4241
4254
|
}
|
|
4242
|
-
.e-bigger .e-agenda-view .e-subject
|
|
4255
|
+
.e-bigger .e-agenda-view .e-subject,
|
|
4256
|
+
.e-bigger .e-agenda-view .e-inline-subject {
|
|
4243
4257
|
font-size: 16px;
|
|
4244
4258
|
}
|
|
4245
4259
|
.e-bigger .e-agenda-view .e-date-time {
|
|
@@ -1199,6 +1199,17 @@
|
|
|
1199
1199
|
vertical-align: top;
|
|
1200
1200
|
width: 36px;
|
|
1201
1201
|
}
|
|
1202
|
+
.e-schedule .e-clipboard {
|
|
1203
|
+
cursor: default;
|
|
1204
|
+
height: 1px;
|
|
1205
|
+
left: -1000px;
|
|
1206
|
+
position: fixed;
|
|
1207
|
+
resize: none;
|
|
1208
|
+
top: -1000px;
|
|
1209
|
+
width: 1px;
|
|
1210
|
+
overflow: hidden;
|
|
1211
|
+
opacity: 0;
|
|
1212
|
+
}
|
|
1202
1213
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1203
1214
|
border-bottom-width: 0;
|
|
1204
1215
|
}
|
|
@@ -2316,13 +2327,18 @@
|
|
|
2316
2327
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2317
2328
|
color: #dadada;
|
|
2318
2329
|
}
|
|
2319
|
-
.e-schedule .e-agenda-view .e-subject
|
|
2330
|
+
.e-schedule .e-agenda-view .e-subject,
|
|
2331
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2320
2332
|
color: #dadada;
|
|
2321
2333
|
font-size: 14px;
|
|
2322
2334
|
line-height: 23px;
|
|
2323
2335
|
overflow: hidden;
|
|
2324
2336
|
text-overflow: ellipsis;
|
|
2325
2337
|
}
|
|
2338
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2339
|
+
font-weight: normal;
|
|
2340
|
+
padding-top: 0;
|
|
2341
|
+
}
|
|
2326
2342
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2327
2343
|
color: #dadada;
|
|
2328
2344
|
font-size: 13px;
|
|
@@ -3363,6 +3379,7 @@
|
|
|
3363
3379
|
margin: 0;
|
|
3364
3380
|
max-width: 100%;
|
|
3365
3381
|
overflow: hidden;
|
|
3382
|
+
position: fixed;
|
|
3366
3383
|
right: 0;
|
|
3367
3384
|
top: 0;
|
|
3368
3385
|
width: 100%;
|
|
@@ -3599,10 +3616,6 @@
|
|
|
3599
3616
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
3600
3617
|
border-left-width: 0;
|
|
3601
3618
|
}
|
|
3602
|
-
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
3603
|
-
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
3604
|
-
border-bottom-width: 0;
|
|
3605
|
-
}
|
|
3606
3619
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3607
3620
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3608
3621
|
background: #201f1f;
|
|
@@ -4164,7 +4177,8 @@
|
|
|
4164
4177
|
.e-bigger .e-agenda-view .e-appointment {
|
|
4165
4178
|
padding: 0 8px;
|
|
4166
4179
|
}
|
|
4167
|
-
.e-bigger .e-agenda-view .e-subject
|
|
4180
|
+
.e-bigger .e-agenda-view .e-subject,
|
|
4181
|
+
.e-bigger .e-agenda-view .e-inline-subject {
|
|
4168
4182
|
font-size: 16px;
|
|
4169
4183
|
}
|
|
4170
4184
|
.e-bigger .e-agenda-view .e-date-time {
|
|
@@ -1196,6 +1196,17 @@
|
|
|
1196
1196
|
vertical-align: top;
|
|
1197
1197
|
width: 36px;
|
|
1198
1198
|
}
|
|
1199
|
+
.e-schedule .e-clipboard {
|
|
1200
|
+
cursor: default;
|
|
1201
|
+
height: 1px;
|
|
1202
|
+
left: -1000px;
|
|
1203
|
+
position: fixed;
|
|
1204
|
+
resize: none;
|
|
1205
|
+
top: -1000px;
|
|
1206
|
+
width: 1px;
|
|
1207
|
+
overflow: hidden;
|
|
1208
|
+
opacity: 0;
|
|
1209
|
+
}
|
|
1199
1210
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1200
1211
|
border-bottom-width: 0;
|
|
1201
1212
|
}
|
|
@@ -2313,13 +2324,18 @@
|
|
|
2313
2324
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2314
2325
|
color: #333;
|
|
2315
2326
|
}
|
|
2316
|
-
.e-schedule .e-agenda-view .e-subject
|
|
2327
|
+
.e-schedule .e-agenda-view .e-subject,
|
|
2328
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2317
2329
|
color: #333;
|
|
2318
2330
|
font-size: 14px;
|
|
2319
2331
|
line-height: 23px;
|
|
2320
2332
|
overflow: hidden;
|
|
2321
2333
|
text-overflow: ellipsis;
|
|
2322
2334
|
}
|
|
2335
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2336
|
+
font-weight: normal;
|
|
2337
|
+
padding-top: 0;
|
|
2338
|
+
}
|
|
2323
2339
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2324
2340
|
color: #333;
|
|
2325
2341
|
font-size: 13px;
|
|
@@ -3360,6 +3376,7 @@
|
|
|
3360
3376
|
margin: 0;
|
|
3361
3377
|
max-width: 100%;
|
|
3362
3378
|
overflow: hidden;
|
|
3379
|
+
position: fixed;
|
|
3363
3380
|
right: 0;
|
|
3364
3381
|
top: 0;
|
|
3365
3382
|
width: 100%;
|
|
@@ -3596,10 +3613,6 @@
|
|
|
3596
3613
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
3597
3614
|
border-left-width: 0;
|
|
3598
3615
|
}
|
|
3599
|
-
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
3600
|
-
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
3601
|
-
border-bottom-width: 0;
|
|
3602
|
-
}
|
|
3603
3616
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3604
3617
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3605
3618
|
background: #fff;
|
|
@@ -4161,7 +4174,8 @@
|
|
|
4161
4174
|
.e-bigger .e-agenda-view .e-appointment {
|
|
4162
4175
|
padding: 0 8px;
|
|
4163
4176
|
}
|
|
4164
|
-
.e-bigger .e-agenda-view .e-subject
|
|
4177
|
+
.e-bigger .e-agenda-view .e-subject,
|
|
4178
|
+
.e-bigger .e-agenda-view .e-inline-subject {
|
|
4165
4179
|
font-size: 16px;
|
|
4166
4180
|
}
|
|
4167
4181
|
.e-bigger .e-agenda-view .e-date-time {
|
|
@@ -1262,6 +1262,17 @@
|
|
|
1262
1262
|
vertical-align: top;
|
|
1263
1263
|
width: 36px;
|
|
1264
1264
|
}
|
|
1265
|
+
.e-schedule .e-clipboard {
|
|
1266
|
+
cursor: default;
|
|
1267
|
+
height: 1px;
|
|
1268
|
+
left: -1000px;
|
|
1269
|
+
position: fixed;
|
|
1270
|
+
resize: none;
|
|
1271
|
+
top: -1000px;
|
|
1272
|
+
width: 1px;
|
|
1273
|
+
overflow: hidden;
|
|
1274
|
+
opacity: 0;
|
|
1275
|
+
}
|
|
1265
1276
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1266
1277
|
border-bottom-width: 0;
|
|
1267
1278
|
}
|
|
@@ -2379,13 +2390,18 @@
|
|
|
2379
2390
|
.e-schedule .e-agenda-view .e-active-appointment-agenda .e-location {
|
|
2380
2391
|
color: #f3f2f1;
|
|
2381
2392
|
}
|
|
2382
|
-
.e-schedule .e-agenda-view .e-subject
|
|
2393
|
+
.e-schedule .e-agenda-view .e-subject,
|
|
2394
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2383
2395
|
color: #f3f2f1;
|
|
2384
2396
|
font-size: 14px;
|
|
2385
2397
|
line-height: 23px;
|
|
2386
2398
|
overflow: hidden;
|
|
2387
2399
|
text-overflow: ellipsis;
|
|
2388
2400
|
}
|
|
2401
|
+
.e-schedule .e-agenda-view .e-inline-subject {
|
|
2402
|
+
font-weight: normal;
|
|
2403
|
+
padding-top: 0;
|
|
2404
|
+
}
|
|
2389
2405
|
.e-schedule .e-agenda-view .e-resource-name {
|
|
2390
2406
|
color: #f3f2f1;
|
|
2391
2407
|
font-size: 12px;
|
|
@@ -3426,6 +3442,7 @@
|
|
|
3426
3442
|
margin: 0;
|
|
3427
3443
|
max-width: 100%;
|
|
3428
3444
|
overflow: hidden;
|
|
3445
|
+
position: fixed;
|
|
3429
3446
|
right: 0;
|
|
3430
3447
|
top: 0;
|
|
3431
3448
|
width: 100%;
|
|
@@ -3662,10 +3679,6 @@
|
|
|
3662
3679
|
.e-schedule .e-timeline-month-view .e-content-wrap table td:first-child {
|
|
3663
3680
|
border-left-width: 0;
|
|
3664
3681
|
}
|
|
3665
|
-
.e-schedule .e-timeline-view .e-content-wrap table tr:last-child td,
|
|
3666
|
-
.e-schedule .e-timeline-month-view .e-content-wrap table tr:last-child td {
|
|
3667
|
-
border-bottom-width: 0;
|
|
3668
|
-
}
|
|
3669
3682
|
.e-schedule .e-timeline-view .e-date-header-wrap table td,
|
|
3670
3683
|
.e-schedule .e-timeline-month-view .e-date-header-wrap table td {
|
|
3671
3684
|
background: #1b1a19;
|
|
@@ -4227,7 +4240,8 @@
|
|
|
4227
4240
|
.e-bigger .e-agenda-view .e-appointment {
|
|
4228
4241
|
padding: 0 16px;
|
|
4229
4242
|
}
|
|
4230
|
-
.e-bigger .e-agenda-view .e-subject
|
|
4243
|
+
.e-bigger .e-agenda-view .e-subject,
|
|
4244
|
+
.e-bigger .e-agenda-view .e-inline-subject {
|
|
4231
4245
|
font-size: 16px;
|
|
4232
4246
|
}
|
|
4233
4247
|
.e-bigger .e-agenda-view .e-date-time {
|