funda-ui 4.3.355 → 4.3.721
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/DynamicFields/index.d.ts +1 -0
- package/DynamicFields/index.js +23 -3
- package/EventCalendar/index.css +150 -106
- package/EventCalendar/index.d.ts +11 -2
- package/EventCalendar/index.js +835 -151
- package/EventCalendarTimeline/index.css +293 -251
- package/EventCalendarTimeline/index.d.ts +18 -9
- package/EventCalendarTimeline/index.js +1077 -505
- package/MultipleCheckboxes/index.d.ts +1 -0
- package/MultipleCheckboxes/index.js +17 -7
- package/MultipleSelect/index.d.ts +4 -0
- package/MultipleSelect/index.js +54 -8
- package/NativeSelect/index.js +1 -0
- package/Radio/index.d.ts +2 -1
- package/Radio/index.js +54 -24
- package/Select/index.js +115 -42
- package/Table/index.js +27 -3
- package/lib/cjs/DynamicFields/index.d.ts +1 -0
- package/lib/cjs/DynamicFields/index.js +23 -3
- package/lib/cjs/EventCalendar/index.d.ts +11 -2
- package/lib/cjs/EventCalendar/index.js +835 -151
- package/lib/cjs/EventCalendarTimeline/index.d.ts +18 -9
- package/lib/cjs/EventCalendarTimeline/index.js +1077 -505
- package/lib/cjs/MultipleCheckboxes/index.d.ts +1 -0
- package/lib/cjs/MultipleCheckboxes/index.js +17 -7
- package/lib/cjs/MultipleSelect/index.d.ts +4 -0
- package/lib/cjs/MultipleSelect/index.js +54 -8
- package/lib/cjs/NativeSelect/index.js +1 -0
- package/lib/cjs/Radio/index.d.ts +2 -1
- package/lib/cjs/Radio/index.js +54 -24
- package/lib/cjs/Select/index.js +115 -42
- package/lib/cjs/Table/index.js +27 -3
- package/lib/css/EventCalendar/index.css +150 -106
- package/lib/css/EventCalendarTimeline/index.css +293 -251
- package/lib/esm/DynamicFields/index.tsx +28 -3
- package/lib/esm/EventCalendar/index.scss +172 -104
- package/lib/esm/EventCalendar/index.tsx +272 -139
- package/lib/esm/EventCalendarTimeline/index.scss +275 -213
- package/lib/esm/EventCalendarTimeline/index.tsx +706 -708
- package/lib/esm/MultipleCheckboxes/index.tsx +18 -5
- package/lib/esm/MultipleSelect/ItemList.tsx +1 -0
- package/lib/esm/MultipleSelect/index.tsx +103 -52
- package/lib/esm/NativeSelect/index.tsx +2 -0
- package/lib/esm/Radio/index.tsx +68 -27
- package/lib/esm/Select/index.tsx +236 -65
- package/lib/esm/Table/Table.tsx +1 -0
- package/lib/esm/Table/TableCell.tsx +6 -0
- package/lib/esm/Table/table-utils/ToggleSelection.tsx +17 -2
- package/package.json +1 -1
|
@@ -16,52 +16,52 @@
|
|
|
16
16
|
//////////////////// Calendar ////////////////////
|
|
17
17
|
//////////////////////////////////////////////////
|
|
18
18
|
*/
|
|
19
|
-
.e-cal-
|
|
20
|
-
|
|
21
|
-
--e-cal-
|
|
22
|
-
--e-cal-
|
|
23
|
-
--e-cal-
|
|
24
|
-
--e-cal-
|
|
25
|
-
--e-cal-
|
|
26
|
-
--e-cal-
|
|
27
|
-
--e-cal-
|
|
28
|
-
--e-cal-
|
|
29
|
-
--e-cal-
|
|
30
|
-
--e-cal-
|
|
31
|
-
--e-cal-
|
|
32
|
-
--e-cal-
|
|
33
|
-
--e-cal-
|
|
34
|
-
--e-cal-
|
|
35
|
-
--e-cal-
|
|
36
|
-
--e-cal-
|
|
37
|
-
--e-cal-
|
|
19
|
+
.e-cal-timeline__wrapper {
|
|
20
|
+
|
|
21
|
+
--e-cal-timeline-wrapper-min-width: 400px;
|
|
22
|
+
--e-cal-timeline-border-color: #ddd;
|
|
23
|
+
--e-cal-timeline-border-color-hover: #333;
|
|
24
|
+
--e-cal-timeline-header-fs: 1.125rem;
|
|
25
|
+
--e-cal-timeline-year-month-btn-border-color: #ddd;
|
|
26
|
+
--e-cal-timeline-year-month-btn-hover-bg: rgba(0, 58, 166, .1);
|
|
27
|
+
--e-cal-timeline-year-month-btn-selected-bg: rgba(0, 58, 166, 1);
|
|
28
|
+
--e-cal-timeline-year-month-btn-selected-color: #fff;
|
|
29
|
+
--e-cal-timeline-month-wrapper-w: 18.75rem;
|
|
30
|
+
--e-cal-timeline-year-wrapper-w: 18.75rem;
|
|
31
|
+
--e-cal-timeline-header-arrow-bg: #000;
|
|
32
|
+
--e-cal-timeline-header-text-color: #000;
|
|
33
|
+
--e-cal-timeline-header-prevnext-btn-bg: transparent;
|
|
34
|
+
--e-cal-timeline-header-prevnext-btn-color: #000;
|
|
35
|
+
--e-cal-timeline-header-prevnext-btn-radius: 0.25rem;
|
|
36
|
+
--e-cal-timeline-footer-today-btn-bg: rgba(0, 58, 166, 1);
|
|
37
|
+
--e-cal-timeline-footer-today-btn-color: #fff;
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
position: relative;
|
|
42
42
|
z-index: 3;
|
|
43
|
-
min-width: var(--e-cal-
|
|
44
|
-
border: 1px solid var(--e-cal-
|
|
43
|
+
min-width: var(--e-cal-timeline-wrapper-min-width);
|
|
44
|
+
border: 1px solid var(--e-cal-timeline-border-color);
|
|
45
45
|
|
|
46
46
|
|
|
47
47
|
/* --HEADER --*/
|
|
48
|
-
.e-cal-
|
|
49
|
-
font-size: var(--e-cal-
|
|
48
|
+
.e-cal-timeline__header {
|
|
49
|
+
font-size: var(--e-cal-timeline-header-fs);
|
|
50
50
|
font-weight: bold;
|
|
51
51
|
padding: 10px 10px 5px 10px;
|
|
52
52
|
display: flex;
|
|
53
53
|
justify-content: space-between;
|
|
54
54
|
|
|
55
|
-
.e-cal-
|
|
56
|
-
.e-cal-
|
|
55
|
+
.e-cal-timeline__header__btns {
|
|
56
|
+
.e-cal-timeline__btn {
|
|
57
57
|
margin-right: 1rem;
|
|
58
|
-
color: var(--e-cal-
|
|
58
|
+
color: var(--e-cal-timeline-header-text-color);
|
|
59
59
|
|
|
60
60
|
svg {
|
|
61
61
|
margin-left: .3rem;
|
|
62
62
|
|
|
63
63
|
path {
|
|
64
|
-
fill: var(--e-cal-
|
|
64
|
+
fill: var(--e-cal-timeline-header-arrow-bg);
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
|
|
@@ -79,9 +79,9 @@
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
/*-- SELECTION --*/
|
|
82
|
-
.e-cal-
|
|
82
|
+
.e-cal-timeline__month-wrapper {
|
|
83
83
|
position: absolute;
|
|
84
|
-
width: var(--e-cal-
|
|
84
|
+
width: var(--e-cal-timeline-month-wrapper-w);
|
|
85
85
|
height: auto;
|
|
86
86
|
z-index: 1;
|
|
87
87
|
top: calc(1rem + 22px);
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
|
|
97
|
-
.e-cal-
|
|
97
|
+
.e-cal-timeline__month-container {
|
|
98
98
|
display: grid;
|
|
99
99
|
grid-template-columns: repeat(3, 1fr);
|
|
100
100
|
grid-template-rows: repeat(4, 2.5em);
|
|
@@ -105,9 +105,9 @@
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
|
|
108
|
-
.e-cal-
|
|
108
|
+
.e-cal-timeline__year-wrapper {
|
|
109
109
|
position: absolute;
|
|
110
|
-
width: var(--e-cal-
|
|
110
|
+
width: var(--e-cal-timeline-year-wrapper-w);
|
|
111
111
|
height: auto;
|
|
112
112
|
z-index: 1;
|
|
113
113
|
top: calc(1rem + 22px);
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
display: block;
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
.e-cal-
|
|
122
|
+
.e-cal-timeline__year-container {
|
|
123
123
|
display: grid;
|
|
124
124
|
grid-template-columns: repeat(4, 1fr);
|
|
125
125
|
grid-template-rows: repeat(5, 2.5em);
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
.e-cal-
|
|
130
|
+
.e-cal-timeline__today-wrapper {
|
|
131
131
|
position: absolute;
|
|
132
132
|
width: auto;
|
|
133
133
|
height: auto;
|
|
@@ -138,24 +138,24 @@
|
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
|
|
141
|
-
.e-cal-
|
|
142
|
-
.e-cal-
|
|
141
|
+
.e-cal-timeline__year,
|
|
142
|
+
.e-cal-timeline__month {
|
|
143
143
|
display: flex;
|
|
144
144
|
align-items: center;
|
|
145
145
|
justify-content: center;
|
|
146
146
|
padding: 5px;
|
|
147
147
|
font-size: 0.875em;
|
|
148
|
-
border: 1px solid var(--e-cal-
|
|
148
|
+
border: 1px solid var(--e-cal-timeline-year-month-btn-border-color);
|
|
149
149
|
border-radius: 0.25rem;
|
|
150
150
|
cursor: pointer;
|
|
151
151
|
|
|
152
152
|
&:hover {
|
|
153
|
-
background-color: var(--e-cal-
|
|
153
|
+
background-color: var(--e-cal-timeline-year-month-btn-hover-bg);
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
&.selected {
|
|
157
|
-
background-color: var(--e-cal-
|
|
158
|
-
color: var(--e-cal-
|
|
157
|
+
background-color: var(--e-cal-timeline-year-month-btn-selected-bg);
|
|
158
|
+
color: var(--e-cal-timeline-year-month-btn-selected-color);
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
&.disabled {
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
|
|
169
169
|
|
|
170
170
|
/* --BUTTON --*/
|
|
171
|
-
.e-cal-
|
|
171
|
+
.e-cal-timeline__btn {
|
|
172
172
|
border: none;
|
|
173
173
|
outline: none;
|
|
174
174
|
background: none;
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
|
|
184
184
|
svg {
|
|
185
185
|
path {
|
|
186
|
-
fill: var(--e-cal-
|
|
186
|
+
fill: var(--e-cal-timeline-header-arrow-bg);
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
|
|
@@ -193,25 +193,25 @@
|
|
|
193
193
|
|
|
194
194
|
&--prev,
|
|
195
195
|
&--next {
|
|
196
|
-
border-radius: var(--e-cal-
|
|
197
|
-
color: var(--e-cal-
|
|
198
|
-
background-color: var(--e-cal-
|
|
196
|
+
border-radius: var(--e-cal-timeline-header-prevnext-btn-radius);
|
|
197
|
+
color: var(--e-cal-timeline-header-prevnext-btn-color);
|
|
198
|
+
background-color: var(--e-cal-timeline-header-prevnext-btn-bg);
|
|
199
199
|
|
|
200
200
|
svg {
|
|
201
201
|
path {
|
|
202
|
-
fill: var(--e-cal-
|
|
202
|
+
fill: var(--e-cal-timeline-header-prevnext-btn-color);
|
|
203
203
|
}
|
|
204
204
|
}
|
|
205
205
|
|
|
206
206
|
}
|
|
207
207
|
|
|
208
208
|
&--today {
|
|
209
|
-
border: 1px solid var(--e-cal-
|
|
209
|
+
border: 1px solid var(--e-cal-timeline-border-color);
|
|
210
210
|
border-radius: 0.25rem;
|
|
211
211
|
font-size: 0.875em;
|
|
212
212
|
padding: .2rem 1rem;
|
|
213
|
-
color: var(--e-cal-
|
|
214
|
-
background-color: var(--e-cal-
|
|
213
|
+
color: var(--e-cal-timeline-footer-today-btn-color);
|
|
214
|
+
background-color: var(--e-cal-timeline-footer-today-btn-bg);
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
|
|
@@ -224,45 +224,46 @@
|
|
|
224
224
|
//////////////////////////////////////////////////
|
|
225
225
|
*/
|
|
226
226
|
|
|
227
|
-
.e-cal-
|
|
228
|
-
|
|
229
|
-
--e-cal-
|
|
230
|
-
--e-cal-
|
|
231
|
-
--e-cal-
|
|
232
|
-
--e-cal-
|
|
233
|
-
--e-cal-
|
|
234
|
-
--e-cal-
|
|
235
|
-
--e-cal-
|
|
236
|
-
--e-cal-
|
|
237
|
-
--e-cal-
|
|
238
|
-
--e-cal-
|
|
239
|
-
--e-cal-
|
|
240
|
-
--e-cal-
|
|
241
|
-
--e-cal-
|
|
242
|
-
--e-cal-
|
|
243
|
-
--e-cal-
|
|
244
|
-
--e-cal-
|
|
245
|
-
--e-cal-
|
|
246
|
-
--e-cal-
|
|
247
|
-
--e-cal-
|
|
248
|
-
|
|
249
|
-
--e-cal-
|
|
250
|
-
--e-cal-
|
|
251
|
-
--e-cal-
|
|
252
|
-
--e-cal-
|
|
253
|
-
--e-cal-
|
|
254
|
-
--e-cal-
|
|
227
|
+
.e-cal-timeline-table__timeline-table__wrapper {
|
|
228
|
+
|
|
229
|
+
--e-cal-timeline-table-scrollbar-color: rgba(0, 0, 0, 0.2);
|
|
230
|
+
--e-cal-timeline-table-scrollbar-track: rgba(0, 0, 0, 0);
|
|
231
|
+
--e-cal-timeline-table-scrollbar-h: 3px;
|
|
232
|
+
--e-cal-timeline-table-scrollbar-w: 3px;
|
|
233
|
+
--e-cal-timeline-table-header-bg: #fff;
|
|
234
|
+
--e-cal-timeline-table-body-bg: #fff;
|
|
235
|
+
--e-cal-timeline-table-divider-bg: #eee;
|
|
236
|
+
--e-cal-timeline-table-divider-border: 1px solid #ddd;
|
|
237
|
+
--e-cal-timeline-table-divider-w: 3px;
|
|
238
|
+
--e-cal-timeline-table-header-w: 150px;
|
|
239
|
+
--e-cal-timeline-table-cell-padding: 0.5rem 0.75rem;
|
|
240
|
+
--e-cal-timeline-table-cell-h: 2.5rem;
|
|
241
|
+
--e-cal-timeline-table-cell-max-w: 300px;
|
|
242
|
+
--e-cal-timeline-table-cell-line-height: 1.7;
|
|
243
|
+
--e-cal-timeline-table-primary-border: 1px solid #ddd;
|
|
244
|
+
--e-cal-timeline-table-bodycell-border: 1px solid #eee;
|
|
245
|
+
--e-cal-timeline-table-header-border: 1px solid #ddd;
|
|
246
|
+
--e-cal-timeline-table-bodycell-font-size: 0.875rem;
|
|
247
|
+
--e-cal-timeline-table-headercell-font-size: 0.875rem;
|
|
248
|
+
|
|
249
|
+
--e-cal-timeline-table-dayselected-bg: #0b5ed7;
|
|
250
|
+
--e-cal-timeline-table-dayselected-text-color: #fff;
|
|
251
|
+
--e-cal-timeline-table-delete-btn-color: #ee4949;
|
|
252
|
+
--e-cal-timeline-table-add-btn-color: #0b5ed7;
|
|
253
|
+
--e-cal-timeline-table-event-font-size: 0.75rem;
|
|
254
|
+
--e-cal-timeline-table-event-hover-bg: rgba(255, 240, 227, 0);
|
|
255
|
+
--e-cal-timeline-table-event-hover-shadow: inset 0px 0px 0px 1px rgba(0,0,0,0.15);
|
|
255
256
|
|
|
256
257
|
|
|
257
258
|
|
|
258
259
|
height: 100%; /* Required */
|
|
259
|
-
font-size: var(--e-cal-
|
|
260
|
+
font-size: var(--e-cal-timeline-table-bodycell-font-size);
|
|
260
261
|
margin-top: -1px;
|
|
261
262
|
position: relative;
|
|
262
263
|
z-index: 2;
|
|
263
264
|
|
|
264
|
-
.e-cal-
|
|
265
|
-
border: var(--e-cal-
|
|
265
|
+
.e-cal-timeline-table__timeline-table {
|
|
266
|
+
border: var(--e-cal-timeline-table-primary-border);
|
|
266
267
|
text-align: left;
|
|
267
268
|
width: 100%;
|
|
268
269
|
margin: 0;
|
|
@@ -281,17 +282,17 @@
|
|
|
281
282
|
margin: 0;
|
|
282
283
|
padding: 0;
|
|
283
284
|
vertical-align: top;
|
|
284
|
-
line-height: var(--e-cal-
|
|
285
|
+
line-height: var(--e-cal-timeline-table-cell-line-height);
|
|
285
286
|
}
|
|
286
287
|
}
|
|
287
288
|
|
|
288
289
|
/* list section */
|
|
289
|
-
.e-cal-
|
|
290
|
-
background: var(--e-cal-
|
|
290
|
+
.e-cal-timeline-table__list-section {
|
|
291
|
+
background: var(--e-cal-timeline-table-body-bg);
|
|
291
292
|
}
|
|
292
293
|
|
|
293
294
|
/* datagrid title */
|
|
294
|
-
.e-cal-
|
|
295
|
+
.e-cal-timeline-table__datagrid-body__title {
|
|
295
296
|
text-align: left;
|
|
296
297
|
width: 100%;
|
|
297
298
|
margin: 0;
|
|
@@ -310,11 +311,11 @@
|
|
|
310
311
|
margin: 0;
|
|
311
312
|
padding: 0;
|
|
312
313
|
vertical-align: top;
|
|
313
|
-
line-height: var(--e-cal-
|
|
314
|
+
line-height: var(--e-cal-timeline-table-cell-line-height);
|
|
314
315
|
}
|
|
315
316
|
|
|
316
317
|
> tbody > tr {
|
|
317
|
-
border-bottom: var(--e-cal-
|
|
318
|
+
border-bottom: var(--e-cal-timeline-table-bodycell-border);
|
|
318
319
|
|
|
319
320
|
&:last-child {
|
|
320
321
|
border-bottom: 0;
|
|
@@ -323,7 +324,7 @@
|
|
|
323
324
|
}
|
|
324
325
|
|
|
325
326
|
/* datagrid content */
|
|
326
|
-
.e-cal-
|
|
327
|
+
.e-cal-timeline-table__datagrid-body__content {
|
|
327
328
|
text-align: left;
|
|
328
329
|
border-collapse: collapse;
|
|
329
330
|
margin: 0;
|
|
@@ -342,147 +343,208 @@
|
|
|
342
343
|
margin: 0;
|
|
343
344
|
padding: 0;
|
|
344
345
|
vertical-align: top;
|
|
345
|
-
line-height: var(--e-cal-
|
|
346
|
+
line-height: var(--e-cal-timeline-table-cell-line-height);
|
|
346
347
|
}
|
|
347
348
|
|
|
348
349
|
> tbody > tr {
|
|
349
|
-
border-bottom: var(--e-cal-
|
|
350
|
+
border-bottom: var(--e-cal-timeline-table-bodycell-border);
|
|
350
351
|
|
|
351
352
|
&:last-child {
|
|
352
353
|
border-bottom: 0;
|
|
353
354
|
}
|
|
354
355
|
|
|
355
356
|
>td {
|
|
356
|
-
border-right: var(--e-cal-
|
|
357
|
+
border-right: var(--e-cal-timeline-table-bodycell-border);
|
|
357
358
|
}
|
|
358
359
|
}
|
|
359
360
|
}
|
|
360
361
|
|
|
361
362
|
/* header */
|
|
362
|
-
.e-cal-
|
|
363
|
-
background: var(--e-cal-
|
|
364
|
-
border-bottom: var(--e-cal-
|
|
363
|
+
.e-cal-timeline-table__timeline-headertitle {
|
|
364
|
+
background: var(--e-cal-timeline-table-header-bg);
|
|
365
|
+
border-bottom: var(--e-cal-timeline-table-header-border);
|
|
365
366
|
overflow: hidden;
|
|
366
367
|
}
|
|
367
368
|
|
|
368
|
-
.e-cal-
|
|
369
|
-
background: var(--e-cal-
|
|
369
|
+
.e-cal-timeline-table__timeline-header {
|
|
370
|
+
background: var(--e-cal-timeline-table-header-bg);
|
|
370
371
|
}
|
|
371
372
|
|
|
372
373
|
|
|
373
374
|
/* header title */
|
|
374
|
-
.e-cal-
|
|
375
|
+
.e-cal-timeline-table__datagrid-header__title {
|
|
375
376
|
border-spacing: 0;
|
|
376
377
|
}
|
|
377
378
|
|
|
378
379
|
/* header content */
|
|
379
|
-
.e-cal-
|
|
380
|
+
.e-cal-timeline-table__datagrid-header__content {
|
|
380
381
|
border-spacing: 0;
|
|
381
|
-
border-bottom: var(--e-cal-
|
|
382
|
+
border-bottom: var(--e-cal-timeline-table-header-border);
|
|
382
383
|
|
|
383
384
|
> tbody > tr > th {
|
|
384
|
-
border-right: var(--e-cal-
|
|
385
|
+
border-right: var(--e-cal-timeline-table-primary-border);
|
|
385
386
|
}
|
|
386
387
|
}
|
|
387
388
|
|
|
388
389
|
/* content min-width, or using JavaScript */
|
|
389
390
|
/*
|
|
390
|
-
.e-cal-
|
|
391
|
-
.e-cal-
|
|
391
|
+
.e-cal-timeline-table__datagrid-body__content > colgroup > col,
|
|
392
|
+
.e-cal-timeline-table__datagrid-header__content > tbody th {
|
|
392
393
|
width: 100px;
|
|
393
394
|
}
|
|
394
395
|
*/
|
|
395
396
|
|
|
396
397
|
|
|
397
398
|
/* cell */
|
|
398
|
-
.e-cal-
|
|
399
|
-
.e-cal-
|
|
399
|
+
.e-cal-timeline-table__cell-cushion-title,
|
|
400
|
+
.e-cal-timeline-table__cell-cushion-content { // DO NOT USE "position:relative"
|
|
400
401
|
word-wrap: break-word;
|
|
401
402
|
word-break: break-word;
|
|
402
|
-
max-width: var(--e-cal-
|
|
403
|
+
max-width: var(--e-cal-timeline-table-cell-max-w);
|
|
404
|
+
|
|
405
|
+
/* ITEMS */
|
|
406
|
+
> div {
|
|
407
|
+
position: relative;
|
|
408
|
+
}
|
|
403
409
|
|
|
404
410
|
/* If the maximum width is not increased and the screen becomes smaller,
|
|
405
|
-
the cell width of ".e-cal-
|
|
406
|
-
slightly inconsistent with the cell width of ".e-cal-
|
|
411
|
+
the cell width of ".e-cal-timeline-table__datagrid-header__content" may be
|
|
412
|
+
slightly inconsistent with the cell width of ".e-cal-timeline-table__datagrid-body__content" */
|
|
407
413
|
}
|
|
408
414
|
|
|
409
|
-
|
|
415
|
+
|
|
416
|
+
.e-cal-timeline-table__cell-cushion-headercontent {
|
|
410
417
|
white-space: nowrap;
|
|
411
418
|
}
|
|
412
419
|
|
|
413
|
-
.e-cal-
|
|
414
|
-
.e-cal-
|
|
415
|
-
font-size: var(--e-cal-
|
|
420
|
+
.e-cal-timeline-table__cell-cushion-headercontent,
|
|
421
|
+
.e-cal-timeline-table__cell-cushion-headertitle {
|
|
422
|
+
font-size: var(--e-cal-timeline-table-headercell-font-size);
|
|
416
423
|
}
|
|
417
424
|
|
|
418
|
-
.e-cal-
|
|
419
|
-
.e-cal-
|
|
425
|
+
.e-cal-timeline-table__cell-cushion-headertitle,
|
|
426
|
+
.e-cal-timeline-table__cell-cushion-title {
|
|
420
427
|
word-wrap: break-word;
|
|
421
428
|
word-break: break-word;
|
|
422
429
|
}
|
|
423
430
|
|
|
424
431
|
/* header */
|
|
425
|
-
.e-cal-
|
|
426
|
-
width: var(--e-cal-
|
|
432
|
+
.e-cal-timeline-table__cell-cushion-headertitle {
|
|
433
|
+
width: var(--e-cal-timeline-table-header-w);
|
|
427
434
|
}
|
|
428
435
|
|
|
429
436
|
|
|
430
437
|
/* event container */
|
|
431
|
-
.e-cal-
|
|
438
|
+
.e-cal-timeline-table__cell-cushion-content__container {
|
|
432
439
|
position: relative;
|
|
433
440
|
|
|
434
441
|
&.selected,
|
|
435
442
|
&:hover {
|
|
436
|
-
background-color: var(--e-cal-
|
|
437
|
-
box-shadow: var(--e-cal-
|
|
443
|
+
background-color: var(--e-cal-timeline-table-event-hover-bg);
|
|
444
|
+
box-shadow: var(--e-cal-timeline-table-event-hover-shadow);
|
|
438
445
|
}
|
|
439
446
|
|
|
440
447
|
|
|
441
|
-
|
|
442
|
-
.e-cal-
|
|
443
|
-
|
|
448
|
+
&.has-event {
|
|
449
|
+
.e-cal-timeline-table__cell-cushion {
|
|
450
|
+
padding: 0;
|
|
444
451
|
}
|
|
445
|
-
}
|
|
452
|
+
}
|
|
446
453
|
|
|
447
454
|
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
455
|
+
.e-cal-timeline__day__event {
|
|
456
|
+
margin-bottom: 1px;
|
|
457
|
+
font-size: var(--e-cal-timeline-table-event-font-size);
|
|
458
|
+
|
|
459
|
+
&:hover {
|
|
460
|
+
cursor: pointer;
|
|
461
|
+
opacity: .8;
|
|
451
462
|
}
|
|
452
463
|
}
|
|
453
464
|
|
|
454
|
-
|
|
465
|
+
|
|
466
|
+
/* Delete button */
|
|
467
|
+
.e-cal-timeline__day__eventdel {
|
|
455
468
|
position: absolute;
|
|
456
|
-
|
|
457
|
-
|
|
469
|
+
z-index: 1;
|
|
470
|
+
right: -5px;
|
|
471
|
+
top: 0;
|
|
472
|
+
display: none;
|
|
473
|
+
color: var(--e-cal-timeline-table-delete-btn-color);
|
|
474
|
+
|
|
475
|
+
svg {
|
|
476
|
+
width: 10px;
|
|
477
|
+
fill: var(--e-cal-timeline-table-delete-btn-color);
|
|
478
|
+
|
|
479
|
+
path {
|
|
480
|
+
fill: var(--e-cal-timeline-table-delete-btn-color);
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
&:hover {
|
|
485
|
+
svg {
|
|
486
|
+
transform: scale(1.2);
|
|
487
|
+
}
|
|
488
|
+
}
|
|
458
489
|
}
|
|
459
490
|
|
|
460
|
-
.e-cal-
|
|
491
|
+
&:not(.empty) .e-cal-timeline-table__cell-cushion-content__item:hover {
|
|
492
|
+
.e-cal-timeline__day__eventdel {
|
|
493
|
+
display: block;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
/* Add button */
|
|
499
|
+
.e-cal-timeline__day__eventadd {
|
|
461
500
|
position: absolute;
|
|
462
501
|
z-index: 1;
|
|
463
502
|
left: 0;
|
|
464
|
-
|
|
503
|
+
bottom: -8.5px;
|
|
465
504
|
display: none;
|
|
466
|
-
|
|
467
|
-
|
|
505
|
+
width: 20px;
|
|
506
|
+
color: var(--e-cal-timeline-table-add-btn-color);
|
|
507
|
+
text-align: left;
|
|
508
|
+
pointer-events: none;
|
|
509
|
+
|
|
510
|
+
> a {
|
|
511
|
+
pointer-events: auto;
|
|
512
|
+
}
|
|
513
|
+
|
|
468
514
|
svg {
|
|
469
|
-
|
|
515
|
+
width: 15px;
|
|
516
|
+
fill: var(--e-cal-timeline-table-add-btn-color);
|
|
470
517
|
|
|
471
518
|
path {
|
|
472
|
-
fill: var(--e-cal-
|
|
519
|
+
fill: var(--e-cal-timeline-table-add-btn-color);
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
&:hover {
|
|
524
|
+
svg {
|
|
525
|
+
transform: scale(1.2);
|
|
473
526
|
}
|
|
474
527
|
}
|
|
475
528
|
}
|
|
476
529
|
|
|
530
|
+
&:hover {
|
|
531
|
+
.e-cal-timeline__day__eventadd {
|
|
532
|
+
display: block;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
477
539
|
}
|
|
478
540
|
|
|
479
541
|
/* days container */
|
|
480
|
-
.e-cal-
|
|
542
|
+
.e-cal-timeline-table__cell-cushion-headercontent__container {
|
|
481
543
|
text-align: center;
|
|
482
544
|
|
|
483
545
|
&.selected {
|
|
484
|
-
background-color: var(--e-cal-
|
|
485
|
-
color: var(--e-cal-
|
|
546
|
+
background-color: var(--e-cal-timeline-table-dayselected-bg);
|
|
547
|
+
color: var(--e-cal-timeline-table-dayselected-text-color);
|
|
486
548
|
}
|
|
487
549
|
|
|
488
550
|
&.disabled {
|
|
@@ -491,34 +553,34 @@
|
|
|
491
553
|
}
|
|
492
554
|
|
|
493
555
|
/* remove empty cells */
|
|
494
|
-
.e-cal-
|
|
495
|
-
.e-cal-
|
|
496
|
-
.e-cal-
|
|
556
|
+
.e-cal-timeline-table__datagrid-body__content colgroup > col.empty,
|
|
557
|
+
.e-cal-timeline-table__cell-cushion-headercontent__container.empty,
|
|
558
|
+
.e-cal-timeline-table__cell-cushion-content__container.empty {
|
|
497
559
|
opacity: .2;
|
|
498
560
|
}
|
|
499
561
|
|
|
500
562
|
|
|
501
563
|
/* divider */
|
|
502
|
-
.e-cal-
|
|
564
|
+
.e-cal-timeline-table__timeline-divider {
|
|
503
565
|
padding: 0;
|
|
504
566
|
margin: 0;
|
|
505
567
|
border-color: transparent;
|
|
506
|
-
background-color: var(--e-cal-
|
|
507
|
-
border-left: var(--e-cal-
|
|
508
|
-
border-right: var(--e-cal-
|
|
568
|
+
background-color: var(--e-cal-timeline-table-divider-bg);
|
|
569
|
+
border-left: var(--e-cal-timeline-table-divider-border);
|
|
570
|
+
border-right: var(--e-cal-timeline-table-divider-border);
|
|
509
571
|
|
|
510
572
|
> div {
|
|
511
|
-
width: var(--e-cal-
|
|
573
|
+
width: var(--e-cal-timeline-table-divider-w);
|
|
512
574
|
}
|
|
513
575
|
}
|
|
514
576
|
|
|
515
577
|
/* cell */
|
|
516
|
-
.e-cal-
|
|
517
|
-
padding: var(--e-cal-
|
|
578
|
+
.e-cal-timeline-table__cell-cushion {
|
|
579
|
+
padding: var(--e-cal-timeline-table-cell-padding);
|
|
518
580
|
}
|
|
519
581
|
|
|
520
582
|
/* scroller */
|
|
521
|
-
.e-cal-
|
|
583
|
+
.e-cal-timeline-table__scroller-harness {
|
|
522
584
|
position: relative;
|
|
523
585
|
width: 100%;
|
|
524
586
|
overflow-x: scroll;
|
|
@@ -530,25 +592,25 @@
|
|
|
530
592
|
}
|
|
531
593
|
|
|
532
594
|
&::-webkit-scrollbar {
|
|
533
|
-
height: var(--e-cal-
|
|
534
|
-
width: var(--e-cal-
|
|
595
|
+
height: var(--e-cal-timeline-table-scrollbar-h);
|
|
596
|
+
width: var(--e-cal-timeline-table-scrollbar-w);
|
|
535
597
|
}
|
|
536
598
|
|
|
537
599
|
&::-webkit-scrollbar-thumb {
|
|
538
|
-
background: var(--e-cal-
|
|
600
|
+
background: var(--e-cal-timeline-table-scrollbar-color);
|
|
539
601
|
}
|
|
540
602
|
|
|
541
603
|
&::-webkit-scrollbar-track {
|
|
542
|
-
background: var(--e-cal-
|
|
604
|
+
background: var(--e-cal-timeline-table-scrollbar-track);
|
|
543
605
|
}
|
|
544
606
|
}
|
|
545
607
|
|
|
546
|
-
.e-cal-
|
|
608
|
+
.e-cal-timeline-table__scroller-harness--hide {
|
|
547
609
|
overflow: hidden;
|
|
548
610
|
height: auto;
|
|
549
611
|
}
|
|
550
612
|
|
|
551
|
-
.e-cal-
|
|
613
|
+
.e-cal-timeline-table__scroller-harness[data-scroll="body"].dragging {
|
|
552
614
|
cursor: grab;
|
|
553
615
|
}
|
|
554
616
|
|
|
@@ -560,22 +622,22 @@
|
|
|
560
622
|
//////////////////// Table Grid Tooltip //////////////////
|
|
561
623
|
///////////////////////////////////////////////////////////
|
|
562
624
|
*/
|
|
563
|
-
.e-cal-
|
|
564
|
-
|
|
565
|
-
--e-cal-
|
|
566
|
-
--e-cal-
|
|
567
|
-
--e-cal-
|
|
568
|
-
--e-cal-
|
|
569
|
-
--e-cal-
|
|
570
|
-
--e-cal-
|
|
571
|
-
--e-cal-
|
|
572
|
-
--e-cal-
|
|
573
|
-
--e-cal-
|
|
574
|
-
--e-cal-
|
|
575
|
-
--e-cal-
|
|
576
|
-
|
|
577
|
-
--e-cal-
|
|
578
|
-
--e-cal-
|
|
625
|
+
.e-cal-timeline-table__cell-tooltipwrapper {
|
|
626
|
+
|
|
627
|
+
--e-cal-timeline-table-tooltip-box-shadow: 0 5px 15px 0 rgba(0,0,0,.07), 0 15px 35px 0 rgba(50,50,93,.1);
|
|
628
|
+
--e-cal-timeline-table-tooltip-content-bg: rgba(17, 17, 17, 0.9);
|
|
629
|
+
--e-cal-timeline-table-tooltip-content-color: #fff;
|
|
630
|
+
--e-cal-timeline-table-tooltip-content-font-size: 0.75em;
|
|
631
|
+
--e-cal-timeline-table-tooltip-content-padding-x: 1em;
|
|
632
|
+
--e-cal-timeline-table-tooltip-content-padding-y: .5em;
|
|
633
|
+
--e-cal-timeline-table-tooltip-content-line-height: 1.5;
|
|
634
|
+
--e-cal-timeline-table-tooltip-arrow-bg-top: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
635
|
+
--e-cal-timeline-table-tooltip-arrow-bg-bottom: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
636
|
+
--e-cal-timeline-table-tooltip-arrow-bg-left: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
637
|
+
--e-cal-timeline-table-tooltip-arrow-bg-right: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
|
|
638
|
+
|
|
639
|
+
--e-cal-timeline-table-tooltip-arrow-width: 18px;
|
|
640
|
+
--e-cal-timeline-table-tooltip-arrow-height: 6px;
|
|
579
641
|
|
|
580
642
|
|
|
581
643
|
position: absolute;
|
|
@@ -596,7 +658,7 @@
|
|
|
596
658
|
display: block !important;
|
|
597
659
|
|
|
598
660
|
&::before,
|
|
599
|
-
> .e-cal-
|
|
661
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
600
662
|
opacity: 1;
|
|
601
663
|
}
|
|
602
664
|
}
|
|
@@ -604,21 +666,21 @@
|
|
|
604
666
|
&:focus {
|
|
605
667
|
|
|
606
668
|
&::before,
|
|
607
|
-
> .e-cal-
|
|
669
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
608
670
|
opacity: 1;
|
|
609
671
|
}
|
|
610
672
|
}
|
|
611
673
|
|
|
612
674
|
|
|
613
675
|
&::before,
|
|
614
|
-
> .e-cal-
|
|
676
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
615
677
|
backface-visibility: hidden;
|
|
616
678
|
will-change: transform;
|
|
617
679
|
opacity: 0;
|
|
618
680
|
box-sizing: border-box;
|
|
619
681
|
z-index: 10;
|
|
620
682
|
transform-origin: top;
|
|
621
|
-
box-shadow: var(--e-cal-
|
|
683
|
+
box-shadow: var(--e-cal-timeline-table-tooltip-box-shadow);
|
|
622
684
|
transition: .1s ease-in-out;
|
|
623
685
|
}
|
|
624
686
|
|
|
@@ -630,18 +692,18 @@
|
|
|
630
692
|
---------------------------
|
|
631
693
|
*/
|
|
632
694
|
|
|
633
|
-
> .e-cal-
|
|
634
|
-
background: var(--e-cal-
|
|
695
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
696
|
+
background: var(--e-cal-timeline-table-tooltip-content-bg);
|
|
635
697
|
border-radius: 4px;
|
|
636
|
-
color: var(--e-cal-
|
|
698
|
+
color: var(--e-cal-timeline-table-tooltip-content-color);
|
|
637
699
|
content: attr(aria-label);
|
|
638
|
-
font-size: var(--e-cal-
|
|
700
|
+
font-size: var(--e-cal-timeline-table-tooltip-content-font-size);
|
|
639
701
|
font-weight: normal;
|
|
640
702
|
text-transform: none;
|
|
641
|
-
padding: var(--e-cal-
|
|
703
|
+
padding: var(--e-cal-timeline-table-tooltip-content-padding-y) var(--e-cal-timeline-table-tooltip-content-padding-x);
|
|
642
704
|
white-space: nowrap;
|
|
643
705
|
box-sizing: content-box;
|
|
644
|
-
line-height: var(--e-cal-
|
|
706
|
+
line-height: var(--e-cal-timeline-table-tooltip-content-line-height);
|
|
645
707
|
|
|
646
708
|
img {
|
|
647
709
|
height: auto !important;
|
|
@@ -660,22 +722,22 @@
|
|
|
660
722
|
|
|
661
723
|
&[data-microtip-position|="top"] {
|
|
662
724
|
&::before {
|
|
663
|
-
background: var(--e-cal-
|
|
664
|
-
height: var(--e-cal-
|
|
665
|
-
width: var(--e-cal-
|
|
725
|
+
background: var(--e-cal-timeline-table-tooltip-arrow-bg-top);
|
|
726
|
+
height: var(--e-cal-timeline-table-tooltip-arrow-height);
|
|
727
|
+
width: var(--e-cal-timeline-table-tooltip-arrow-width);
|
|
666
728
|
}
|
|
667
729
|
|
|
668
|
-
> .e-cal-
|
|
669
|
-
margin-bottom: var(--e-cal-
|
|
730
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
731
|
+
margin-bottom: var(--e-cal-timeline-table-tooltip-arrow-height);
|
|
670
732
|
}
|
|
671
733
|
|
|
672
734
|
&::before {
|
|
673
|
-
top: calc(100% - var(--e-cal-
|
|
674
|
-
left: calc(var(--e-cal-
|
|
735
|
+
top: calc(100% - var(--e-cal-timeline-table-tooltip-arrow-height));
|
|
736
|
+
left: calc(var(--e-cal-timeline-table-tooltip-arrow-width)/2 * -1);
|
|
675
737
|
}
|
|
676
738
|
|
|
677
|
-
> .e-cal-
|
|
678
|
-
bottom: calc(100% + var(--e-cal-
|
|
739
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
740
|
+
bottom: calc(100% + var(--e-cal-timeline-table-tooltip-arrow-height));
|
|
679
741
|
left: 50%;
|
|
680
742
|
transform: translateX(-50%);
|
|
681
743
|
}
|
|
@@ -689,10 +751,10 @@
|
|
|
689
751
|
*/
|
|
690
752
|
|
|
691
753
|
&[data-microtip-position="top-left"] {
|
|
692
|
-
> .e-cal-
|
|
693
|
-
bottom: calc(100% + var(--e-cal-
|
|
754
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
755
|
+
bottom: calc(100% + var(--e-cal-timeline-table-tooltip-arrow-height));
|
|
694
756
|
left: 50%;
|
|
695
|
-
transform: translateX(calc(-100% + var(--e-cal-
|
|
757
|
+
transform: translateX(calc(-100% + var(--e-cal-timeline-table-tooltip-arrow-width)));
|
|
696
758
|
}
|
|
697
759
|
|
|
698
760
|
}
|
|
@@ -706,10 +768,10 @@
|
|
|
706
768
|
*/
|
|
707
769
|
|
|
708
770
|
&[data-microtip-position="top-right"] {
|
|
709
|
-
> .e-cal-
|
|
710
|
-
bottom: calc(100% + var(--e-cal-
|
|
771
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
772
|
+
bottom: calc(100% + var(--e-cal-timeline-table-tooltip-arrow-height));
|
|
711
773
|
left: 50%;
|
|
712
|
-
transform: translateX(calc(0% - var(--e-cal-
|
|
774
|
+
transform: translateX(calc(0% - var(--e-cal-timeline-table-tooltip-arrow-width)));
|
|
713
775
|
}
|
|
714
776
|
}
|
|
715
777
|
|
|
@@ -722,25 +784,25 @@
|
|
|
722
784
|
|
|
723
785
|
&[data-microtip-position|="bottom"] {
|
|
724
786
|
&::before {
|
|
725
|
-
background: var(--e-cal-
|
|
726
|
-
height: var(--e-cal-
|
|
727
|
-
width: var(--e-cal-
|
|
787
|
+
background: var(--e-cal-timeline-table-tooltip-arrow-bg-bottom);
|
|
788
|
+
height: var(--e-cal-timeline-table-tooltip-arrow-height);
|
|
789
|
+
width: var(--e-cal-timeline-table-tooltip-arrow-width);
|
|
728
790
|
margin-top: 5px;
|
|
729
791
|
margin-bottom: 0;
|
|
730
792
|
}
|
|
731
793
|
|
|
732
|
-
> .e-cal-
|
|
733
|
-
margin-top: var(--e-cal-
|
|
794
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
795
|
+
margin-top: var(--e-cal-timeline-table-tooltip-arrow-height);
|
|
734
796
|
}
|
|
735
797
|
|
|
736
798
|
&::before {
|
|
737
|
-
bottom: calc(100% - var(--e-cal-
|
|
738
|
-
left: calc(var(--e-cal-
|
|
799
|
+
bottom: calc(100% - var(--e-cal-timeline-table-tooltip-arrow-height));
|
|
800
|
+
left: calc(var(--e-cal-timeline-table-tooltip-arrow-width)/2 * -1);
|
|
739
801
|
}
|
|
740
802
|
|
|
741
|
-
> .e-cal-
|
|
803
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
742
804
|
bottom: auto;
|
|
743
|
-
top: calc(100% + var(--e-cal-
|
|
805
|
+
top: calc(100% + var(--e-cal-timeline-table-tooltip-arrow-height));
|
|
744
806
|
left: 50%;
|
|
745
807
|
transform: translateX(-50%);
|
|
746
808
|
}
|
|
@@ -755,11 +817,11 @@
|
|
|
755
817
|
|
|
756
818
|
|
|
757
819
|
&[data-microtip-position="bottom-left"] {
|
|
758
|
-
> .e-cal-
|
|
820
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
759
821
|
bottom: auto;
|
|
760
|
-
top: calc(100% + var(--e-cal-
|
|
822
|
+
top: calc(100% + var(--e-cal-timeline-table-tooltip-arrow-height));
|
|
761
823
|
left: 50%;
|
|
762
|
-
transform: translateX(calc(-100% + var(--e-cal-
|
|
824
|
+
transform: translateX(calc(-100% + var(--e-cal-timeline-table-tooltip-arrow-width)));
|
|
763
825
|
}
|
|
764
826
|
}
|
|
765
827
|
|
|
@@ -771,11 +833,11 @@
|
|
|
771
833
|
|
|
772
834
|
|
|
773
835
|
&[data-microtip-position="bottom-right"] {
|
|
774
|
-
> .e-cal-
|
|
836
|
+
> .e-cal-timeline-table__cell-tooltipcontent {
|
|
775
837
|
bottom: auto;
|
|
776
|
-
top: calc(100% + var(--e-cal-
|
|
838
|
+
top: calc(100% + var(--e-cal-timeline-table-tooltip-arrow-height));
|
|
777
839
|
left: 50%;
|
|
778
|
-
transform: translateX(calc(0% - var(--e-cal-
|
|
840
|
+
transform: translateX(calc(0% - var(--e-cal-timeline-table-tooltip-arrow-width)));
|
|
779
841
|
}
|
|
780
842
|
}
|
|
781
843
|
|
|
@@ -787,7 +849,7 @@
|
|
|
787
849
|
10. Size
|
|
788
850
|
---------------------------
|
|
789
851
|
*/
|
|
790
|
-
&[data-microtip-size="auto"].e-cal-
|
|
852
|
+
&[data-microtip-size="auto"].e-cal-timeline-table__cell-tooltipcontent {
|
|
791
853
|
white-space: nowrap;
|
|
792
854
|
width: auto;
|
|
793
855
|
max-width: 530px;
|
|
@@ -795,17 +857,17 @@
|
|
|
795
857
|
text-overflow: ellipsis;
|
|
796
858
|
}
|
|
797
859
|
|
|
798
|
-
&[data-microtip-size="small"].e-cal-
|
|
860
|
+
&[data-microtip-size="small"].e-cal-timeline-table__cell-tooltipcontent {
|
|
799
861
|
white-space: initial;
|
|
800
862
|
width: 80px;
|
|
801
863
|
}
|
|
802
864
|
|
|
803
|
-
&[data-microtip-size="medium"].e-cal-
|
|
865
|
+
&[data-microtip-size="medium"].e-cal-timeline-table__cell-tooltipcontent {
|
|
804
866
|
white-space: initial;
|
|
805
867
|
width: 150px;
|
|
806
868
|
}
|
|
807
869
|
|
|
808
|
-
&[data-microtip-size="large"].e-cal-
|
|
870
|
+
&[data-microtip-size="large"].e-cal-timeline-table__cell-tooltipcontent {
|
|
809
871
|
white-space: initial;
|
|
810
872
|
width: 260px;
|
|
811
873
|
}
|