@syncfusion/ej2-schedule 19.3.55 → 19.4.38
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +39 -0
- package/CHANGELOG.md +24 -1
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +423 -101
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +427 -108
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +15 -15
- package/src/recurrence-editor/recurrence-editor.js +2 -2
- package/src/schedule/actions/drag.js +12 -4
- package/src/schedule/actions/keyboard.d.ts +7 -0
- package/src/schedule/actions/keyboard.js +197 -28
- package/src/schedule/base/interface.d.ts +12 -0
- package/src/schedule/base/resource.js +1 -0
- package/src/schedule/base/schedule-model.d.ts +89 -20
- package/src/schedule/base/schedule.d.ts +88 -19
- package/src/schedule/base/schedule.js +14 -3
- package/src/schedule/base/util.d.ts +1 -0
- package/src/schedule/base/util.js +1 -0
- package/src/schedule/event-renderer/event-base.d.ts +1 -0
- package/src/schedule/event-renderer/event-base.js +18 -2
- package/src/schedule/event-renderer/inline-edit.js +8 -5
- package/src/schedule/event-renderer/month.js +1 -1
- package/src/schedule/event-renderer/timeline-view.js +4 -0
- package/src/schedule/event-renderer/vertical-view.js +9 -6
- package/src/schedule/event-renderer/year.js +1 -1
- package/src/schedule/exports/excel-export.d.ts +2 -1
- package/src/schedule/exports/excel-export.js +21 -18
- package/src/schedule/models/event-settings-model.d.ts +17 -9
- package/src/schedule/models/event-settings.d.ts +15 -8
- package/src/schedule/models/event-settings.js +6 -3
- package/src/schedule/models/views-model.d.ts +19 -0
- package/src/schedule/models/views.d.ts +17 -0
- package/src/schedule/models/views.js +6 -0
- package/src/schedule/popups/quick-popups.js +3 -0
- package/src/schedule/renderer/agenda.js +2 -1
- package/src/schedule/renderer/header-renderer.d.ts +1 -0
- package/src/schedule/renderer/header-renderer.js +22 -8
- package/src/schedule/renderer/month.d.ts +4 -0
- package/src/schedule/renderer/month.js +68 -19
- package/src/schedule/renderer/timeline-year.js +3 -0
- package/src/schedule/renderer/view-base.js +9 -0
- package/src/schedule/renderer/year.d.ts +2 -2
- package/src/schedule/renderer/year.js +24 -6
- package/styles/bootstrap-dark.css +108 -27
- package/styles/bootstrap.css +105 -27
- package/styles/bootstrap4.css +117 -62
- package/styles/bootstrap5-dark.css +118 -67
- package/styles/bootstrap5.css +118 -67
- package/styles/fabric-dark.css +108 -26
- package/styles/fabric.css +109 -26
- package/styles/highcontrast-light.css +104 -26
- package/styles/highcontrast.css +109 -28
- package/styles/material-dark.css +110 -32
- package/styles/material.css +103 -25
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +7 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +8 -0
- package/styles/recurrence-editor/_fabric-definition.scss +7 -0
- package/styles/recurrence-editor/_fluent-definition.scss +15 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +7 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +7 -0
- package/styles/recurrence-editor/_layout.scss +20 -4
- package/styles/recurrence-editor/_material-dark-definition.scss +7 -0
- package/styles/recurrence-editor/_material-definition.scss +7 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +15 -8
- package/styles/recurrence-editor/bootstrap-dark.css +20 -4
- package/styles/recurrence-editor/bootstrap.css +20 -4
- package/styles/recurrence-editor/bootstrap4.css +20 -4
- package/styles/recurrence-editor/bootstrap5-dark.css +20 -4
- package/styles/recurrence-editor/bootstrap5.css +20 -4
- package/styles/recurrence-editor/fabric-dark.css +20 -4
- package/styles/recurrence-editor/fabric.css +20 -4
- package/styles/recurrence-editor/highcontrast-light.css +20 -4
- package/styles/recurrence-editor/highcontrast.css +20 -4
- package/styles/recurrence-editor/material-dark.css +20 -4
- package/styles/recurrence-editor/material.css +20 -4
- package/styles/recurrence-editor/tailwind-dark.css +20 -4
- package/styles/recurrence-editor/tailwind.css +20 -4
- package/styles/schedule/_bootstrap-dark-definition.scss +22 -1
- package/styles/schedule/_bootstrap-definition.scss +22 -1
- package/styles/schedule/_bootstrap4-definition.scss +23 -1
- package/styles/schedule/_bootstrap5-definition.scss +145 -119
- package/styles/schedule/_fabric-dark-definition.scss +22 -1
- package/styles/schedule/_fabric-definition.scss +22 -1
- package/styles/schedule/_fluent-definition.scss +218 -0
- package/styles/schedule/_highcontrast-definition.scss +22 -1
- package/styles/schedule/_highcontrast-light-definition.scss +22 -1
- package/styles/schedule/_layout.scss +95 -158
- package/styles/schedule/_material-dark-definition.scss +22 -1
- package/styles/schedule/_material-definition.scss +21 -0
- package/styles/schedule/_tailwind-definition.scss +216 -195
- package/styles/schedule/_theme.scss +1 -1
- package/styles/schedule/bootstrap-dark.css +88 -23
- package/styles/schedule/bootstrap.css +85 -23
- package/styles/schedule/bootstrap4.css +97 -58
- package/styles/schedule/bootstrap5-dark.css +98 -63
- package/styles/schedule/bootstrap5.css +98 -63
- package/styles/schedule/fabric-dark.css +88 -22
- package/styles/schedule/fabric.css +89 -22
- package/styles/schedule/highcontrast-light.css +84 -22
- package/styles/schedule/highcontrast.css +89 -24
- package/styles/schedule/icons/_fluent.scss +231 -0
- package/styles/schedule/icons/_tailwind.scss +231 -231
- package/styles/schedule/material-dark.css +90 -28
- package/styles/schedule/material.css +83 -21
- package/styles/schedule/tailwind-dark.css +94 -52
- package/styles/schedule/tailwind.css +94 -52
- package/styles/tailwind-dark.css +114 -56
- package/styles/tailwind.css +114 -56
|
@@ -144,10 +144,11 @@ var Month = /** @class */ (function (_super) {
|
|
|
144
144
|
Month.prototype.getDateSlots = function (renderDates, workDays) {
|
|
145
145
|
var count = this.parent.activeViewOptions.showWeekend ? util.WEEK_LENGTH : workDays.length;
|
|
146
146
|
var dateSlots = [];
|
|
147
|
+
var isCurrentMonth = this.isCurrentMonth(this.parent.selectedDate);
|
|
147
148
|
for (var col = 0; col < count; col++) {
|
|
148
149
|
var classList = [cls.HEADER_CELLS_CLASS];
|
|
149
150
|
var currentDateIndex = renderDates.slice(0, count).map(function (date) { return date.getDay(); });
|
|
150
|
-
if (
|
|
151
|
+
if (isCurrentMonth && currentDateIndex.indexOf(this.parent.getCurrentTime().getDay()) === col) {
|
|
151
152
|
classList.push(cls.CURRENT_DAY_CLASS);
|
|
152
153
|
}
|
|
153
154
|
dateSlots.push({ date: renderDates[col], type: 'monthDay', className: classList, colSpan: 1, workDays: workDays });
|
|
@@ -186,6 +187,9 @@ var Month = /** @class */ (function (_super) {
|
|
|
186
187
|
this.renderResourceMobileLayout();
|
|
187
188
|
}
|
|
188
189
|
this.parent.notify(event.contentReady, {});
|
|
190
|
+
if (this.parent.uiStateValues.isCustomMonth) {
|
|
191
|
+
this.parent.uiStateValues.isCustomMonth = false;
|
|
192
|
+
}
|
|
189
193
|
};
|
|
190
194
|
Month.prototype.refreshHeader = function () {
|
|
191
195
|
remove(this.element.querySelector('tbody tr'));
|
|
@@ -371,7 +375,7 @@ var Month = /** @class */ (function (_super) {
|
|
|
371
375
|
return slotDatas;
|
|
372
376
|
};
|
|
373
377
|
Month.prototype.updateClassList = function (data) {
|
|
374
|
-
if (this.isOtherMonth(data.date)) {
|
|
378
|
+
if (!this.isCustomMonth() && this.isOtherMonth(data.date)) {
|
|
375
379
|
data.className.push(cls.OTHERMONTH_CLASS);
|
|
376
380
|
}
|
|
377
381
|
if (!this.parent.isMinMaxDate(data.date)) {
|
|
@@ -480,15 +484,33 @@ var Month = /** @class */ (function (_super) {
|
|
|
480
484
|
}
|
|
481
485
|
};
|
|
482
486
|
Month.prototype.getMonthStart = function (currentDate) {
|
|
483
|
-
var
|
|
484
|
-
var
|
|
485
|
-
|
|
487
|
+
var useDisplayDate = this.parent.currentView === 'Month' && !isNullOrUndefined(this.parent.activeViewOptions.displayDate) && (this.parent.uiStateValues.isCustomMonth || this.isCustomRange());
|
|
488
|
+
var date = useDisplayDate ? this.parent.activeViewOptions.displayDate : !(this.parent.uiStateValues.isCustomMonth ||
|
|
489
|
+
this.isCustomRange()) && this.isCustomMonth() ? currentDate : this.parent.calendarUtil.firstDateOfMonth(currentDate);
|
|
490
|
+
var monthStart = util.getWeekFirstDate(date, this.parent.activeViewOptions.firstDayOfWeek);
|
|
491
|
+
return new Date(monthStart.getFullYear(), monthStart.getMonth(), monthStart.getDate());
|
|
486
492
|
};
|
|
487
493
|
Month.prototype.getMonthEnd = function (currentDate) {
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
494
|
+
if (this.isCustomMonth()) {
|
|
495
|
+
var start = this.getMonthStart(currentDate);
|
|
496
|
+
var numberOfDays = util.WEEK_LENGTH * (this.parent.activeViewOptions.numberOfWeeks > 0 ?
|
|
497
|
+
this.parent.activeViewOptions.numberOfWeeks : util.DEFAULT_WEEKS);
|
|
498
|
+
return util.addDays(start, (numberOfDays - 1));
|
|
499
|
+
}
|
|
500
|
+
else {
|
|
501
|
+
var endDate = util.addMonths(currentDate, this.parent.activeViewOptions.interval - 1);
|
|
502
|
+
var lastWeekOfMonth = util.getWeekFirstDate(this.parent.calendarUtil.lastDateOfMonth(endDate), this.parent.activeViewOptions.firstDayOfWeek);
|
|
503
|
+
return util.addDays(lastWeekOfMonth, util.WEEK_LENGTH - 1);
|
|
504
|
+
}
|
|
505
|
+
};
|
|
506
|
+
Month.prototype.isCustomRange = function () {
|
|
507
|
+
var dates = this.parent.getCurrentViewDates();
|
|
508
|
+
if (dates && dates.length > 0) {
|
|
509
|
+
var selectedTime = util.resetTime(this.parent.selectedDate).getTime();
|
|
510
|
+
return !(selectedTime >= util.getWeekFirstDate(dates[0], this.parent.activeViewOptions.firstDayOfWeek).getTime() &&
|
|
511
|
+
selectedTime <= util.addDays(util.getWeekFirstDate(dates[dates.length - 1], this.parent.activeViewOptions.firstDayOfWeek), 6).getTime());
|
|
512
|
+
}
|
|
513
|
+
return false;
|
|
492
514
|
};
|
|
493
515
|
Month.prototype.getRenderDates = function (workDays) {
|
|
494
516
|
var renderDates = [];
|
|
@@ -518,34 +540,57 @@ var Month = /** @class */ (function (_super) {
|
|
|
518
540
|
return renderDates;
|
|
519
541
|
};
|
|
520
542
|
Month.prototype.getNextPreviousDate = function (type) {
|
|
521
|
-
if (
|
|
522
|
-
|
|
543
|
+
if (this.isCustomMonth()) {
|
|
544
|
+
var dates = this.parent.getCurrentViewDates();
|
|
545
|
+
var date = util.getWeekFirstDate(type === 'next' ? dates[dates.length - 1]
|
|
546
|
+
: dates[0], this.parent.activeViewOptions.firstDayOfWeek);
|
|
547
|
+
return util.addDays(date, type === 'next' ? util.WEEK_LENGTH : -(this.parent.activeViewOptions.numberOfWeeks > 0 ?
|
|
548
|
+
this.parent.activeViewOptions.numberOfWeeks : util.DEFAULT_WEEKS) * util.WEEK_LENGTH);
|
|
523
549
|
}
|
|
524
550
|
else {
|
|
525
|
-
return util.addMonths(this.parent.selectedDate, -
|
|
551
|
+
return util.addMonths(this.parent.selectedDate, ((type === 'next' ? 1 : -1) * this.parent.activeViewOptions.interval));
|
|
526
552
|
}
|
|
527
553
|
};
|
|
554
|
+
Month.prototype.getStartDate = function () {
|
|
555
|
+
return this.getMonthStart(this.parent.selectedDate);
|
|
556
|
+
};
|
|
557
|
+
Month.prototype.getEndDate = function () {
|
|
558
|
+
return this.getMonthEnd(this.parent.selectedDate);
|
|
559
|
+
};
|
|
528
560
|
Month.prototype.getEndDateFromStartDate = function (start) {
|
|
529
561
|
return util.addDays(new Date(start.getTime()), 1);
|
|
530
562
|
};
|
|
531
563
|
Month.prototype.getDateRangeText = function () {
|
|
532
564
|
if (this.parent.isAdaptive || isNullOrUndefined(this.parent.activeViewOptions.dateFormat)) {
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
565
|
+
var startDate = this.parent.selectedDate;
|
|
566
|
+
var endDate = void 0;
|
|
567
|
+
var updateCustomRange = false;
|
|
568
|
+
if (this.isCustomMonth()) {
|
|
569
|
+
var dates = this.parent.getCurrentViewDates();
|
|
570
|
+
updateCustomRange = dates[0].getMonth() !== dates[dates.length - 1].getMonth() ||
|
|
571
|
+
dates[0].getFullYear() !== dates[dates.length - 1].getFullYear();
|
|
572
|
+
if (updateCustomRange) {
|
|
573
|
+
startDate = dates[0];
|
|
574
|
+
endDate = dates[dates.length - 1];
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
var isUpdateDateRange = (this.parent.currentView !== 'Month' || !this.isCustomMonth());
|
|
578
|
+
if (this.parent.activeViewOptions.interval > 1 && isUpdateDateRange || updateCustomRange) {
|
|
579
|
+
endDate = endDate ? endDate : util.addMonths(util.lastDateOfMonth(startDate), this.parent.activeViewOptions.interval - 1);
|
|
580
|
+
if (startDate.getFullYear() === endDate.getFullYear()) {
|
|
581
|
+
var monthNames = (this.parent.globalize.formatDate(startDate, { format: 'MMMM', calendar: this.parent.getCalendarMode() })) + ' - ' +
|
|
537
582
|
(this.parent.globalize.formatDate(endDate, { format: 'MMMM ', calendar: this.parent.getCalendarMode() })) +
|
|
538
583
|
this.parent.globalize.formatDate(endDate, { skeleton: 'y', calendar: this.parent.getCalendarMode() });
|
|
539
584
|
return util.capitalizeFirstWord(monthNames, 'single');
|
|
540
585
|
}
|
|
541
|
-
var text = (this.parent.globalize.formatDate(
|
|
542
|
-
|
|
586
|
+
var text = (this.parent.globalize.formatDate(startDate, { format: 'MMMM', calendar: this.parent.getCalendarMode() })) + ' ' +
|
|
587
|
+
startDate.getFullYear() + ' - ' +
|
|
543
588
|
this.parent.globalize.formatDate(endDate, { format: 'MMMM ', calendar: this.parent.getCalendarMode() }) +
|
|
544
589
|
this.parent.globalize.formatDate(endDate, { skeleton: 'y', calendar: this.parent.getCalendarMode() });
|
|
545
590
|
return util.capitalizeFirstWord(text, 'single');
|
|
546
591
|
}
|
|
547
592
|
var format = (this.parent.activeViewOptions.dateFormat) ? this.parent.activeViewOptions.dateFormat : 'MMMM y';
|
|
548
|
-
return util.capitalizeFirstWord(this.parent.globalize.formatDate(
|
|
593
|
+
return util.capitalizeFirstWord(this.parent.globalize.formatDate(startDate, { format: format, calendar: this.parent.getCalendarMode() }), 'single');
|
|
549
594
|
}
|
|
550
595
|
return this.formatDateRange(this.parent.selectedDate);
|
|
551
596
|
};
|
|
@@ -570,6 +615,10 @@ var Month = /** @class */ (function (_super) {
|
|
|
570
615
|
EventHandler.remove(contentScrollableEle, 'scroll', this.onContentScroll);
|
|
571
616
|
}
|
|
572
617
|
};
|
|
618
|
+
Month.prototype.isCustomMonth = function () {
|
|
619
|
+
return this.parent.currentView === 'Month' &&
|
|
620
|
+
(!isNullOrUndefined(this.parent.activeViewOptions.displayDate) || this.parent.activeViewOptions.numberOfWeeks > 0);
|
|
621
|
+
};
|
|
573
622
|
Month.prototype.getModuleName = function () {
|
|
574
623
|
return 'month';
|
|
575
624
|
};
|
|
@@ -43,6 +43,9 @@ var TimelineYear = /** @class */ (function (_super) {
|
|
|
43
43
|
tr.appendChild(leftHeaderCells);
|
|
44
44
|
leftHeaderCells.appendChild(this.renderResourceHeader(cls.LEFT_INDENT_WRAP_CLASS));
|
|
45
45
|
}
|
|
46
|
+
var isHorizontal = this.parent.activeViewOptions.orientation === 'Horizontal';
|
|
47
|
+
var isGroup = this.parent.activeViewOptions.group.resources.length > 0;
|
|
48
|
+
this.isInverseTableSelect = isHorizontal && !isGroup ? false : true;
|
|
46
49
|
var td = createElement('td');
|
|
47
50
|
tr.appendChild(td);
|
|
48
51
|
var container = createElement('div', { className: cls.DATE_HEADER_CONTAINER_CLASS });
|
|
@@ -209,6 +209,10 @@ var ViewBase = /** @class */ (function () {
|
|
|
209
209
|
return date.setHours(0, 0, 0, 0) === this.parent.getCurrentTime().setHours(0, 0, 0, 0);
|
|
210
210
|
};
|
|
211
211
|
ViewBase.prototype.isCurrentMonth = function (date) {
|
|
212
|
+
if (this.parent.activeViewOptions.displayDate || this.parent.activeViewOptions.numberOfWeeks > 0) {
|
|
213
|
+
return this.parent.activeView.getStartDate().getTime() <= this.parent.getCurrentTime().getTime() &&
|
|
214
|
+
this.parent.activeView.getEndDate().getTime() >= this.parent.getCurrentTime().getTime();
|
|
215
|
+
}
|
|
212
216
|
return date.getFullYear() ===
|
|
213
217
|
this.parent.getCurrentTime().getFullYear() && date.getMonth() === this.parent.getCurrentTime().getMonth();
|
|
214
218
|
};
|
|
@@ -441,6 +445,11 @@ var ViewBase = /** @class */ (function () {
|
|
|
441
445
|
setStyleAttribute(resourceColumn, { 'height': formatUnit(content.clientHeight) });
|
|
442
446
|
}
|
|
443
447
|
}
|
|
448
|
+
var headerCellElements = [].slice.call(this.element.querySelectorAll('.' + cls.HEADER_CELLS_CLASS));
|
|
449
|
+
headerCellElements.forEach(function (ele) {
|
|
450
|
+
var headerCellColSpan = parseInt(ele.getAttribute('colspan'), 10);
|
|
451
|
+
setStyleAttribute(ele, { 'width': formatUnit(colWidth_1 * headerCellColSpan) });
|
|
452
|
+
});
|
|
444
453
|
}
|
|
445
454
|
};
|
|
446
455
|
ViewBase.prototype.resetColWidth = function () {
|
|
@@ -29,8 +29,8 @@ export declare class Year extends ViewBase implements IRenderer {
|
|
|
29
29
|
private onCellClick;
|
|
30
30
|
onContentScroll(e: Event): void;
|
|
31
31
|
onScrollUiUpdate(args: NotifyEventArgs): void;
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
getStartDate(): Date;
|
|
33
|
+
getEndDate(): Date;
|
|
34
34
|
startDate(): Date;
|
|
35
35
|
endDate(): Date;
|
|
36
36
|
getEndDateFromStartDate(start: Date): Date;
|
|
@@ -236,10 +236,27 @@ var Year = /** @class */ (function (_super) {
|
|
|
236
236
|
Year.prototype.onCellClick = function (e) {
|
|
237
237
|
var target = closest(e.target, '.' + cls.WORK_CELLS_CLASS);
|
|
238
238
|
var startDate = this.parent.getDateFromElement(target);
|
|
239
|
-
|
|
240
|
-
var
|
|
241
|
-
|
|
242
|
-
|
|
239
|
+
this.parent.activeCellsData = this.parent.getCellDetails(target);
|
|
240
|
+
var isPrevious = startDate.getTime() < this.getStartDate().getTime();
|
|
241
|
+
if (isPrevious || startDate.getTime() > this.getEndDate().getTime()) {
|
|
242
|
+
this.parent.changeDate(this.parent.activeView.getNextPreviousDate(isPrevious ? 'previous' : 'next'), e);
|
|
243
|
+
var activeDate = this.parent.activeCellsData.startTime.getTime();
|
|
244
|
+
var inRange = activeDate >= this.getStartDate().getTime() && activeDate <= this.getEndDate().getTime();
|
|
245
|
+
var dateAttr = inRange ? activeDate : (isPrevious ? this.getEndDate() : this.getStartDate()).getTime();
|
|
246
|
+
var selectedCell = this.parent.element.querySelector(':not(.' + cls.OTHERMONTH_CLASS + ')[data-date="' + dateAttr + '"]');
|
|
247
|
+
this.parent.selectCell(selectedCell);
|
|
248
|
+
this.parent.activeCellsData = this.parent.getCellDetails(selectedCell);
|
|
249
|
+
}
|
|
250
|
+
else {
|
|
251
|
+
var endDate = util.addDays(new Date(startDate.getTime()), 1);
|
|
252
|
+
var filteredEvents = this.parent.eventBase.filterEvents(startDate, endDate);
|
|
253
|
+
var moreEventArgs = { date: startDate, event: filteredEvents, element: e.target };
|
|
254
|
+
if (target.classList.contains(cls.OTHERMONTH_CLASS)) {
|
|
255
|
+
target = this.parent.element.querySelector(':not(.' + cls.OTHERMONTH_CLASS + ')[data-date="' + target.getAttribute('data-date') + '"]');
|
|
256
|
+
}
|
|
257
|
+
this.parent.activeCellsData = this.parent.getCellDetails(target);
|
|
258
|
+
this.parent.quickPopup.moreEventClick(moreEventArgs, endDate);
|
|
259
|
+
}
|
|
243
260
|
};
|
|
244
261
|
Year.prototype.onContentScroll = function (e) {
|
|
245
262
|
var target = e.target;
|
|
@@ -291,10 +308,10 @@ var Year = /** @class */ (function (_super) {
|
|
|
291
308
|
return util.addDays(util.addMonths(this.getStartDate(), this.parent.monthsCount), -1);
|
|
292
309
|
};
|
|
293
310
|
Year.prototype.startDate = function () {
|
|
294
|
-
return util.getWeekFirstDate(this.getStartDate(), this.parent.firstDayOfWeek);
|
|
311
|
+
return this.parent.currentView === 'Year' ? util.getWeekFirstDate(this.getStartDate(), this.parent.firstDayOfWeek) : this.getStartDate();
|
|
295
312
|
};
|
|
296
313
|
Year.prototype.endDate = function () {
|
|
297
|
-
return util.addDays(util.getWeekLastDate(this.getEndDate(), this.parent.firstDayOfWeek), 1);
|
|
314
|
+
return this.parent.currentView === 'Year' ? util.addDays(util.getWeekLastDate(this.getEndDate(), this.parent.firstDayOfWeek), 1) : this.getEndDate();
|
|
298
315
|
};
|
|
299
316
|
Year.prototype.getEndDateFromStartDate = function (start) {
|
|
300
317
|
var date = new Date(start.getTime());
|
|
@@ -337,6 +354,7 @@ var Year = /** @class */ (function (_super) {
|
|
|
337
354
|
EventHandler.add(element, 'click', this.onCellClick, this);
|
|
338
355
|
}
|
|
339
356
|
else {
|
|
357
|
+
EventHandler.add(element, 'mousedown', this.parent.workCellAction.cellMouseDown, this.parent.workCellAction);
|
|
340
358
|
EventHandler.add(element, 'click', this.parent.workCellAction.cellClick, this.parent.workCellAction);
|
|
341
359
|
if (!this.parent.isAdaptive) {
|
|
342
360
|
EventHandler.add(element, 'dblclick', this.parent.workCellAction.cellDblClick, this.parent.workCellAction);
|
|
@@ -225,10 +225,6 @@
|
|
|
225
225
|
color: #3e98ff;
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
-
.e-schedule .e-schedule-toolbar .e-toolbar-pop {
|
|
229
|
-
overflow: auto;
|
|
230
|
-
}
|
|
231
|
-
|
|
232
228
|
.e-schedule .e-schedule-toolbar .e-tbar-btn .e-tbar-btn-text {
|
|
233
229
|
cursor: pointer;
|
|
234
230
|
font-size: 14px;
|
|
@@ -294,6 +290,10 @@
|
|
|
294
290
|
text-transform: initial;
|
|
295
291
|
}
|
|
296
292
|
|
|
293
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-tbtn-txt .e-icons.e-btn-icon {
|
|
294
|
+
padding: 0 12px;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
297
|
.e-schedule .e-schedule-toolbar.e-rtl .e-hor-nav {
|
|
298
298
|
background: #131313;
|
|
299
299
|
border-left: 0;
|
|
@@ -357,6 +357,10 @@
|
|
|
357
357
|
font-size: 18px;
|
|
358
358
|
}
|
|
359
359
|
|
|
360
|
+
.e-schedule.e-device .e-schedule-toolbar .e-toolbar-pop {
|
|
361
|
+
overflow: auto;
|
|
362
|
+
}
|
|
363
|
+
|
|
360
364
|
.e-schedule.e-device .e-content-wrap.e-scroll-hidden {
|
|
361
365
|
overflow: hidden;
|
|
362
366
|
}
|
|
@@ -436,10 +440,10 @@
|
|
|
436
440
|
|
|
437
441
|
.e-schedule .e-resource-tree-popup {
|
|
438
442
|
background: #6e6e6e;
|
|
443
|
+
box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.4);
|
|
439
444
|
height: 100%;
|
|
440
445
|
position: absolute;
|
|
441
446
|
width: 250px;
|
|
442
|
-
box-shadow: 0 3px 4px 0.2px rgba(0, 0, 0, 0.4);
|
|
443
447
|
}
|
|
444
448
|
|
|
445
449
|
.e-schedule .e-resource-tree-popup .e-resource-tree {
|
|
@@ -1533,6 +1537,7 @@
|
|
|
1533
1537
|
|
|
1534
1538
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-content span.e-day {
|
|
1535
1539
|
display: block;
|
|
1540
|
+
margin: 0 auto;
|
|
1536
1541
|
}
|
|
1537
1542
|
|
|
1538
1543
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-other-month {
|
|
@@ -1551,9 +1556,8 @@
|
|
|
1551
1556
|
background-color: #0070f0;
|
|
1552
1557
|
border-radius: 50%;
|
|
1553
1558
|
height: 5px;
|
|
1554
|
-
margin
|
|
1555
|
-
|
|
1556
|
-
position: absolute;
|
|
1559
|
+
margin: -6px auto 0;
|
|
1560
|
+
position: relative;
|
|
1557
1561
|
width: 5px;
|
|
1558
1562
|
}
|
|
1559
1563
|
|
|
@@ -1604,10 +1608,6 @@
|
|
|
1604
1608
|
border-left-width: 0;
|
|
1605
1609
|
}
|
|
1606
1610
|
|
|
1607
|
-
.e-schedule .e-year-view .e-calendar-table td:not(.e-cell) {
|
|
1608
|
-
border-left: 1px solid #505050;
|
|
1609
|
-
}
|
|
1610
|
-
|
|
1611
1611
|
.e-schedule .e-year-view .e-resource .e-month-calendar {
|
|
1612
1612
|
max-width: 100%;
|
|
1613
1613
|
min-width: 100%;
|
|
@@ -2092,7 +2092,7 @@
|
|
|
2092
2092
|
.e-schedule .e-timeline-view.e-ignore-whitespace .e-resource-cells,
|
|
2093
2093
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-work-cells,
|
|
2094
2094
|
.e-schedule .e-timeline-month-view.e-ignore-whitespace .e-resource-cells {
|
|
2095
|
-
height:
|
|
2095
|
+
height: 60px;
|
|
2096
2096
|
}
|
|
2097
2097
|
|
|
2098
2098
|
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells,
|
|
@@ -2552,6 +2552,10 @@
|
|
|
2552
2552
|
width: 75px;
|
|
2553
2553
|
}
|
|
2554
2554
|
|
|
2555
|
+
.e-schedule.e-rtl .e-month-agenda-view .e-resource-column .e-resource-name {
|
|
2556
|
+
white-space: normal;
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2555
2559
|
.e-schedule.e-rtl .e-month-agenda-view .e-day-padding {
|
|
2556
2560
|
padding-right: 8px;
|
|
2557
2561
|
}
|
|
@@ -2773,6 +2777,10 @@
|
|
|
2773
2777
|
width: 75px;
|
|
2774
2778
|
}
|
|
2775
2779
|
|
|
2780
|
+
.e-schedule.e-rtl .e-agenda-view .e-resource-column .e-resource-name {
|
|
2781
|
+
white-space: normal;
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2776
2784
|
.e-schedule.e-rtl .e-agenda-view .e-day-padding {
|
|
2777
2785
|
padding-right: 8px;
|
|
2778
2786
|
}
|
|
@@ -2854,9 +2862,8 @@
|
|
|
2854
2862
|
height: auto;
|
|
2855
2863
|
line-height: 25px;
|
|
2856
2864
|
margin: 4px 0;
|
|
2857
|
-
min-height:
|
|
2865
|
+
min-height: 34px;
|
|
2858
2866
|
min-width: 34px;
|
|
2859
|
-
padding: 0 1.5px;
|
|
2860
2867
|
}
|
|
2861
2868
|
|
|
2862
2869
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item button.e-btn.e-tbtn-txt .e-icons,
|
|
@@ -2994,6 +3001,10 @@
|
|
|
2994
3001
|
font-weight: 500;
|
|
2995
3002
|
}
|
|
2996
3003
|
|
|
3004
|
+
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
3005
|
+
width: 485px;
|
|
3006
|
+
}
|
|
3007
|
+
|
|
2997
3008
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2998
3009
|
width: 420px;
|
|
2999
3010
|
}
|
|
@@ -3015,6 +3026,14 @@
|
|
|
3015
3026
|
display: none;
|
|
3016
3027
|
}
|
|
3017
3028
|
|
|
3029
|
+
.e-dialog.e-quick-dialog .e-dlg-header-content {
|
|
3030
|
+
border-bottom: none;
|
|
3031
|
+
}
|
|
3032
|
+
|
|
3033
|
+
.e-dialog.e-quick-dialog .e-footer-content {
|
|
3034
|
+
border-top: none;
|
|
3035
|
+
}
|
|
3036
|
+
|
|
3018
3037
|
.e-dialog.e-quick-dialog .e-quick-dialog-cancel {
|
|
3019
3038
|
box-shadow: none;
|
|
3020
3039
|
}
|
|
@@ -3051,15 +3070,23 @@
|
|
|
3051
3070
|
|
|
3052
3071
|
.e-schedule-dialog .e-subject-container,
|
|
3053
3072
|
.e-schedule-dialog .e-start-container,
|
|
3054
|
-
.e-schedule-dialog .e-start-time-zone-container,
|
|
3055
3073
|
.e-schedule-dialog .e-description-label {
|
|
3056
3074
|
padding-right: 8px;
|
|
3057
3075
|
}
|
|
3058
3076
|
|
|
3077
|
+
.e-schedule-dialog .e-start-time-zone-container {
|
|
3078
|
+
padding-left: 4px;
|
|
3079
|
+
padding-right: 8px;
|
|
3080
|
+
}
|
|
3081
|
+
|
|
3059
3082
|
.e-schedule-dialog .e-location-container,
|
|
3060
|
-
.e-schedule-dialog .e-end-container
|
|
3083
|
+
.e-schedule-dialog .e-end-container {
|
|
3084
|
+
padding-left: 8px;
|
|
3085
|
+
}
|
|
3086
|
+
|
|
3061
3087
|
.e-schedule-dialog .e-end-time-zone-container {
|
|
3062
3088
|
padding-left: 8px;
|
|
3089
|
+
padding-right: 4px;
|
|
3063
3090
|
}
|
|
3064
3091
|
|
|
3065
3092
|
.e-schedule-dialog .e-all-day-container {
|
|
@@ -3152,19 +3179,27 @@
|
|
|
3152
3179
|
|
|
3153
3180
|
.e-schedule-dialog.e-rtl .e-subject-container,
|
|
3154
3181
|
.e-schedule-dialog.e-rtl .e-start-container,
|
|
3155
|
-
.e-schedule-dialog.e-rtl .e-start-time-zone-container,
|
|
3156
3182
|
.e-schedule-dialog.e-rtl .e-description-label {
|
|
3157
3183
|
padding-left: 8px;
|
|
3158
3184
|
padding-right: 0;
|
|
3159
3185
|
}
|
|
3160
3186
|
|
|
3187
|
+
.e-schedule-dialog.e-rtl .e-start-time-zone-container {
|
|
3188
|
+
padding-left: 8px;
|
|
3189
|
+
padding-right: 4px;
|
|
3190
|
+
}
|
|
3191
|
+
|
|
3161
3192
|
.e-schedule-dialog.e-rtl .e-location-container,
|
|
3162
|
-
.e-schedule-dialog.e-rtl .e-end-container
|
|
3163
|
-
.e-schedule-dialog.e-rtl .e-end-time-zone-container {
|
|
3193
|
+
.e-schedule-dialog.e-rtl .e-end-container {
|
|
3164
3194
|
padding-left: 0;
|
|
3165
3195
|
padding-right: 8px;
|
|
3166
3196
|
}
|
|
3167
3197
|
|
|
3198
|
+
.e-schedule-dialog.e-rtl .e-end-time-zone-container {
|
|
3199
|
+
padding-left: 4px;
|
|
3200
|
+
padding-right: 8px;
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3168
3203
|
.e-schedule-dialog.e-rtl .e-event-delete {
|
|
3169
3204
|
float: right;
|
|
3170
3205
|
}
|
|
@@ -3728,6 +3763,10 @@
|
|
|
3728
3763
|
margin-right: 10px;
|
|
3729
3764
|
}
|
|
3730
3765
|
|
|
3766
|
+
.e-quick-popup-wrapper.e-rtl .e-event-details {
|
|
3767
|
+
margin-left: 8px;
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3731
3770
|
.e-quick-popup-wrapper.e-device {
|
|
3732
3771
|
bottom: 0;
|
|
3733
3772
|
height: 100%;
|
|
@@ -3933,31 +3972,36 @@
|
|
|
3933
3972
|
width: 26px;
|
|
3934
3973
|
}
|
|
3935
3974
|
|
|
3975
|
+
.e-bigger .e-more-popup-wrapper,
|
|
3936
3976
|
.e-more-popup-wrapper {
|
|
3937
3977
|
background-color: #1a1a1a;
|
|
3938
3978
|
border: 1px solid #505050;
|
|
3939
3979
|
border-radius: 2px;
|
|
3980
|
+
box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
|
|
3940
3981
|
opacity: 1;
|
|
3941
3982
|
padding: 8px 0;
|
|
3942
3983
|
width: 225px;
|
|
3943
|
-
box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
|
|
3944
3984
|
}
|
|
3945
3985
|
|
|
3986
|
+
.e-bigger .e-more-popup-wrapper .e-more-appointment-wrapper,
|
|
3946
3987
|
.e-more-popup-wrapper .e-more-appointment-wrapper {
|
|
3947
3988
|
margin: 0 4px;
|
|
3948
3989
|
}
|
|
3949
3990
|
|
|
3991
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-popup,
|
|
3950
3992
|
.e-more-popup-wrapper .e-more-event-popup {
|
|
3951
3993
|
height: 100%;
|
|
3952
3994
|
position: relative;
|
|
3953
3995
|
width: 100%;
|
|
3954
3996
|
}
|
|
3955
3997
|
|
|
3998
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-header,
|
|
3956
3999
|
.e-more-popup-wrapper .e-more-event-header {
|
|
3957
4000
|
height: 35px;
|
|
3958
4001
|
margin: 0 8px 4px 14px;
|
|
3959
4002
|
}
|
|
3960
4003
|
|
|
4004
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-content,
|
|
3961
4005
|
.e-more-popup-wrapper .e-more-event-content {
|
|
3962
4006
|
height: calc(100% - 35px);
|
|
3963
4007
|
max-height: 300px;
|
|
@@ -3966,20 +4010,24 @@
|
|
|
3966
4010
|
padding-right: 10px;
|
|
3967
4011
|
}
|
|
3968
4012
|
|
|
4013
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-content .e-appointment-border,
|
|
3969
4014
|
.e-more-popup-wrapper .e-more-event-content .e-appointment-border {
|
|
3970
4015
|
border: 0;
|
|
3971
4016
|
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);
|
|
3972
4017
|
}
|
|
3973
4018
|
|
|
4019
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-date-header,
|
|
3974
4020
|
.e-more-popup-wrapper .e-more-event-date-header {
|
|
3975
4021
|
height: 100%;
|
|
3976
4022
|
width: calc(100% - 25px);
|
|
3977
4023
|
}
|
|
3978
4024
|
|
|
4025
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-date-header .e-current-date,
|
|
3979
4026
|
.e-more-popup-wrapper .e-more-event-date-header .e-current-date {
|
|
3980
4027
|
color: #3e98ff;
|
|
3981
4028
|
}
|
|
3982
4029
|
|
|
4030
|
+
.e-bigger .e-more-popup-wrapper .e-header-day,
|
|
3983
4031
|
.e-more-popup-wrapper .e-header-day {
|
|
3984
4032
|
color: #f0f0f0;
|
|
3985
4033
|
font-size: 13px;
|
|
@@ -3987,6 +4035,7 @@
|
|
|
3987
4035
|
padding-bottom: 2px;
|
|
3988
4036
|
}
|
|
3989
4037
|
|
|
4038
|
+
.e-bigger .e-more-popup-wrapper .e-header-date,
|
|
3990
4039
|
.e-more-popup-wrapper .e-header-date {
|
|
3991
4040
|
color: #f0f0f0;
|
|
3992
4041
|
font-size: 18px;
|
|
@@ -3994,15 +4043,18 @@
|
|
|
3994
4043
|
max-width: 15%;
|
|
3995
4044
|
}
|
|
3996
4045
|
|
|
4046
|
+
.e-bigger .e-more-popup-wrapper .e-header-date:hover,
|
|
3997
4047
|
.e-more-popup-wrapper .e-header-date:hover {
|
|
3998
4048
|
cursor: pointer;
|
|
3999
4049
|
text-decoration: underline;
|
|
4000
4050
|
}
|
|
4001
4051
|
|
|
4052
|
+
.e-bigger .e-more-popup-wrapper .e-header-date:focus,
|
|
4002
4053
|
.e-more-popup-wrapper .e-header-date:focus {
|
|
4003
4054
|
text-decoration: underline;
|
|
4004
4055
|
}
|
|
4005
4056
|
|
|
4057
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-close,
|
|
4006
4058
|
.e-more-popup-wrapper .e-more-event-close {
|
|
4007
4059
|
background-color: transparent;
|
|
4008
4060
|
border: 0;
|
|
@@ -4015,20 +4067,25 @@
|
|
|
4015
4067
|
width: 25px;
|
|
4016
4068
|
}
|
|
4017
4069
|
|
|
4070
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-close-icon,
|
|
4018
4071
|
.e-more-popup-wrapper .e-more-event-close .e-close-icon {
|
|
4019
4072
|
font-size: 9px;
|
|
4020
4073
|
}
|
|
4021
4074
|
|
|
4075
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-close .e-btn-icon,
|
|
4022
4076
|
.e-more-popup-wrapper .e-more-event-close .e-btn-icon {
|
|
4023
4077
|
margin-top: 3px;
|
|
4024
4078
|
}
|
|
4025
4079
|
|
|
4026
|
-
.e-more-popup-wrapper .e-more-event-close:focus, .e-more-popup-wrapper .e-more-event-close:hover
|
|
4080
|
+
.e-bigger .e-more-popup-wrapper .e-more-event-close:focus, .e-bigger .e-more-popup-wrapper .e-more-event-close:hover,
|
|
4081
|
+
.e-more-popup-wrapper .e-more-event-close:focus,
|
|
4082
|
+
.e-more-popup-wrapper .e-more-event-close:hover {
|
|
4027
4083
|
background-color: #484848;
|
|
4028
4084
|
border-radius: 50%;
|
|
4029
4085
|
color: #fff;
|
|
4030
4086
|
}
|
|
4031
4087
|
|
|
4088
|
+
.e-bigger .e-more-popup-wrapper .e-appointment,
|
|
4032
4089
|
.e-more-popup-wrapper .e-appointment {
|
|
4033
4090
|
background: #0070f0;
|
|
4034
4091
|
border-radius: 4px;
|
|
@@ -4042,6 +4099,7 @@
|
|
|
4042
4099
|
width: 100%;
|
|
4043
4100
|
}
|
|
4044
4101
|
|
|
4102
|
+
.e-bigger .e-more-popup-wrapper .e-appointment .e-subject,
|
|
4045
4103
|
.e-more-popup-wrapper .e-appointment .e-subject {
|
|
4046
4104
|
color: #fff;
|
|
4047
4105
|
-ms-flex: auto;
|
|
@@ -4054,17 +4112,22 @@
|
|
|
4054
4112
|
white-space: nowrap;
|
|
4055
4113
|
}
|
|
4056
4114
|
|
|
4115
|
+
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
4116
|
+
.e-bigger .e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon,
|
|
4057
4117
|
.e-more-popup-wrapper .e-appointment .e-recurrence-icon,
|
|
4058
4118
|
.e-more-popup-wrapper .e-appointment .e-recurrence-edit-icon {
|
|
4059
4119
|
line-height: 22px;
|
|
4060
4120
|
padding: 0 2px;
|
|
4061
4121
|
}
|
|
4062
4122
|
|
|
4063
|
-
.e-more-popup-wrapper .e-appointment.e-appointment-border, .e-more-popup-wrapper .e-appointment:focus
|
|
4123
|
+
.e-bigger .e-more-popup-wrapper .e-appointment.e-appointment-border, .e-bigger .e-more-popup-wrapper .e-appointment:focus,
|
|
4124
|
+
.e-more-popup-wrapper .e-appointment.e-appointment-border,
|
|
4125
|
+
.e-more-popup-wrapper .e-appointment:focus {
|
|
4064
4126
|
border: 0;
|
|
4065
4127
|
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);
|
|
4066
4128
|
}
|
|
4067
4129
|
|
|
4130
|
+
.e-bigger .e-more-popup-wrapper.e-device,
|
|
4068
4131
|
.e-more-popup-wrapper.e-device {
|
|
4069
4132
|
bottom: 0;
|
|
4070
4133
|
height: 100%;
|
|
@@ -4078,10 +4141,12 @@
|
|
|
4078
4141
|
z-index: 1002;
|
|
4079
4142
|
}
|
|
4080
4143
|
|
|
4144
|
+
.e-bigger .e-more-popup-wrapper.e-device .e-more-event-content,
|
|
4081
4145
|
.e-more-popup-wrapper.e-device .e-more-event-content {
|
|
4082
4146
|
max-height: unset;
|
|
4083
4147
|
}
|
|
4084
4148
|
|
|
4149
|
+
.e-bigger .e-more-popup-wrapper.e-rtl .e-more-event-close,
|
|
4085
4150
|
.e-more-popup-wrapper.e-rtl .e-more-event-close {
|
|
4086
4151
|
left: 6px;
|
|
4087
4152
|
right: auto;
|
|
@@ -4559,8 +4624,13 @@
|
|
|
4559
4624
|
}
|
|
4560
4625
|
|
|
4561
4626
|
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
4627
|
+
min-width: 98px;
|
|
4562
4628
|
position: relative;
|
|
4563
|
-
right:
|
|
4629
|
+
right: 27px;
|
|
4630
|
+
}
|
|
4631
|
+
|
|
4632
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
4633
|
+
min-width: 120px;
|
|
4564
4634
|
}
|
|
4565
4635
|
|
|
4566
4636
|
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
@@ -4610,12 +4680,13 @@
|
|
|
4610
4680
|
}
|
|
4611
4681
|
|
|
4612
4682
|
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
4613
|
-
|
|
4683
|
+
position: relative;
|
|
4684
|
+
right: 10px;
|
|
4614
4685
|
}
|
|
4615
4686
|
|
|
4616
4687
|
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
4617
|
-
|
|
4618
|
-
right:
|
|
4688
|
+
position: relative;
|
|
4689
|
+
right: -27px;
|
|
4619
4690
|
}
|
|
4620
4691
|
|
|
4621
4692
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
@@ -4752,15 +4823,25 @@
|
|
|
4752
4823
|
}
|
|
4753
4824
|
|
|
4754
4825
|
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
4826
|
+
min-width: 162px;
|
|
4755
4827
|
padding-left: 55px;
|
|
4756
4828
|
padding-right: 0;
|
|
4757
4829
|
}
|
|
4758
4830
|
|
|
4831
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
4832
|
+
min-width: 190px;
|
|
4833
|
+
padding-left: 54px;
|
|
4834
|
+
}
|
|
4835
|
+
|
|
4759
4836
|
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
4760
4837
|
font-size: 12px;
|
|
4761
4838
|
margin-bottom: 0;
|
|
4762
4839
|
}
|
|
4763
4840
|
|
|
4841
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4842
|
+
padding-right: 8px;
|
|
4843
|
+
}
|
|
4844
|
+
|
|
4764
4845
|
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
4765
4846
|
margin-bottom: 0;
|
|
4766
4847
|
}
|