@sapui5/sap.fe.placeholder 1.146.0 → 1.147.0
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/package.json
CHANGED
|
@@ -1,47 +1,65 @@
|
|
|
1
|
+
/* =============================================== */
|
|
2
|
+
/* CSS for control sap.fe.placeholder/Placeholder */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* =============================================== */
|
|
5
|
+
|
|
1
6
|
.sapFePlaceholderContainer {
|
|
2
|
-
background-color:
|
|
7
|
+
background-color: var(--sapBaseColor);
|
|
3
8
|
position: absolute;
|
|
4
9
|
width: 100%;
|
|
5
10
|
height: 100%;
|
|
6
11
|
}
|
|
12
|
+
|
|
7
13
|
.sapFeNoAnimation .sapFePlaceholderContainer * {
|
|
8
|
-
|
|
14
|
+
animation: none !important;
|
|
9
15
|
}
|
|
16
|
+
|
|
10
17
|
.sapFeResponsivePadding {
|
|
11
18
|
width: calc(~"100% - 6rem");
|
|
12
19
|
padding-left: 3rem;
|
|
13
20
|
padding-right: 3rem;
|
|
14
21
|
}
|
|
22
|
+
|
|
15
23
|
.sapFeCols4 > * {
|
|
16
24
|
width: calc(~"25% - 2rem");
|
|
17
25
|
}
|
|
26
|
+
|
|
18
27
|
.sapFePaddingTop {
|
|
19
28
|
padding-top: 1rem;
|
|
20
29
|
}
|
|
30
|
+
|
|
21
31
|
.sapFeTextAlignStart {
|
|
22
32
|
text-align: start;
|
|
23
33
|
}
|
|
34
|
+
|
|
24
35
|
.sapFeTextAlignCenter {
|
|
25
36
|
text-align: center;
|
|
26
37
|
}
|
|
38
|
+
|
|
27
39
|
.sapFeTextAlignEnd {
|
|
28
40
|
text-align: end;
|
|
29
41
|
}
|
|
42
|
+
|
|
30
43
|
.sapFeTextAlignInherit {
|
|
31
44
|
text-align: inherit;
|
|
32
45
|
}
|
|
46
|
+
|
|
33
47
|
.sapFeVerticalAlignTop {
|
|
34
48
|
vertical-align: top;
|
|
35
49
|
}
|
|
50
|
+
|
|
36
51
|
.sapFeVerticalAlignInherit {
|
|
37
52
|
vertical-align: inherit;
|
|
38
53
|
}
|
|
54
|
+
|
|
39
55
|
.sapFeVerticalAlignMiddle {
|
|
40
56
|
vertical-align: middle;
|
|
41
57
|
}
|
|
58
|
+
|
|
42
59
|
.sapFeVerticalAlignBottom {
|
|
43
60
|
vertical-align: bottom;
|
|
44
61
|
}
|
|
62
|
+
|
|
45
63
|
.sapFeVerticalRepeater {
|
|
46
64
|
display: flex;
|
|
47
65
|
flex-direction: column;
|
|
@@ -49,73 +67,96 @@
|
|
|
49
67
|
align-content: flex-start;
|
|
50
68
|
width: fit-content;
|
|
51
69
|
}
|
|
70
|
+
|
|
52
71
|
.sapFeVerticalRepeater.sapFeTextAlignCenter {
|
|
53
72
|
align-items: center;
|
|
54
73
|
}
|
|
74
|
+
|
|
55
75
|
.sapFeVerticalRepeater.sapFeTextAlignEnd {
|
|
56
76
|
align-items: flex-end;
|
|
57
77
|
}
|
|
78
|
+
|
|
58
79
|
.sapFeVerticalRepeater.sapFeVerticalAlignMiddle {
|
|
59
80
|
align-content: center;
|
|
60
81
|
}
|
|
82
|
+
|
|
61
83
|
.sapFeVerticalRepeater.sapFeVerticalAlignBottom {
|
|
62
84
|
align-content: flex-end;
|
|
63
85
|
}
|
|
86
|
+
|
|
64
87
|
.sapFeHorizontalContent > * {
|
|
65
88
|
display: inline-block;
|
|
66
89
|
}
|
|
90
|
+
|
|
67
91
|
.sapFeHorizontalContent > .sapFeVerticalRepeater,
|
|
68
92
|
.sapFeHorizontalContent > .sapFeHorizontalRepeater {
|
|
69
93
|
display: flex;
|
|
70
94
|
}
|
|
95
|
+
|
|
71
96
|
.sapFeHorizontalContent > *:not(:last-child) {
|
|
72
97
|
margin-left: 0;
|
|
73
98
|
}
|
|
99
|
+
|
|
74
100
|
.sapFeHorizontalContent > *:not(:last-child) {
|
|
75
101
|
margin-right: 2rem;
|
|
76
102
|
}
|
|
103
|
+
|
|
77
104
|
.sapFeHorizontalContent.sapFeTextAlignEnd > *:not(:last-child) {
|
|
78
105
|
margin-right: 0;
|
|
79
106
|
}
|
|
107
|
+
|
|
80
108
|
.sapFeHorizontalContent.sapFeTextAlignEnd > *:not(:first-child) {
|
|
81
109
|
margin-left: 2rem;
|
|
82
110
|
}
|
|
111
|
+
|
|
83
112
|
.sapFeVerticalContent > * {
|
|
84
113
|
display: block;
|
|
85
114
|
}
|
|
115
|
+
|
|
86
116
|
.sapFeVerticalContent > *:not(:last-child) {
|
|
87
117
|
margin-bottom: 1rem;
|
|
88
118
|
}
|
|
119
|
+
|
|
89
120
|
.sapFeVerticalContent.sapFeVerticalAlignBottom > *:not(:first-child) {
|
|
90
121
|
margin-top: 1rem;
|
|
91
122
|
}
|
|
123
|
+
|
|
92
124
|
.sapFeText {
|
|
93
125
|
border-radius: 0.25rem;
|
|
94
126
|
}
|
|
127
|
+
|
|
95
128
|
.sapFeTextWeightS {
|
|
96
129
|
height: 0.5rem;
|
|
97
130
|
}
|
|
131
|
+
|
|
98
132
|
.sapFeTextWeightM {
|
|
99
133
|
height: 0.75rem;
|
|
100
134
|
}
|
|
135
|
+
|
|
101
136
|
.sapFeTextWeightL {
|
|
102
137
|
height: 0.875rem;
|
|
103
138
|
}
|
|
139
|
+
|
|
104
140
|
.sapFeTextWidthS {
|
|
105
141
|
width: 75px;
|
|
106
142
|
}
|
|
143
|
+
|
|
107
144
|
.sapFeTextWidthM {
|
|
108
145
|
width: 120px;
|
|
109
146
|
}
|
|
147
|
+
|
|
110
148
|
.sapFeTextWidthL {
|
|
111
149
|
width: 225px;
|
|
112
150
|
}
|
|
151
|
+
|
|
113
152
|
.sapFeTextWidthXL {
|
|
114
153
|
width: 275px;
|
|
115
154
|
}
|
|
155
|
+
|
|
116
156
|
.sapFeTextWidth30PX {
|
|
117
157
|
width: 30px;
|
|
118
158
|
}
|
|
159
|
+
|
|
119
160
|
.sapFeTextWidth50perct {
|
|
120
161
|
width: 50%;
|
|
121
162
|
}
|
|
@@ -123,18 +164,23 @@
|
|
|
123
164
|
.sapFeTextWidth50PX {
|
|
124
165
|
width: 50px;
|
|
125
166
|
}
|
|
167
|
+
|
|
126
168
|
.sapFeTextWidth80PX {
|
|
127
169
|
width: 80px;
|
|
128
170
|
}
|
|
171
|
+
|
|
129
172
|
.sapFeTextWidth90PX {
|
|
130
173
|
width: 90px;
|
|
131
174
|
}
|
|
175
|
+
|
|
132
176
|
.sapFeTextWidth100PX {
|
|
133
177
|
width: 100px;
|
|
134
178
|
}
|
|
179
|
+
|
|
135
180
|
.sapFeTextWidth120PX {
|
|
136
181
|
width: 120px !important;
|
|
137
182
|
}
|
|
183
|
+
|
|
138
184
|
.sapFeTextWidth160PX {
|
|
139
185
|
width: 160px;
|
|
140
186
|
}
|
|
@@ -142,95 +188,121 @@
|
|
|
142
188
|
.sapFeTextHeight20 {
|
|
143
189
|
height: 20px;
|
|
144
190
|
}
|
|
191
|
+
|
|
145
192
|
.sapFeTextHeight90PX {
|
|
146
193
|
height: 90px !important;
|
|
147
194
|
}
|
|
148
195
|
|
|
149
196
|
.sapFeTextWidth0 {
|
|
150
|
-
width:
|
|
197
|
+
width: 0;
|
|
151
198
|
}
|
|
199
|
+
|
|
152
200
|
.sapFeTextWidth140 {
|
|
153
201
|
width: 140px;
|
|
154
202
|
}
|
|
203
|
+
|
|
155
204
|
.sapFeTextWidth160 {
|
|
156
205
|
width: 160px;
|
|
157
206
|
}
|
|
207
|
+
|
|
158
208
|
.sapFeAction {
|
|
159
209
|
width: 1.5rem;
|
|
160
210
|
height: 1.5rem;
|
|
161
211
|
border-radius: 50%;
|
|
162
212
|
}
|
|
213
|
+
|
|
163
214
|
.sapFeAvatarSizeS {
|
|
164
215
|
width: 2rem;
|
|
165
216
|
height: 2rem;
|
|
166
217
|
}
|
|
218
|
+
|
|
167
219
|
.sapFeAvatarSizeM {
|
|
168
220
|
width: 5rem;
|
|
169
221
|
height: 5rem;
|
|
170
222
|
}
|
|
223
|
+
|
|
171
224
|
.sapFeOVPCardHeaderAvatar {
|
|
172
225
|
width: 40px;
|
|
173
226
|
height: 40px;
|
|
174
227
|
background-size: 900px 900px;
|
|
175
228
|
}
|
|
229
|
+
|
|
176
230
|
.sapFeAvatarShapeCircle {
|
|
177
231
|
border-radius: 50%;
|
|
178
232
|
}
|
|
233
|
+
|
|
179
234
|
.sapFeBarChart {
|
|
180
235
|
display: inline-block;
|
|
181
236
|
}
|
|
237
|
+
|
|
182
238
|
.sapFeVerticalBarChart,
|
|
183
239
|
.sapFeHorizontalBarChart {
|
|
184
240
|
padding-right: 1rem;
|
|
185
241
|
white-space: nowrap;
|
|
186
242
|
}
|
|
243
|
+
|
|
187
244
|
.sapFeBarChartWithMeasure .sapFeVerticalBarChart,
|
|
188
245
|
.sapFeBarChartWithMeasure .sapFeHorizontalBarChart {
|
|
189
246
|
padding-right: 3rem;
|
|
190
247
|
}
|
|
248
|
+
|
|
191
249
|
.sapFeBarChart .sapFeHorizontalRepeaterItem,
|
|
192
250
|
.sapFeHorizontalBarChart .sapFeVerticalRepeaterItem {
|
|
193
251
|
border-radius: 0.25rem;
|
|
194
252
|
}
|
|
253
|
+
|
|
195
254
|
.sapFeHorizontalContent > .sapFeVerticalBar {
|
|
196
255
|
margin: 0 0.55rem;
|
|
197
256
|
}
|
|
257
|
+
|
|
198
258
|
.sapFeVerticalBarWeightS {
|
|
199
259
|
width: 0.5rem;
|
|
200
260
|
}
|
|
261
|
+
|
|
201
262
|
.sapFeVerticalBarWeightM {
|
|
202
263
|
width: 0.75rem;
|
|
203
264
|
}
|
|
265
|
+
|
|
204
266
|
.sapFeVerticalBarWeight15 {
|
|
205
267
|
width: 1.5rem;
|
|
206
268
|
}
|
|
269
|
+
|
|
207
270
|
.sapFeVerticalBarWeightL {
|
|
208
271
|
width: 0.875rem;
|
|
209
272
|
}
|
|
273
|
+
|
|
210
274
|
.sapFeVerticalBarHeightS {
|
|
211
275
|
height: 75px;
|
|
212
276
|
}
|
|
277
|
+
|
|
213
278
|
.sapFeVerticalBarHeight0 {
|
|
214
|
-
height:
|
|
279
|
+
height: 0;
|
|
215
280
|
}
|
|
281
|
+
|
|
216
282
|
.sapFeVerticalBarHeight20 {
|
|
217
283
|
height: 20px;
|
|
218
284
|
}
|
|
285
|
+
|
|
219
286
|
.sapFeVerticalBarHeight30 {
|
|
220
287
|
height: 30px;
|
|
221
288
|
}
|
|
289
|
+
|
|
222
290
|
.sapFeVerticalBarHeight40 {
|
|
223
291
|
height: 40px;
|
|
224
292
|
}
|
|
293
|
+
|
|
225
294
|
.sapFeVerticalBarHeight60 {
|
|
226
295
|
height: 60px;
|
|
227
296
|
}
|
|
297
|
+
|
|
228
298
|
.sapFeVerticalBarHeight70 {
|
|
229
299
|
height: 60px;
|
|
230
300
|
}
|
|
301
|
+
|
|
231
302
|
.sapFeVerticalBarHeight80 {
|
|
232
303
|
height: 80px;
|
|
233
304
|
}
|
|
305
|
+
|
|
234
306
|
.sapFeVerticalBarHeight100 {
|
|
235
307
|
height: 100px;
|
|
236
308
|
}
|
|
@@ -238,334 +310,414 @@
|
|
|
238
310
|
.sapFeVerticalBarHeightM {
|
|
239
311
|
height: 120px;
|
|
240
312
|
}
|
|
313
|
+
|
|
241
314
|
.sapFeVerticalBarHeightL {
|
|
242
315
|
height: 225px;
|
|
243
316
|
}
|
|
317
|
+
|
|
244
318
|
.sapFeVerticalBarHeightXL {
|
|
245
319
|
height: 275px;
|
|
246
320
|
}
|
|
321
|
+
|
|
247
322
|
.sapFeBarChartLegendContainer {
|
|
248
323
|
padding-bottom: 2rem;
|
|
249
324
|
}
|
|
325
|
+
|
|
250
326
|
.sapFeBarChartLegendItem:not(:last-child) {
|
|
251
327
|
margin-bottom: 0.25rem;
|
|
252
328
|
}
|
|
329
|
+
|
|
253
330
|
.sapFeChartSum {
|
|
254
331
|
line-height: 0.125rem;
|
|
255
332
|
}
|
|
333
|
+
|
|
256
334
|
.sapFeChartHorMeasure,
|
|
257
335
|
.sapFeChartVertMeasure {
|
|
258
336
|
position: relative;
|
|
259
337
|
}
|
|
260
|
-
|
|
261
|
-
|
|
338
|
+
|
|
339
|
+
.sapFeChartVertMeasure::before {
|
|
340
|
+
content: '';
|
|
262
341
|
position: absolute;
|
|
263
342
|
top: 0;
|
|
264
343
|
bottom: 2px;
|
|
265
344
|
left: 0;
|
|
266
345
|
width: 2px;
|
|
267
346
|
}
|
|
268
|
-
|
|
269
|
-
|
|
347
|
+
|
|
348
|
+
.sapFeChartHorMeasure::after {
|
|
349
|
+
content: '';
|
|
270
350
|
position: absolute;
|
|
271
351
|
bottom: 2px;
|
|
272
352
|
right: 0.5rem;
|
|
273
353
|
left: 0;
|
|
274
354
|
height: 2px;
|
|
275
355
|
}
|
|
276
|
-
|
|
356
|
+
|
|
357
|
+
.sapFeBarChartWithMeasure .sapFeChartHorMeasure::after {
|
|
277
358
|
right: 2.5rem;
|
|
278
359
|
}
|
|
360
|
+
|
|
279
361
|
.sapFeVerticalBarChart.sapFeChartVertMeasure {
|
|
280
362
|
margin-top: 0.5rem;
|
|
281
363
|
}
|
|
364
|
+
|
|
282
365
|
.sapFeBarChartWithMeasure .sapFeVerticalBarChart.sapFeChartVertMeasure {
|
|
283
366
|
margin-right: 1rem;
|
|
284
367
|
}
|
|
368
|
+
|
|
285
369
|
.sapFeVerticalBarChart.sapFeVAlignInline.sapFeChartHorMeasure {
|
|
286
370
|
margin-top: 0;
|
|
287
371
|
}
|
|
288
|
-
|
|
372
|
+
|
|
373
|
+
.sapFeVerticalBarChart.sapFeChartVertMeasure::before {
|
|
289
374
|
top: -0.5rem;
|
|
290
375
|
}
|
|
376
|
+
|
|
291
377
|
.sapFeHorizontalBarChart.sapFeChartHorMeasure {
|
|
292
378
|
padding-bottom: 0.5rem;
|
|
293
379
|
margin-top: 0.5rem;
|
|
294
380
|
}
|
|
381
|
+
|
|
295
382
|
.sapFeHorizontalBarChart.sapFeVAlignInline.sapFeChartHorMeasure {
|
|
296
383
|
margin-top: 0;
|
|
297
384
|
}
|
|
385
|
+
|
|
298
386
|
.sapFeHorizontalBarChart.sapFeChartVertMeasure {
|
|
299
387
|
padding-left: 0.5rem;
|
|
300
388
|
margin-right: 1rem;
|
|
301
389
|
}
|
|
302
|
-
|
|
390
|
+
|
|
391
|
+
.sapFeHorizontalBarChart.sapFeChartVertMeasure::before {
|
|
303
392
|
top: -0.5rem;
|
|
304
393
|
}
|
|
305
|
-
|
|
394
|
+
|
|
395
|
+
.sapFeHorizontalBarChart.sapFeChartHorMeasure::after {
|
|
306
396
|
right: 0;
|
|
307
397
|
}
|
|
308
|
-
|
|
398
|
+
|
|
399
|
+
.sapFeBarChartWithMeasure .sapFeHorizontalBarChart.sapFeChartHorMeasure::after {
|
|
309
400
|
right: 2rem;
|
|
310
401
|
}
|
|
402
|
+
|
|
311
403
|
.sapFeChartSum .sapFeHorizontalRepeaterItem {
|
|
312
404
|
height: 5px !important;
|
|
313
405
|
}
|
|
406
|
+
|
|
314
407
|
.sapFeDonutChart {
|
|
315
408
|
width: 4rem;
|
|
316
409
|
height: 4rem;
|
|
317
410
|
border-radius: 50%;
|
|
318
411
|
position: relative;
|
|
319
412
|
}
|
|
413
|
+
|
|
320
414
|
.sapFeDonutChartInnerCircle {
|
|
321
415
|
width: 2rem;
|
|
322
416
|
height: 2rem;
|
|
323
417
|
margin: 1rem;
|
|
324
418
|
border-radius: 50%;
|
|
325
|
-
background:
|
|
419
|
+
background: var(--sapBaseColor);
|
|
326
420
|
position: absolute;
|
|
327
421
|
top: 0;
|
|
328
422
|
left: 0;
|
|
329
423
|
}
|
|
424
|
+
|
|
330
425
|
.sapFeDonutChartCutOut {
|
|
331
426
|
width: 2rem;
|
|
332
427
|
height: 2rem;
|
|
333
428
|
border-radius: 50% 0 0 0;
|
|
334
|
-
background:
|
|
429
|
+
background: var(--sapBaseColor);
|
|
335
430
|
position: absolute;
|
|
336
431
|
top: 0;
|
|
337
432
|
left: 0;
|
|
338
433
|
}
|
|
434
|
+
|
|
339
435
|
.sapFeOVPCardContainer {
|
|
340
436
|
display: flex;
|
|
341
437
|
flex-wrap: wrap;
|
|
342
438
|
align-items: flex-start;
|
|
343
439
|
}
|
|
440
|
+
|
|
344
441
|
.sapFeOVPCard {
|
|
345
442
|
width: calc(~"20rem - 2rem");
|
|
346
443
|
margin: 0 2rem 2rem 0;
|
|
347
|
-
border: 1px solid
|
|
444
|
+
border: 1px solid var(--sapContent_Placeholderloading_Background);
|
|
348
445
|
}
|
|
446
|
+
|
|
349
447
|
.sapFeOVPCardVersion2 {
|
|
350
448
|
width: calc(~"20rem - 2rem + 20rem");
|
|
351
449
|
}
|
|
450
|
+
|
|
352
451
|
.sapFeOVPCardHeader {
|
|
353
452
|
padding: 1rem;
|
|
354
|
-
border-bottom: 1px solid
|
|
453
|
+
border-bottom: 1px solid var(--sapContent_Placeholderloading_Background);
|
|
355
454
|
}
|
|
455
|
+
|
|
356
456
|
.sapFeOVPCardHeader .sapFeHorizontalContent > *:not(:last-child) {
|
|
357
457
|
margin-right: 1rem;
|
|
358
458
|
}
|
|
459
|
+
|
|
359
460
|
.sapFeOVPCardContent {
|
|
360
461
|
padding: 1rem;
|
|
361
462
|
}
|
|
463
|
+
|
|
362
464
|
.sapFeOVPCardContentContainer {
|
|
363
465
|
width: 100%;
|
|
364
466
|
}
|
|
467
|
+
|
|
365
468
|
.sapFeOVPCardVersion2 .sapFeOVPCardContent > .sapFeHorizontalLayout > * {
|
|
366
469
|
width: calc(~"50% - 1rem");
|
|
367
470
|
}
|
|
471
|
+
|
|
368
472
|
.sapFeHeader {
|
|
369
473
|
padding-top: 1rem;
|
|
370
474
|
padding-bottom: 2rem;
|
|
371
|
-
background:
|
|
475
|
+
background: var(--sapBaseColor);
|
|
372
476
|
}
|
|
477
|
+
|
|
373
478
|
.sapFeHeaderTitle {
|
|
374
479
|
height: 3rem;
|
|
375
480
|
line-height: 2.825rem;
|
|
376
481
|
display: flex;
|
|
377
482
|
justify-content: space-between;
|
|
378
483
|
}
|
|
484
|
+
|
|
379
485
|
.sapFeHeaderTitle > * > * {
|
|
380
486
|
display: inline-block;
|
|
381
487
|
vertical-align: middle;
|
|
382
488
|
}
|
|
489
|
+
|
|
383
490
|
.sapFeHeaderTitleWithSubtitle {
|
|
384
491
|
height: 4.25rem;
|
|
385
492
|
}
|
|
493
|
+
|
|
386
494
|
.sapFeHeaderSubTitleText {
|
|
387
495
|
display: block;
|
|
388
496
|
}
|
|
497
|
+
|
|
389
498
|
.sapFeHeaderContent {
|
|
390
499
|
padding-top: 2rem;
|
|
391
500
|
padding-bottom: 2rem;
|
|
392
501
|
}
|
|
502
|
+
|
|
393
503
|
.sapFeAnchorBar {
|
|
394
504
|
padding-top: 1rem;
|
|
395
505
|
padding-bottom: 1px;
|
|
396
506
|
}
|
|
507
|
+
|
|
397
508
|
.sapFeContent {
|
|
398
|
-
background:
|
|
509
|
+
background: var(--sapBaseColor);
|
|
399
510
|
}
|
|
511
|
+
|
|
400
512
|
.sapFeObjectPageSection {
|
|
401
513
|
padding-top: 1rem;
|
|
402
514
|
position: relative;
|
|
403
515
|
}
|
|
516
|
+
|
|
404
517
|
.sapFeVerticalContent > *:not(:last-child).sapFeObjectPageSectionTitle {
|
|
405
518
|
margin-bottom: 3rem;
|
|
406
519
|
}
|
|
407
|
-
|
|
408
|
-
|
|
520
|
+
|
|
521
|
+
.sapFeObjectPageSectionTitle::after {
|
|
522
|
+
content: '.';
|
|
409
523
|
color: transparent;
|
|
410
524
|
position: absolute;
|
|
411
525
|
top: 3rem;
|
|
412
526
|
left: -1rem;
|
|
413
527
|
right: -1rem;
|
|
414
528
|
height: 2px;
|
|
415
|
-
background:
|
|
529
|
+
background: var(--sapList_HeaderBackground);
|
|
416
530
|
}
|
|
531
|
+
|
|
417
532
|
.sapFeTable {
|
|
418
533
|
padding: 2rem 0;
|
|
419
534
|
}
|
|
535
|
+
|
|
420
536
|
.sapFeTableTitle {
|
|
421
|
-
background:
|
|
537
|
+
background: var(--sapContent_Placeholderloading_Background);
|
|
422
538
|
opacity: 0.66;
|
|
423
539
|
}
|
|
540
|
+
|
|
424
541
|
.sapFeTableColmnHeaderRow {
|
|
425
|
-
background:
|
|
542
|
+
background: var(--sapList_HeaderBackground);
|
|
426
543
|
margin-left: -1rem;
|
|
427
544
|
margin-right: -1rem;
|
|
428
545
|
padding-left: 1rem;
|
|
429
546
|
padding-right: 1rem;
|
|
430
547
|
}
|
|
548
|
+
|
|
431
549
|
.sapFeTableCell {
|
|
432
550
|
height: 2rem;
|
|
433
551
|
line-height: 2rem;
|
|
434
552
|
width: calc(~"100% / 8");
|
|
435
553
|
}
|
|
554
|
+
|
|
436
555
|
.sapFeTableColmnHeaderCell {
|
|
437
556
|
height: 2.5rem;
|
|
438
557
|
line-height: 2.5rem;
|
|
439
558
|
width: calc(~"100% / 8");
|
|
440
559
|
}
|
|
560
|
+
|
|
441
561
|
.sapFeTableText {
|
|
442
562
|
display: inline-block;
|
|
443
563
|
}
|
|
564
|
+
|
|
444
565
|
.sapFeHorizontalContent > *:not(:last-child).sapFeTableColmnHeaderCell,
|
|
445
566
|
.sapFeHorizontalContent > *:not(:last-child).sapFeTableCell {
|
|
446
567
|
margin: 0;
|
|
447
568
|
}
|
|
569
|
+
|
|
448
570
|
.sapFeText,
|
|
449
571
|
.sapFeAction,
|
|
450
572
|
.sapFeVerticalBar,
|
|
451
|
-
.sapFeChartVertMeasure
|
|
452
|
-
.sapFeChartHorMeasure
|
|
573
|
+
.sapFeChartVertMeasure::before,
|
|
574
|
+
.sapFeChartHorMeasure::after,
|
|
453
575
|
.sapFeAvatar,
|
|
454
576
|
.sapFeDonutChart {
|
|
455
|
-
background:
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
background-image:
|
|
577
|
+
background: var(--sapContent_Placeholderloading_Background);
|
|
578
|
+
animation-duration: 2s;
|
|
579
|
+
animation-fill-mode: forwards;
|
|
580
|
+
animation-iteration-count: infinite;
|
|
581
|
+
animation-name: placeHolderShimmer;
|
|
582
|
+
animation-timing-function: linear;
|
|
583
|
+
background-image: var(--sapContent_Placeholderloading_Gradient);
|
|
462
584
|
background-repeat: no-repeat;
|
|
463
585
|
background-size: 900px 104px;
|
|
464
586
|
}
|
|
465
|
-
|
|
587
|
+
|
|
588
|
+
.sapFeChartVertMeasure::before {
|
|
466
589
|
background-size: 104px 900px;
|
|
467
590
|
}
|
|
591
|
+
|
|
468
592
|
.sapFeVerticalBar {
|
|
469
593
|
background-size: 104px 900px;
|
|
470
594
|
}
|
|
595
|
+
|
|
471
596
|
@keyframes placeHolderShimmer {
|
|
597
|
+
|
|
472
598
|
0% {
|
|
473
599
|
background-position-x: 100%;
|
|
474
600
|
}
|
|
601
|
+
|
|
475
602
|
100% {
|
|
476
603
|
background-position-x: 0%;
|
|
477
604
|
}
|
|
478
605
|
}
|
|
606
|
+
|
|
479
607
|
@media (min-width: 2560px) and (max-width: 3839px) {
|
|
608
|
+
|
|
480
609
|
.sapFeSmallestVisibleSizeXXL {
|
|
481
610
|
display: none;
|
|
482
611
|
}
|
|
612
|
+
|
|
483
613
|
.sapFeCols4 > * {
|
|
484
614
|
width: calc(~"(100% / 3) - 2rem");
|
|
485
615
|
}
|
|
616
|
+
|
|
486
617
|
.sapFeTableColmnHeaderCell,
|
|
487
618
|
.sapFeTableCell {
|
|
488
619
|
width: calc(~"100% / 6");
|
|
489
620
|
}
|
|
490
621
|
}
|
|
622
|
+
|
|
491
623
|
.sapUiContainer-Wide .sapFeSmallestVisibleSizeXXL,
|
|
492
624
|
.sapUiContainer-Wide .sapFeSmallestVisibleSizeXL {
|
|
493
625
|
display: none;
|
|
494
626
|
}
|
|
627
|
+
|
|
495
628
|
.sapUiContainer-Wide .sapFeCols4 > * {
|
|
496
629
|
width: calc(~"(100% / 2) - 2rem");
|
|
497
630
|
}
|
|
631
|
+
|
|
498
632
|
.sapUiContainer-Wide .sapFeTableColmnHeaderCell,
|
|
499
633
|
.sapUiContainer-Wide .sapFeTableCell {
|
|
500
634
|
width: calc(~"100% / 4");
|
|
501
635
|
}
|
|
636
|
+
|
|
502
637
|
@media (min-width: 1024px) and (max-width: 2559px) {
|
|
638
|
+
|
|
503
639
|
.sapFeSmallestVisibleSizeXXL,
|
|
504
640
|
.sapFeSmallestVisibleSizeXL {
|
|
505
641
|
display: none;
|
|
506
642
|
}
|
|
643
|
+
|
|
507
644
|
.sapFeCols4 > * {
|
|
508
645
|
width: calc(~"(100% / 2) - 2rem");
|
|
509
646
|
}
|
|
647
|
+
|
|
510
648
|
.sapFeTableColmnHeaderCell,
|
|
511
649
|
.sapFeTableCell {
|
|
512
650
|
width: calc(~"100% / 4");
|
|
513
651
|
}
|
|
514
652
|
}
|
|
653
|
+
|
|
515
654
|
.sapUiContainer-Medium .sapFeSmallestVisibleSizeXXL,
|
|
516
655
|
.sapUiContainer-Medium .sapFeSmallestVisibleSizeXL,
|
|
517
656
|
.sapUiContainer-Medium .sapFeSmallestVisibleSizeL {
|
|
518
657
|
display: none;
|
|
519
658
|
}
|
|
659
|
+
|
|
520
660
|
.sapUiContainer-Medium .sapFeResponsivePadding {
|
|
521
661
|
width: calc(~"100% - 4rem~");
|
|
522
662
|
padding-left: 2rem;
|
|
523
663
|
padding-right: 2rem;
|
|
524
664
|
}
|
|
665
|
+
|
|
525
666
|
.sapUiContainer-Medium .sapFeCols4 > * {
|
|
526
667
|
width: calc(~"(100% / 2) - 2rem");
|
|
527
668
|
}
|
|
669
|
+
|
|
528
670
|
.sapUiContainer-Medium .sapFeTableColmnHeaderCell,
|
|
529
671
|
.sapUiContainer-Medium .sapFeTableCell {
|
|
530
672
|
width: calc(~"100% / 3");
|
|
531
673
|
}
|
|
674
|
+
|
|
532
675
|
@media (min-width: 600px) and (max-width: 1023px) {
|
|
676
|
+
|
|
533
677
|
.sapFeSmallestVisibleSizeXXL,
|
|
534
678
|
.sapFeSmallestVisibleSizeXL,
|
|
535
679
|
.sapFeSmallestVisibleSizeL {
|
|
536
680
|
display: none;
|
|
537
681
|
}
|
|
682
|
+
|
|
538
683
|
.sapFeResponsivePadding {
|
|
539
684
|
width: calc(~"100% - 4rem");
|
|
540
685
|
padding-left: 2rem;
|
|
541
686
|
padding-right: 2rem;
|
|
542
687
|
}
|
|
688
|
+
|
|
543
689
|
.sapFeCols4 > * {
|
|
544
690
|
width: calc(~"(100% / 2) - 2rem");
|
|
545
691
|
}
|
|
692
|
+
|
|
546
693
|
.sapFeTableColmnHeaderCell,
|
|
547
694
|
.sapFeTableCell {
|
|
548
695
|
width: calc(~"100% / 3");
|
|
549
696
|
}
|
|
550
697
|
}
|
|
698
|
+
|
|
551
699
|
.sapUiContainer-Narrow .sapFeSmallestVisibleSizeXXL,
|
|
552
700
|
.sapUiContainer-Narrow .sapFeSmallestVisibleSizeXL,
|
|
553
701
|
.sapUiContainer-Narrow .sapFeSmallestVisibleSizeL,
|
|
554
702
|
.sapUiContainer-Narrow .sapFeSmallestVisibleSizeM {
|
|
555
703
|
display: none;
|
|
556
704
|
}
|
|
705
|
+
|
|
557
706
|
.sapUiContainer-Narrow .sapFeResponsivePadding {
|
|
558
707
|
width: calc(~"100% - 2rem");
|
|
559
708
|
padding-left: 1rem;
|
|
560
709
|
padding-right: 1rem;
|
|
561
710
|
}
|
|
711
|
+
|
|
562
712
|
.sapUiContainer-Narrow .sapFeCols4 > * {
|
|
563
713
|
width: calc(~"100% - 1rem");
|
|
564
714
|
}
|
|
715
|
+
|
|
565
716
|
.sapUiContainer-Narrow .sapFeTableColmnHeaderCell,
|
|
566
717
|
.sapUiContainer-Narrow .sapFeTableCell {
|
|
567
718
|
width: 100%;
|
|
568
719
|
}
|
|
720
|
+
|
|
569
721
|
@media (max-width: 599px) {
|
|
570
722
|
.sapFeSmallestVisibleSizeXXL,
|
|
571
723
|
.sapFeSmallestVisibleSizeXL,
|
|
@@ -573,16 +725,19 @@
|
|
|
573
725
|
.sapFeSmallestVisibleSizeM {
|
|
574
726
|
display: none;
|
|
575
727
|
}
|
|
728
|
+
|
|
576
729
|
.sapFeResponsivePadding {
|
|
577
730
|
width: calc(~"100% - 2rem");
|
|
578
731
|
padding-left: 1rem;
|
|
579
732
|
padding-right: 1rem;
|
|
580
733
|
}
|
|
734
|
+
|
|
581
735
|
.sapFeCols4 > * {
|
|
582
736
|
width: calc(~"100% - 1rem");
|
|
583
737
|
}
|
|
738
|
+
|
|
584
739
|
.sapFeTableColmnHeaderCell,
|
|
585
740
|
.sapFeTableCell {
|
|
586
741
|
width: 100%;
|
|
587
742
|
}
|
|
588
|
-
}
|
|
743
|
+
}
|