@syncfusion/ej2-schedule 27.2.5 → 28.1.33
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 +425 -46
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +454 -48
- 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.js +2 -2
- 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,500 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
.e-popup.e-ddl {
|
|
6
|
+
border-radius: 4px;
|
|
7
|
+
-webkit-box-shadow: none;
|
|
8
|
+
box-shadow: none;
|
|
9
|
+
margin-top: 3px;
|
|
10
|
+
}
|
|
11
|
+
.e-popup.e-ddl .e-input-group {
|
|
12
|
+
width: auto;
|
|
13
|
+
}
|
|
14
|
+
.e-popup.e-ddl .e-input-group input {
|
|
15
|
+
line-height: 15px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-popup.e-ddl .e-dropdownbase {
|
|
19
|
+
min-height: 26px;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.e-popup.e-ddl .e-filter-parent .e-input-group {
|
|
23
|
+
display: -webkit-box;
|
|
24
|
+
display: -ms-flexbox;
|
|
25
|
+
display: flex;
|
|
26
|
+
width: auto;
|
|
27
|
+
}
|
|
28
|
+
.e-popup.e-ddl .e-filter-parent .e-input-group .e-back-icon {
|
|
29
|
+
border: 0;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
33
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
34
|
+
background: transparent;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
38
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
|
|
39
|
+
background: var(--color-sf-content-bg-color-alt2);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
|
|
43
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
|
|
44
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
|
|
45
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
|
|
46
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
|
|
47
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
|
|
48
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
49
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
|
|
50
|
+
background: transparent;
|
|
51
|
+
color: var(--color-sf-icon-color);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
55
|
+
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
56
|
+
.e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
|
|
57
|
+
.e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
|
|
58
|
+
background: transparent;
|
|
59
|
+
color: var(--color-sf-icon-color);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
63
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
64
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
65
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
66
|
+
background: var(--color-sf-content-bg-color-alt2);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
70
|
+
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
71
|
+
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
72
|
+
.e-control.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
|
|
73
|
+
border: 0;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-input-group-icon:active,
|
|
77
|
+
.e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
|
|
78
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
|
|
79
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
|
|
80
|
+
-webkit-box-shadow: none;
|
|
81
|
+
box-shadow: none;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
|
|
85
|
+
background: transparent;
|
|
86
|
+
display: -webkit-box;
|
|
87
|
+
display: -ms-flexbox;
|
|
88
|
+
display: flex;
|
|
89
|
+
position: relative;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.e-ddl.e-popup .e-filter-parent .e-input-group,
|
|
93
|
+
.e-ddl.e-popup .e-filter-parent {
|
|
94
|
+
background: var(--color-sf-content-bg-color);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
98
|
+
font-size: 14px;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-recurrenceeditor .e-editor {
|
|
102
|
+
display: -webkit-box;
|
|
103
|
+
display: -ms-flexbox;
|
|
104
|
+
display: flex;
|
|
105
|
+
-webkit-box-orient: horizontal;
|
|
106
|
+
-webkit-box-direction: normal;
|
|
107
|
+
-ms-flex-flow: row wrap;
|
|
108
|
+
flex-flow: row wrap;
|
|
109
|
+
margin: 0 auto;
|
|
110
|
+
max-width: 1240px;
|
|
111
|
+
}
|
|
112
|
+
.e-recurrenceeditor .e-recurrence-table {
|
|
113
|
+
table-layout: fixed;
|
|
114
|
+
width: 100%;
|
|
115
|
+
}
|
|
116
|
+
.e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
|
|
117
|
+
width: 27%;
|
|
118
|
+
}
|
|
119
|
+
.e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
120
|
+
width: 24%;
|
|
121
|
+
}
|
|
122
|
+
.e-recurrenceeditor .e-recurrence-table .e-repeat-content {
|
|
123
|
+
display: inline-block;
|
|
124
|
+
font-weight: normal;
|
|
125
|
+
padding: 18px 0 0 8px;
|
|
126
|
+
}
|
|
127
|
+
.e-recurrenceeditor .e-recurrence-table .e-input-wrapper {
|
|
128
|
+
float: none;
|
|
129
|
+
width: 100%;
|
|
130
|
+
}
|
|
131
|
+
.e-recurrenceeditor .e-recurrence-table .e-week-position {
|
|
132
|
+
min-width: 98px;
|
|
133
|
+
position: relative;
|
|
134
|
+
right: 20px;
|
|
135
|
+
}
|
|
136
|
+
.e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
137
|
+
min-width: 120px;
|
|
138
|
+
}
|
|
139
|
+
.e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
140
|
+
padding-left: 10px;
|
|
141
|
+
}
|
|
142
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
143
|
+
padding: 0 8px 16px 0;
|
|
144
|
+
}
|
|
145
|
+
.e-recurrenceeditor .e-form-left {
|
|
146
|
+
padding: 0 8px 16px 0;
|
|
147
|
+
}
|
|
148
|
+
.e-recurrenceeditor .e-form-right,
|
|
149
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
150
|
+
padding: 0 0 10px;
|
|
151
|
+
}
|
|
152
|
+
.e-recurrenceeditor .e-input-wrapper {
|
|
153
|
+
float: left;
|
|
154
|
+
width: 50%;
|
|
155
|
+
}
|
|
156
|
+
.e-recurrenceeditor .e-input-wrapper div {
|
|
157
|
+
margin-bottom: 2.5%;
|
|
158
|
+
}
|
|
159
|
+
.e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
160
|
+
.e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
161
|
+
padding-right: 0;
|
|
162
|
+
margin-top: 24px;
|
|
163
|
+
}
|
|
164
|
+
.e-recurrenceeditor.e-rtl .e-end-on > div,
|
|
165
|
+
.e-recurrenceeditor.e-rtl .e-month-expander > div > div {
|
|
166
|
+
float: right;
|
|
167
|
+
}
|
|
168
|
+
.e-recurrenceeditor.e-rtl .e-form-left,
|
|
169
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
|
|
170
|
+
padding: 0 0 10px 8px;
|
|
171
|
+
}
|
|
172
|
+
.e-recurrenceeditor.e-rtl .e-form-right,
|
|
173
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
|
|
174
|
+
padding: 0 8px 10px 0;
|
|
175
|
+
}
|
|
176
|
+
.e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
177
|
+
position: relative;
|
|
178
|
+
right: 10px;
|
|
179
|
+
}
|
|
180
|
+
.e-recurrenceeditor.e-rtl .e-week-position {
|
|
181
|
+
left: 20px;
|
|
182
|
+
right: 0;
|
|
183
|
+
}
|
|
184
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
185
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
186
|
+
padding-right: 0;
|
|
187
|
+
}
|
|
188
|
+
.e-recurrenceeditor.e-rtl .e-end-on-label {
|
|
189
|
+
margin-bottom: 5px;
|
|
190
|
+
}
|
|
191
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
192
|
+
padding: 0 0 0 8px;
|
|
193
|
+
}
|
|
194
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
195
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
196
|
+
padding: 0 8px 0 0;
|
|
197
|
+
}
|
|
198
|
+
.e-recurrenceeditor.e-rtl .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
199
|
+
width: 30px;
|
|
200
|
+
}
|
|
201
|
+
.e-recurrenceeditor .e-days .e-week-expander-label {
|
|
202
|
+
font-size: 12px;
|
|
203
|
+
font-weight: 500;
|
|
204
|
+
margin-bottom: 8px;
|
|
205
|
+
}
|
|
206
|
+
.e-recurrenceeditor .e-days button {
|
|
207
|
+
border-radius: 50%;
|
|
208
|
+
-webkit-box-orient: horizontal;
|
|
209
|
+
-webkit-box-direction: normal;
|
|
210
|
+
-ms-flex-flow: row wrap;
|
|
211
|
+
flex-flow: row wrap;
|
|
212
|
+
height: 35px;
|
|
213
|
+
margin: 0 8px 10px;
|
|
214
|
+
width: 35px;
|
|
215
|
+
}
|
|
216
|
+
.e-recurrenceeditor .e-hide-recurrence-element {
|
|
217
|
+
display: none;
|
|
218
|
+
}
|
|
219
|
+
.e-recurrenceeditor .e-half-space {
|
|
220
|
+
width: 20%;
|
|
221
|
+
}
|
|
222
|
+
.e-recurrenceeditor .e-year-expander {
|
|
223
|
+
margin-bottom: 11px;
|
|
224
|
+
}
|
|
225
|
+
.e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper {
|
|
226
|
+
padding-bottom: 11px;
|
|
227
|
+
}
|
|
228
|
+
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper {
|
|
229
|
+
padding-top: 3px;
|
|
230
|
+
}
|
|
231
|
+
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
232
|
+
display: none;
|
|
233
|
+
}
|
|
234
|
+
.e-recurrenceeditor .e-input-wrapper-side {
|
|
235
|
+
float: left;
|
|
236
|
+
padding: 16px 20px 0;
|
|
237
|
+
width: 50%;
|
|
238
|
+
}
|
|
239
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
240
|
+
padding-right: 16px;
|
|
241
|
+
}
|
|
242
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-input-wrapper {
|
|
243
|
+
margin: 0;
|
|
244
|
+
}
|
|
245
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
246
|
+
font-size: 12px;
|
|
247
|
+
font-weight: 500;
|
|
248
|
+
margin-bottom: 6px;
|
|
249
|
+
padding-right: 16px;
|
|
250
|
+
}
|
|
251
|
+
.e-recurrenceeditor .e-input-wrapper-side .e-days .e-form-left {
|
|
252
|
+
padding-bottom: 6px;
|
|
253
|
+
}
|
|
254
|
+
.e-recurrenceeditor .e-input-wrapper-side .e-non-week .e-form-left {
|
|
255
|
+
padding-bottom: 12px;
|
|
256
|
+
}
|
|
257
|
+
.e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
258
|
+
margin-bottom: 11px;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.e-device .e-recurrenceeditor .e-recurrence-table.e-repeat-content-wrapper td:last-child {
|
|
262
|
+
width: 25%;
|
|
263
|
+
}
|
|
264
|
+
.e-device .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
265
|
+
width: 20%;
|
|
266
|
+
}
|
|
267
|
+
.e-device .e-recurrenceeditor .e-week-expander-label {
|
|
268
|
+
margin-bottom: 6px;
|
|
269
|
+
}
|
|
270
|
+
.e-device .e-recurrenceeditor .e-month-expander-label {
|
|
271
|
+
font-size: 12px;
|
|
272
|
+
margin-bottom: 5px;
|
|
273
|
+
}
|
|
274
|
+
.e-device .e-recurrenceeditor .e-footer-content {
|
|
275
|
+
padding: 12px;
|
|
276
|
+
}
|
|
277
|
+
.e-device .e-recurrenceeditor .e-form-left,
|
|
278
|
+
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
279
|
+
padding: 0 3px 10px 0;
|
|
280
|
+
}
|
|
281
|
+
.e-device .e-recurrenceeditor .e-form-right,
|
|
282
|
+
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-form-right {
|
|
283
|
+
padding: 0 0 10px 3px;
|
|
284
|
+
}
|
|
285
|
+
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-date,
|
|
286
|
+
.e-device .e-recurrenceeditor .e-input-wrapper.e-end-on-count {
|
|
287
|
+
padding: 0 0 0 10px;
|
|
288
|
+
}
|
|
289
|
+
.e-device .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
290
|
+
padding-right: 10px;
|
|
291
|
+
}
|
|
292
|
+
.e-device .e-recurrenceeditor.e-end-on {
|
|
293
|
+
padding-right: 0;
|
|
294
|
+
}
|
|
295
|
+
.e-device .e-recurrenceeditor.e-end-on .e-end-on-label {
|
|
296
|
+
float: none;
|
|
297
|
+
font-size: 12px;
|
|
298
|
+
font-weight: 500;
|
|
299
|
+
margin-bottom: 7px;
|
|
300
|
+
}
|
|
301
|
+
.e-device .e-recurrenceeditor.e-end-on .e-end-on-left {
|
|
302
|
+
padding-right: 0;
|
|
303
|
+
}
|
|
304
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element,
|
|
305
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-day-position {
|
|
306
|
+
padding-left: 20px;
|
|
307
|
+
}
|
|
308
|
+
.e-device .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
309
|
+
margin-left: 20px;
|
|
310
|
+
}
|
|
311
|
+
.e-device .e-recurrenceeditor .e-week-position {
|
|
312
|
+
right: 0;
|
|
313
|
+
padding-right: 10px;
|
|
314
|
+
}
|
|
315
|
+
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
316
|
+
padding-right: 0;
|
|
317
|
+
}
|
|
318
|
+
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
319
|
+
.e-device .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
320
|
+
padding: 0 10px 0 0;
|
|
321
|
+
}
|
|
322
|
+
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
323
|
+
padding: 0 20px 0 0;
|
|
324
|
+
}
|
|
325
|
+
.e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
326
|
+
padding: 0 50px 0 0;
|
|
327
|
+
}
|
|
328
|
+
.e-device .e-recurrenceeditor.e-rtl .e-week-position {
|
|
329
|
+
left: 0;
|
|
330
|
+
}
|
|
331
|
+
.e-device.e-recurrence-dialog .e-dlg-header-content {
|
|
332
|
+
background: none;
|
|
333
|
+
-webkit-box-shadow: none;
|
|
334
|
+
box-shadow: none;
|
|
335
|
+
padding-bottom: 10px;
|
|
336
|
+
}
|
|
337
|
+
.e-device.e-recurrence-dialog .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
338
|
+
margin-bottom: 7px;
|
|
339
|
+
}
|
|
340
|
+
.e-device.e-recurrence-dialog .e-footer-content {
|
|
341
|
+
padding: 16px 8px;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
@media (max-width: 1024px) {
|
|
345
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
346
|
+
width: 100%;
|
|
347
|
+
}
|
|
348
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
349
|
+
width: 65%;
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
@media (max-width: 580px) {
|
|
353
|
+
.e-recurrenceeditor {
|
|
354
|
+
margin-left: auto;
|
|
355
|
+
margin-right: auto;
|
|
356
|
+
width: 100%;
|
|
357
|
+
}
|
|
358
|
+
.e-recurrenceeditor .e-editor {
|
|
359
|
+
-webkit-box-orient: vertical;
|
|
360
|
+
-webkit-box-direction: normal;
|
|
361
|
+
-ms-flex-direction: column;
|
|
362
|
+
flex-direction: column;
|
|
363
|
+
}
|
|
364
|
+
.e-recurrenceeditor .e-editor > .e-input-wrapper.e-form-left {
|
|
365
|
+
margin-top: 0;
|
|
366
|
+
}
|
|
367
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week > .e-month-expander-label,
|
|
368
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
369
|
+
margin-bottom: 6px;
|
|
370
|
+
}
|
|
371
|
+
.e-recurrenceeditor .e-editor > div {
|
|
372
|
+
margin-top: 20px;
|
|
373
|
+
}
|
|
374
|
+
.e-recurrenceeditor .e-editor > .e-input-wrapper {
|
|
375
|
+
width: 100%;
|
|
376
|
+
}
|
|
377
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on {
|
|
378
|
+
width: 100%;
|
|
379
|
+
}
|
|
380
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-input-wrapper {
|
|
381
|
+
width: 50%;
|
|
382
|
+
}
|
|
383
|
+
.e-recurrenceeditor .e-editor .e-form-left,
|
|
384
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-left {
|
|
385
|
+
padding: 0 0 10px;
|
|
386
|
+
}
|
|
387
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-date,
|
|
388
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper.e-end-on-count {
|
|
389
|
+
padding: 0 0 0 10px;
|
|
390
|
+
}
|
|
391
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
392
|
+
padding-right: 10px;
|
|
393
|
+
}
|
|
394
|
+
.e-recurrenceeditor .e-editor .e-form-right,
|
|
395
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-form-right {
|
|
396
|
+
padding-left: 0;
|
|
397
|
+
}
|
|
398
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-days {
|
|
399
|
+
width: 100%;
|
|
400
|
+
}
|
|
401
|
+
.e-recurrenceeditor .e-editor .e-input-wrapper-side.e-non-week {
|
|
402
|
+
width: 65%;
|
|
403
|
+
}
|
|
404
|
+
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
405
|
+
padding-left: 50px;
|
|
406
|
+
}
|
|
407
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
408
|
+
padding-right: 0;
|
|
409
|
+
}
|
|
410
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
411
|
+
.e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
412
|
+
padding: 0 10px 0 0;
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
/*! Recurrence-Editor component theme */
|
|
416
|
+
.e-bigger .e-recurrenceeditor {
|
|
417
|
+
padding: 0;
|
|
418
|
+
}
|
|
419
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-form-left {
|
|
420
|
+
padding: 0 12px 11px 0;
|
|
421
|
+
}
|
|
422
|
+
.e-bigger .e-recurrenceeditor .e-form-left {
|
|
423
|
+
padding: 0 12px 14px 0;
|
|
424
|
+
}
|
|
425
|
+
.e-bigger .e-recurrenceeditor .e-recurrence-table .e-monthday-element {
|
|
426
|
+
padding-left: 50px;
|
|
427
|
+
}
|
|
428
|
+
.e-bigger .e-recurrenceeditor .e-week-position {
|
|
429
|
+
min-width: 130px;
|
|
430
|
+
right: 0;
|
|
431
|
+
}
|
|
432
|
+
.e-bigger .e-recurrenceeditor .e-day-position {
|
|
433
|
+
min-width: 190px;
|
|
434
|
+
padding-left: 54px;
|
|
435
|
+
}
|
|
436
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
437
|
+
font-size: 16px;
|
|
438
|
+
margin-bottom: 0;
|
|
439
|
+
font-weight: 500;
|
|
440
|
+
}
|
|
441
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
442
|
+
padding-right: 16px;
|
|
443
|
+
}
|
|
444
|
+
.e-bigger .e-recurrenceeditor .e-end-on-label {
|
|
445
|
+
margin-bottom: 0;
|
|
446
|
+
}
|
|
447
|
+
.e-bigger .e-recurrenceeditor .e-days .e-week-expander-label {
|
|
448
|
+
font-size: 16px;
|
|
449
|
+
margin-bottom: 8px;
|
|
450
|
+
}
|
|
451
|
+
.e-bigger .e-recurrenceeditor .e-input-wrapper-side.e-end-on .e-end-on-label {
|
|
452
|
+
font-size: 16px;
|
|
453
|
+
margin-bottom: 1px;
|
|
454
|
+
}
|
|
455
|
+
.e-bigger .e-recurrenceeditor .e-month-expander tr:first-child .e-input-wrapper,
|
|
456
|
+
.e-bigger .e-recurrenceeditor .e-year-expander {
|
|
457
|
+
margin-bottom: 11px;
|
|
458
|
+
}
|
|
459
|
+
.e-bigger .e-recurrenceeditor .e-recurrence-table.e-month-expand-wrapper td:first-child {
|
|
460
|
+
width: 30px;
|
|
461
|
+
}
|
|
462
|
+
.e-bigger .e-recurrenceeditor .e-days button {
|
|
463
|
+
height: 40px;
|
|
464
|
+
width: 40px;
|
|
465
|
+
}
|
|
466
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-form-left,
|
|
467
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-left {
|
|
468
|
+
padding: 0 0 10px 12px;
|
|
469
|
+
}
|
|
470
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-form-right,
|
|
471
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-form-right {
|
|
472
|
+
padding: 0 12px 10px 0;
|
|
473
|
+
}
|
|
474
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element,
|
|
475
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-day-position {
|
|
476
|
+
padding: 0 64px 0 0;
|
|
477
|
+
}
|
|
478
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-label,
|
|
479
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-non-week > .e-month-expander-label {
|
|
480
|
+
padding-right: 0;
|
|
481
|
+
}
|
|
482
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-end-on-label {
|
|
483
|
+
margin-bottom: 5px;
|
|
484
|
+
}
|
|
485
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
486
|
+
padding: 0 0 0 12px;
|
|
487
|
+
}
|
|
488
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-date,
|
|
489
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-input-wrapper.e-end-on-count {
|
|
490
|
+
padding: 0 12px 0 0;
|
|
491
|
+
}
|
|
492
|
+
.e-bigger .e-recurrenceeditor.e-rtl .e-recurrence-table .e-week-position {
|
|
493
|
+
left: 0;
|
|
494
|
+
}
|
|
495
|
+
.e-bigger .e-device .e-recurrence-table .e-monthday-element {
|
|
496
|
+
padding-left: 20px;
|
|
497
|
+
}
|
|
498
|
+
.e-bigger .e-device .e-recurrenceeditor.e-rtl .e-recurrence-table .e-monthday-element {
|
|
499
|
+
padding: 0 20px 0 0;
|
|
500
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@import 'ej2-base/styles/definition/tailwind3.scss';
|
|
2
|
+
@import 'ej2-inputs/styles/numerictextbox/tailwind3-definition.scss';
|
|
3
|
+
@import 'ej2-buttons/styles/button/tailwind3-definition.scss';
|
|
4
|
+
@import 'ej2-buttons/styles/radio-button/tailwind3-definition.scss';
|
|
5
|
+
@import 'ej2-calendars/styles/datepicker/tailwind3-definition.scss';
|
|
6
|
+
@import 'ej2-dropdowns/styles/drop-down-list/tailwind3-definition.scss';
|
|
7
|
+
@import 'tailwind3-definition.scss';
|
|
8
|
+
@import 'all.scss';
|
|
9
|
+
@import 'bigger.scss';
|
|
@@ -260,7 +260,7 @@ $schedule-more-event-close-icon-font-size: $text-sm !default;
|
|
|
260
260
|
$schedule-tbar-btn-icn-right-bgr-padding-top: 3px !default;
|
|
261
261
|
$schedule-following-events-dlg-padding: 12px !default;
|
|
262
262
|
$schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
263
|
-
$schedule-bgr-date-time-icon-padding-right:
|
|
263
|
+
$schedule-bgr-date-time-icon-padding-right: 10px !default;
|
|
264
264
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
265
265
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
266
266
|
$schedule-multiple-event-popup-icon-bg-color: $schedule-header-bg-color !default;
|
|
@@ -262,7 +262,7 @@ $schedule-more-event-close-icon-font-size: $text-sm !default;
|
|
|
262
262
|
$schedule-tbar-btn-icn-right-bgr-padding-top: 3px !default;
|
|
263
263
|
$schedule-following-events-dlg-padding: 12px !default;
|
|
264
264
|
$schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
265
|
-
$schedule-bgr-date-time-icon-padding-right:
|
|
265
|
+
$schedule-bgr-date-time-icon-padding-right: 10px !default;
|
|
266
266
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
267
267
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
268
268
|
$schedule-multiple-event-popup-icon-bg-color: $schedule-header-bg-color !default;
|
|
@@ -26,7 +26,7 @@ $border-type: solid !default;
|
|
|
26
26
|
$schedule-current-day-active-color: $schedule-active-color !default;
|
|
27
27
|
$schedule-time-cells-font-color: $schedule-secondary-content-font-color !default;
|
|
28
28
|
$schedule-alternate-cell-border: dotted !default;
|
|
29
|
-
$schedule-header-cells-padding:
|
|
29
|
+
$schedule-header-cells-padding: 4px !default;
|
|
30
30
|
$schedule-agenda-big-appointment-padding: 7px 16px !default;
|
|
31
31
|
$schedule-header-cells-height: 60px !default;
|
|
32
32
|
$schedule-header-cells-width: 36px !default;
|
|
@@ -137,7 +137,7 @@ $schedule-tbar-btn-bgr-minheight: 24px !default;
|
|
|
137
137
|
$schedule-tbar-btn-bgr-minwidth: 24px !default;
|
|
138
138
|
$schedule-tbar-btn-bgr-padding: 0 12px !default;
|
|
139
139
|
$schedule-tbar-btn-icn-bgr-padding: 4px 6px !default;
|
|
140
|
-
$schedule-tbar-btn-icn-right-bgr-padding:
|
|
140
|
+
$schedule-tbar-btn-icn-right-bgr-padding: 4px 6px 6px !default;
|
|
141
141
|
$schedule-tbar-right-items-btn-border: none !default;
|
|
142
142
|
$schedule-tbar-right-items-btn-border-radius: 4px !default;
|
|
143
143
|
$schedule-tbar-right-active-items-btn-border: none !default;
|
|
@@ -261,7 +261,7 @@ $schedule-more-event-close-icon-font-size: $text-sm !default;
|
|
|
261
261
|
$schedule-tbar-btn-icn-right-bgr-padding-top: 3px !default;
|
|
262
262
|
$schedule-following-events-dlg-padding: 8px 18px !default;
|
|
263
263
|
$schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
264
|
-
$schedule-bgr-date-time-icon-padding-right:
|
|
264
|
+
$schedule-bgr-date-time-icon-padding-right: 12px !default;
|
|
265
265
|
$schedule-bgr-more-event-close-icon-padding: 1px !default;
|
|
266
266
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
267
267
|
|
|
@@ -45,6 +45,24 @@
|
|
|
45
45
|
width: 75px;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
@mixin schedule-agenda-interaction-color($color) {
|
|
49
|
+
@if $skin-name == 'fluent2' {
|
|
50
|
+
.e-subject,
|
|
51
|
+
.e-date-time,
|
|
52
|
+
.e-recurrence-icon {
|
|
53
|
+
color: $color;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
@mixin schedule-agenda-focus-color($color) {
|
|
59
|
+
@if $skin-name == 'fluent2' {
|
|
60
|
+
&:focus {
|
|
61
|
+
@include schedule-agenda-interaction-color($color);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
48
66
|
@include export-module('schedule-layout') {
|
|
49
67
|
.e-schedule {
|
|
50
68
|
display: block;
|
|
@@ -1278,6 +1296,18 @@
|
|
|
1278
1296
|
}
|
|
1279
1297
|
}
|
|
1280
1298
|
|
|
1299
|
+
.e-clipboard {
|
|
1300
|
+
cursor: default;
|
|
1301
|
+
height: 1px;
|
|
1302
|
+
left: -1000px;
|
|
1303
|
+
position: fixed;
|
|
1304
|
+
resize: none;
|
|
1305
|
+
top: -1000px;
|
|
1306
|
+
width: 1px;
|
|
1307
|
+
overflow: hidden;
|
|
1308
|
+
opacity: 0;
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1281
1311
|
.e-month-view {
|
|
1282
1312
|
.e-content-wrap table tr:last-child td {
|
|
1283
1313
|
border-bottom-width: 0;
|
|
@@ -2318,13 +2348,15 @@
|
|
|
2318
2348
|
|
|
2319
2349
|
&:hover {
|
|
2320
2350
|
background: $schedule-hover-bg-color;
|
|
2351
|
+
@include schedule-agenda-interaction-color($schedule-hover-font-color);
|
|
2321
2352
|
}
|
|
2322
2353
|
|
|
2323
2354
|
&.e-appointment-border,
|
|
2324
2355
|
&:focus {
|
|
2325
2356
|
background: $schedule-select-bg-color;
|
|
2326
2357
|
}
|
|
2327
|
-
|
|
2358
|
+
|
|
2359
|
+
@include schedule-agenda-focus-color($schedule-select-font-color);
|
|
2328
2360
|
&.e-template {
|
|
2329
2361
|
display: inline-flex;
|
|
2330
2362
|
flex-direction: row-reverse;
|
|
@@ -2531,7 +2563,8 @@
|
|
|
2531
2563
|
}
|
|
2532
2564
|
}
|
|
2533
2565
|
|
|
2534
|
-
.e-subject
|
|
2566
|
+
.e-subject,
|
|
2567
|
+
.e-inline-subject {
|
|
2535
2568
|
color: $schedule-primary-content-font-color;
|
|
2536
2569
|
font-size: 14px;
|
|
2537
2570
|
line-height: 23px;
|
|
@@ -2539,6 +2572,11 @@
|
|
|
2539
2572
|
text-overflow: ellipsis;
|
|
2540
2573
|
}
|
|
2541
2574
|
|
|
2575
|
+
.e-inline-subject {
|
|
2576
|
+
font-weight: normal;
|
|
2577
|
+
padding-top: 0;
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2542
2580
|
.e-resource-name {
|
|
2543
2581
|
color: $schedule-primary-content-font-color;
|
|
2544
2582
|
font-size: $schedule-header-day-nrml-font-size;
|
|
@@ -2589,6 +2627,7 @@
|
|
|
2589
2627
|
|
|
2590
2628
|
&:hover {
|
|
2591
2629
|
background: $schedule-hover-bg-color;
|
|
2630
|
+
@include schedule-agenda-interaction-color($schedule-hover-font-color);
|
|
2592
2631
|
}
|
|
2593
2632
|
|
|
2594
2633
|
&.e-appointment-border,
|
|
@@ -2596,6 +2635,7 @@
|
|
|
2596
2635
|
background: $schedule-select-bg-color;
|
|
2597
2636
|
}
|
|
2598
2637
|
|
|
2638
|
+
@include schedule-agenda-focus-color($schedule-select-font-color);
|
|
2599
2639
|
&.e-template {
|
|
2600
2640
|
display: inline-flex;
|
|
2601
2641
|
flex-direction: row-reverse;
|
|
@@ -3754,6 +3794,7 @@
|
|
|
3754
3794
|
margin: 0;
|
|
3755
3795
|
max-width: 100%;
|
|
3756
3796
|
overflow: hidden;
|
|
3797
|
+
position: fixed;
|
|
3757
3798
|
right: 0;
|
|
3758
3799
|
top: 0;
|
|
3759
3800
|
width: 100%;
|
|
@@ -263,7 +263,7 @@ $schedule-more-event-close-icon-font-size: 18px !default;
|
|
|
263
263
|
$schedule-tbar-btn-icn-right-bgr-padding-top: 0 !default;
|
|
264
264
|
$schedule-following-events-dlg-padding: 8px !default;
|
|
265
265
|
$schedule-header-icon-wrapper-bg-color: unset !default;
|
|
266
|
-
$schedule-bgr-date-time-icon-padding-right:
|
|
266
|
+
$schedule-bgr-date-time-icon-padding-right: 8px !default;
|
|
267
267
|
$schedule-bgr-more-event-close-icon-padding: unset !default;
|
|
268
268
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-nrml-font-size !default;
|
|
269
269
|
|
|
@@ -259,7 +259,7 @@ $schedule-more-event-close-icon-font-size: $text-sm !default;
|
|
|
259
259
|
$schedule-tbar-btn-icn-right-bgr-padding-top: 3px !default;
|
|
260
260
|
$schedule-following-events-dlg-padding: 8px 18px !default;
|
|
261
261
|
$schedule-header-icon-wrapper-bg-color: $schedule-content-bg-color !default;
|
|
262
|
-
$schedule-bgr-date-time-icon-padding-right:
|
|
262
|
+
$schedule-bgr-date-time-icon-padding-right: 10px !default;
|
|
263
263
|
$schedule-bgr-more-event-close-icon-padding: 1px !default;
|
|
264
264
|
$schedule-bgr-tbar-btn-text-font-size: $schedule-header-bgr-font-size !default;
|
|
265
265
|
|