@sapui5/sap.fe.placeholder 1.124.2 → 1.126.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.fe.placeholder",
3
- "version": "1.124.2",
3
+ "version": "1.126.0",
4
4
  "description": "SAPUI5 Library sap.fe.placeholder",
5
5
  "keywords": [
6
6
  "sapui5",
@@ -6,7 +6,7 @@
6
6
  SAP UI development toolkit for HTML5 (SAPUI5)
7
7
  (c) Copyright 2009-2021 SAP SE. All rights reserved
8
8
  </copyright>
9
- <version>1.124.2</version>
9
+ <version>1.126.0</version>
10
10
 
11
11
  <documentation>UI5 library: sap.fe.placeholder</documentation>
12
12
 
@@ -32,7 +32,7 @@ sap.ui.define(
32
32
  controls: [],
33
33
  elements: [],
34
34
  // eslint-disable-next-line no-template-curly-in-string
35
- version: "1.124.2",
35
+ version: "1.126.0",
36
36
  noLibraryCSS: false,
37
37
  extensions: {}
38
38
  });
@@ -4,6 +4,9 @@
4
4
  width: 100%;
5
5
  height: 100%;
6
6
  }
7
+ .sapFeNoAnimation .sapFePlaceholderContainer * {
8
+ -webkit-animation: none !important;
9
+ }
7
10
  .sapFeResponsivePadding {
8
11
  width: calc(~"100% - 6rem");
9
12
  padding-left: 3rem;
@@ -1,3 +1,12 @@
1
- @import "../base/library.source.less";
1
+ /***********************************************************************************
2
+ /* Due to deprecation of the Belize theme family with SAPUI5 version 1.120 the
3
+ /* inheritance of the base theme is now updated to an inheritance of a static
4
+ /* copy of the base theme named sap_belize_base. The respective
5
+ /* control css files of base are copied to the sap_belize_base theme folder.
6
+ /* This decoupling of the base theme is introduced with SAPUI5 version 1.125.
7
+ ***********************************************************************************/
8
+
9
+
10
+ @import "../sap_belize_base/library.source.less";
2
11
  @import "../../../../../sap/ui/core/themes/sap_belize/base.less";
3
12
  @import "../../../../../sap/ui/core/themes/sap_belize/global.less";
@@ -0,0 +1,585 @@
1
+ .sapFePlaceholderContainer {
2
+ background-color: @sapUiBaseColor;
3
+ position: absolute;
4
+ width: 100%;
5
+ height: 100%;
6
+ }
7
+ .sapFeResponsivePadding {
8
+ width: calc(~"100% - 6rem");
9
+ padding-left: 3rem;
10
+ padding-right: 3rem;
11
+ }
12
+ .sapFeCols4 > * {
13
+ width: calc(~"25% - 2rem");
14
+ }
15
+ .sapFePaddingTop {
16
+ padding-top: 1rem;
17
+ }
18
+ .sapFeTextAlignStart {
19
+ text-align: start;
20
+ }
21
+ .sapFeTextAlignCenter {
22
+ text-align: center;
23
+ }
24
+ .sapFeTextAlignEnd {
25
+ text-align: end;
26
+ }
27
+ .sapFeTextAlignInherit {
28
+ text-align: inherit;
29
+ }
30
+ .sapFeVerticalAlignTop {
31
+ vertical-align: top;
32
+ }
33
+ .sapFeVerticalAlignInherit {
34
+ vertical-align: inherit;
35
+ }
36
+ .sapFeVerticalAlignMiddle {
37
+ vertical-align: middle;
38
+ }
39
+ .sapFeVerticalAlignBottom {
40
+ vertical-align: bottom;
41
+ }
42
+ .sapFeVerticalRepeater {
43
+ display: flex;
44
+ flex-direction: column;
45
+ align-items: flex-start !important;
46
+ align-content: flex-start;
47
+ width: fit-content;
48
+ }
49
+ .sapFeVerticalRepeater.sapFeTextAlignCenter {
50
+ align-items: center;
51
+ }
52
+ .sapFeVerticalRepeater.sapFeTextAlignEnd {
53
+ align-items: flex-end;
54
+ }
55
+ .sapFeVerticalRepeater.sapFeVerticalAlignMiddle {
56
+ align-content: center;
57
+ }
58
+ .sapFeVerticalRepeater.sapFeVerticalAlignBottom {
59
+ align-content: flex-end;
60
+ }
61
+ .sapFeHorizontalContent > * {
62
+ display: inline-block;
63
+ }
64
+ .sapFeHorizontalContent > .sapFeVerticalRepeater,
65
+ .sapFeHorizontalContent > .sapFeHorizontalRepeater {
66
+ display: flex;
67
+ }
68
+ .sapFeHorizontalContent > *:not(:last-child) {
69
+ margin-left: 0;
70
+ }
71
+ .sapFeHorizontalContent > *:not(:last-child) {
72
+ margin-right: 2rem;
73
+ }
74
+ .sapFeHorizontalContent.sapFeTextAlignEnd > *:not(:last-child) {
75
+ margin-right: 0;
76
+ }
77
+ .sapFeHorizontalContent.sapFeTextAlignEnd > *:not(:first-child) {
78
+ margin-left: 2rem;
79
+ }
80
+ .sapFeVerticalContent > * {
81
+ display: block;
82
+ }
83
+ .sapFeVerticalContent > *:not(:last-child) {
84
+ margin-bottom: 1rem;
85
+ }
86
+ .sapFeVerticalContent.sapFeVerticalAlignBottom > *:not(:first-child) {
87
+ margin-top: 1rem;
88
+ }
89
+ .sapFeText {
90
+ border-radius: 0.25rem;
91
+ }
92
+ .sapFeTextWeightS {
93
+ height: 0.5rem;
94
+ }
95
+ .sapFeTextWeightM {
96
+ height: 0.75rem;
97
+ }
98
+ .sapFeTextWeightL {
99
+ height: 0.875rem;
100
+ }
101
+ .sapFeTextWidthS {
102
+ width: 75px;
103
+ }
104
+ .sapFeTextWidthM {
105
+ width: 120px;
106
+ }
107
+ .sapFeTextWidthL {
108
+ width: 225px;
109
+ }
110
+ .sapFeTextWidthXL {
111
+ width: 275px;
112
+ }
113
+ .sapFeTextWidth30PX {
114
+ width: 30px;
115
+ }
116
+ .sapFeTextWidth50perct {
117
+ width: 50%;
118
+ }
119
+
120
+ .sapFeTextWidth50PX {
121
+ width: 50px;
122
+ }
123
+ .sapFeTextWidth80PX {
124
+ width: 80px;
125
+ }
126
+ .sapFeTextWidth90PX {
127
+ width: 90px;
128
+ }
129
+ .sapFeTextWidth100PX {
130
+ width: 100px;
131
+ }
132
+ .sapFeTextWidth120PX {
133
+ width: 120px !important;
134
+ }
135
+ .sapFeTextWidth160PX {
136
+ width: 160px;
137
+ }
138
+
139
+ .sapFeTextHeight20 {
140
+ height: 20px;
141
+ }
142
+ .sapFeTextHeight90PX {
143
+ height: 90px !important;
144
+ }
145
+
146
+ .sapFeTextWidth0 {
147
+ width: 0px;
148
+ }
149
+ .sapFeTextWidth140 {
150
+ width: 140px;
151
+ }
152
+ .sapFeTextWidth160 {
153
+ width: 160px;
154
+ }
155
+ .sapFeAction {
156
+ width: 1.5rem;
157
+ height: 1.5rem;
158
+ border-radius: 50%;
159
+ }
160
+ .sapFeAvatarSizeS {
161
+ width: 2rem;
162
+ height: 2rem;
163
+ }
164
+ .sapFeAvatarSizeM {
165
+ width: 5rem;
166
+ height: 5rem;
167
+ }
168
+ .sapFeOVPCardHeaderAvatar {
169
+ width: 40px;
170
+ height: 40px;
171
+ background-size: 900px 900px;
172
+ }
173
+ .sapFeAvatarShapeCircle {
174
+ border-radius: 50%;
175
+ }
176
+ .sapFeBarChart {
177
+ display: inline-block;
178
+ }
179
+ .sapFeVerticalBarChart,
180
+ .sapFeHorizontalBarChart {
181
+ padding-right: 1rem;
182
+ white-space: nowrap;
183
+ }
184
+ .sapFeBarChartWithMeasure .sapFeVerticalBarChart,
185
+ .sapFeBarChartWithMeasure .sapFeHorizontalBarChart {
186
+ padding-right: 3rem;
187
+ }
188
+ .sapFeBarChart .sapFeHorizontalRepeaterItem,
189
+ .sapFeHorizontalBarChart .sapFeVerticalRepeaterItem {
190
+ border-radius: 0.25rem;
191
+ }
192
+ .sapFeHorizontalContent > .sapFeVerticalBar {
193
+ margin: 0 0.55rem;
194
+ }
195
+ .sapFeVerticalBarWeightS {
196
+ width: 0.5rem;
197
+ }
198
+ .sapFeVerticalBarWeightM {
199
+ width: 0.75rem;
200
+ }
201
+ .sapFeVerticalBarWeight15 {
202
+ width: 1.5rem;
203
+ }
204
+ .sapFeVerticalBarWeightL {
205
+ width: 0.875rem;
206
+ }
207
+ .sapFeVerticalBarHeightS {
208
+ height: 75px;
209
+ }
210
+ .sapFeVerticalBarHeight0 {
211
+ height: 0px;
212
+ }
213
+ .sapFeVerticalBarHeight20 {
214
+ height: 20px;
215
+ }
216
+ .sapFeVerticalBarHeight30 {
217
+ height: 30px;
218
+ }
219
+ .sapFeVerticalBarHeight40 {
220
+ height: 40px;
221
+ }
222
+ .sapFeVerticalBarHeight60 {
223
+ height: 60px;
224
+ }
225
+ .sapFeVerticalBarHeight70 {
226
+ height: 60px;
227
+ }
228
+ .sapFeVerticalBarHeight80 {
229
+ height: 80px;
230
+ }
231
+ .sapFeVerticalBarHeight100 {
232
+ height: 100px;
233
+ }
234
+
235
+ .sapFeVerticalBarHeightM {
236
+ height: 120px;
237
+ }
238
+ .sapFeVerticalBarHeightL {
239
+ height: 225px;
240
+ }
241
+ .sapFeVerticalBarHeightXL {
242
+ height: 275px;
243
+ }
244
+ .sapFeBarChartLegendContainer {
245
+ padding-bottom: 2rem;
246
+ }
247
+ .sapFeBarChartLegendItem:not(:last-child) {
248
+ margin-bottom: 0.25rem;
249
+ }
250
+ .sapFeChartSum {
251
+ line-height: 0.125rem;
252
+ }
253
+ .sapFeChartHorMeasure,
254
+ .sapFeChartVertMeasure {
255
+ position: relative;
256
+ }
257
+ .sapFeChartVertMeasure:before {
258
+ content: "";
259
+ position: absolute;
260
+ top: 0;
261
+ bottom: 2px;
262
+ left: 0;
263
+ width: 2px;
264
+ }
265
+ .sapFeChartHorMeasure:after {
266
+ content: "";
267
+ position: absolute;
268
+ bottom: 2px;
269
+ right: 0.5rem;
270
+ left: 0;
271
+ height: 2px;
272
+ }
273
+ .sapFeBarChartWithMeasure .sapFeChartHorMeasure:after {
274
+ right: 2.5rem;
275
+ }
276
+ .sapFeVerticalBarChart.sapFeChartVertMeasure {
277
+ margin-top: 0.5rem;
278
+ }
279
+ .sapFeBarChartWithMeasure .sapFeVerticalBarChart.sapFeChartVertMeasure {
280
+ margin-right: 1rem;
281
+ }
282
+ .sapFeVerticalBarChart.sapFeVAlignInline.sapFeChartHorMeasure {
283
+ margin-top: 0;
284
+ }
285
+ .sapFeVerticalBarChart.sapFeChartVertMeasure:before {
286
+ top: -0.5rem;
287
+ }
288
+ .sapFeHorizontalBarChart.sapFeChartHorMeasure {
289
+ padding-bottom: 0.5rem;
290
+ margin-top: 0.5rem;
291
+ }
292
+ .sapFeHorizontalBarChart.sapFeVAlignInline.sapFeChartHorMeasure {
293
+ margin-top: 0;
294
+ }
295
+ .sapFeHorizontalBarChart.sapFeChartVertMeasure {
296
+ padding-left: 0.5rem;
297
+ margin-right: 1rem;
298
+ }
299
+ .sapFeHorizontalBarChart.sapFeChartVertMeasure:before {
300
+ top: -0.5rem;
301
+ }
302
+ .sapFeHorizontalBarChart.sapFeChartHorMeasure:after {
303
+ right: 0;
304
+ }
305
+ .sapFeBarChartWithMeasure .sapFeHorizontalBarChart.sapFeChartHorMeasure:after {
306
+ right: 2rem;
307
+ }
308
+ .sapFeChartSum .sapFeHorizontalRepeaterItem {
309
+ height: 5px !important;
310
+ }
311
+ .sapFeDonutChart {
312
+ width: 4rem;
313
+ height: 4rem;
314
+ border-radius: 50%;
315
+ position: relative;
316
+ }
317
+ .sapFeDonutChartInnerCircle {
318
+ width: 2rem;
319
+ height: 2rem;
320
+ margin: 1rem;
321
+ border-radius: 50%;
322
+ background: @sapUiBaseColor;
323
+ position: absolute;
324
+ top: 0;
325
+ left: 0;
326
+ }
327
+ .sapFeDonutChartCutOut {
328
+ width: 2rem;
329
+ height: 2rem;
330
+ border-radius: 50% 0 0 0;
331
+ background: @sapUiBaseColor;
332
+ position: absolute;
333
+ top: 0;
334
+ left: 0;
335
+ }
336
+ .sapFeOVPCardContainer {
337
+ display: flex;
338
+ flex-wrap: wrap;
339
+ align-items: flex-start;
340
+ }
341
+ .sapFeOVPCard {
342
+ width: calc(~"20rem - 2rem");
343
+ margin: 0 2rem 2rem 0;
344
+ border: 1px solid @sapUiContentPlaceholderloadingBackground;
345
+ }
346
+ .sapFeOVPCardVersion2 {
347
+ width: calc(~"20rem - 2rem + 20rem");
348
+ }
349
+ .sapFeOVPCardHeader {
350
+ padding: 1rem;
351
+ border-bottom: 1px solid @sapUiContentPlaceholderloadingBackground;
352
+ }
353
+ .sapFeOVPCardHeader .sapFeHorizontalContent > *:not(:last-child) {
354
+ margin-right: 1rem;
355
+ }
356
+ .sapFeOVPCardContent {
357
+ padding: 1rem;
358
+ }
359
+ .sapFeOVPCardContentContainer {
360
+ width: 100%;
361
+ }
362
+ .sapFeOVPCardVersion2 .sapFeOVPCardContent > .sapFeHorizontalLayout > * {
363
+ width: calc(~"50% - 1rem");
364
+ }
365
+ .sapFeHeader {
366
+ padding-top: 1rem;
367
+ padding-bottom: 2rem;
368
+ background: @sapUiBaseColor;
369
+ }
370
+ .sapFeHeaderTitle {
371
+ height: 3rem;
372
+ line-height: 2.825rem;
373
+ display: flex;
374
+ justify-content: space-between;
375
+ }
376
+ .sapFeHeaderTitle > * > * {
377
+ display: inline-block;
378
+ vertical-align: middle;
379
+ }
380
+ .sapFeHeaderTitleWithSubtitle {
381
+ height: 4.25rem;
382
+ }
383
+ .sapFeHeaderSubTitleText {
384
+ display: block;
385
+ }
386
+ .sapFeHeaderContent {
387
+ padding-top: 2rem;
388
+ padding-bottom: 2rem;
389
+ }
390
+ .sapFeAnchorBar {
391
+ padding-top: 1rem;
392
+ padding-bottom: 1px;
393
+ }
394
+ .sapFeContent {
395
+ background: @sapUiBaseColor;
396
+ }
397
+ .sapFeObjectPageSection {
398
+ padding-top: 1rem;
399
+ position: relative;
400
+ }
401
+ .sapFeVerticalContent > *:not(:last-child).sapFeObjectPageSectionTitle {
402
+ margin-bottom: 3rem;
403
+ }
404
+ .sapFeObjectPageSectionTitle:after {
405
+ content: ".";
406
+ color: transparent;
407
+ position: absolute;
408
+ top: 3rem;
409
+ left: -1rem;
410
+ right: -1rem;
411
+ height: 2px;
412
+ background: @sapUiListHeaderBackground;
413
+ }
414
+ .sapFeTable {
415
+ padding: 2rem 0;
416
+ }
417
+ .sapFeTableTitle {
418
+ background: @sapUiContentPlaceholderloadingBackground;
419
+ opacity: 0.66;
420
+ }
421
+ .sapFeTableColmnHeaderRow {
422
+ background: @sapUiListHeaderBackground;
423
+ margin-left: -1rem;
424
+ margin-right: -1rem;
425
+ padding-left: 1rem;
426
+ padding-right: 1rem;
427
+ }
428
+ .sapFeTableCell {
429
+ height: 2rem;
430
+ line-height: 2rem;
431
+ width: calc(~"100% / 8");
432
+ }
433
+ .sapFeTableColmnHeaderCell {
434
+ height: 2.5rem;
435
+ line-height: 2.5rem;
436
+ width: calc(~"100% / 8");
437
+ }
438
+ .sapFeTableText {
439
+ display: inline-block;
440
+ }
441
+ .sapFeHorizontalContent > *:not(:last-child).sapFeTableColmnHeaderCell,
442
+ .sapFeHorizontalContent > *:not(:last-child).sapFeTableCell {
443
+ margin: 0;
444
+ }
445
+ .sapFeText,
446
+ .sapFeAction,
447
+ .sapFeVerticalBar,
448
+ .sapFeChartVertMeasure:before,
449
+ .sapFeChartHorMeasure:after,
450
+ .sapFeAvatar,
451
+ .sapFeDonutChart {
452
+ background: @sapUiContentPlaceholderloadingBackground;
453
+ -webkit-animation-duration: 2s;
454
+ -webkit-animation-fill-mode: forwards;
455
+ -webkit-animation-iteration-count: infinite;
456
+ -webkit-animation-name: placeHolderShimmer;
457
+ -webkit-animation-timing-function: linear;
458
+ background-image: @sapUiContentPlaceholderloadingGradient;
459
+ background-repeat: no-repeat;
460
+ background-size: 900px 104px;
461
+ }
462
+ .sapFeChartVertMeasure:before {
463
+ background-size: 104px 900px;
464
+ }
465
+ .sapFeVerticalBar {
466
+ background-size: 104px 900px;
467
+ }
468
+ @keyframes placeHolderShimmer {
469
+ 0% {
470
+ background-position-x: 100%;
471
+ }
472
+ 100% {
473
+ background-position-x: 0%;
474
+ }
475
+ }
476
+ @media (min-width: 2560px) and (max-width: 3839px) {
477
+ .sapFeSmallestVisibleSizeXXL {
478
+ display: none;
479
+ }
480
+ .sapFeCols4 > * {
481
+ width: calc(~"(100% / 3) - 2rem");
482
+ }
483
+ .sapFeTableColmnHeaderCell,
484
+ .sapFeTableCell {
485
+ width: calc(~"100% / 6");
486
+ }
487
+ }
488
+ .sapUiContainer-Wide .sapFeSmallestVisibleSizeXXL,
489
+ .sapUiContainer-Wide .sapFeSmallestVisibleSizeXL {
490
+ display: none;
491
+ }
492
+ .sapUiContainer-Wide .sapFeCols4 > * {
493
+ width: calc(~"(100% / 2) - 2rem");
494
+ }
495
+ .sapUiContainer-Wide .sapFeTableColmnHeaderCell,
496
+ .sapUiContainer-Wide .sapFeTableCell {
497
+ width: calc(~"100% / 4");
498
+ }
499
+ @media (min-width: 1024px) and (max-width: 2559px) {
500
+ .sapFeSmallestVisibleSizeXXL,
501
+ .sapFeSmallestVisibleSizeXL {
502
+ display: none;
503
+ }
504
+ .sapFeCols4 > * {
505
+ width: calc(~"(100% / 2) - 2rem");
506
+ }
507
+ .sapFeTableColmnHeaderCell,
508
+ .sapFeTableCell {
509
+ width: calc(~"100% / 4");
510
+ }
511
+ }
512
+ .sapUiContainer-Medium .sapFeSmallestVisibleSizeXXL,
513
+ .sapUiContainer-Medium .sapFeSmallestVisibleSizeXL,
514
+ .sapUiContainer-Medium .sapFeSmallestVisibleSizeL {
515
+ display: none;
516
+ }
517
+ .sapUiContainer-Medium .sapFeResponsivePadding {
518
+ width: calc(~"100% - 4rem~");
519
+ padding-left: 2rem;
520
+ padding-right: 2rem;
521
+ }
522
+ .sapUiContainer-Medium .sapFeCols4 > * {
523
+ width: calc(~"(100% / 2) - 2rem");
524
+ }
525
+ .sapUiContainer-Medium .sapFeTableColmnHeaderCell,
526
+ .sapUiContainer-Medium .sapFeTableCell {
527
+ width: calc(~"100% / 3");
528
+ }
529
+ @media (min-width: 600px) and (max-width: 1023px) {
530
+ .sapFeSmallestVisibleSizeXXL,
531
+ .sapFeSmallestVisibleSizeXL,
532
+ .sapFeSmallestVisibleSizeL {
533
+ display: none;
534
+ }
535
+ .sapFeResponsivePadding {
536
+ width: calc(~"100% - 4rem");
537
+ padding-left: 2rem;
538
+ padding-right: 2rem;
539
+ }
540
+ .sapFeCols4 > * {
541
+ width: calc(~"(100% / 2) - 2rem");
542
+ }
543
+ .sapFeTableColmnHeaderCell,
544
+ .sapFeTableCell {
545
+ width: calc(~"100% / 3");
546
+ }
547
+ }
548
+ .sapUiContainer-Narrow .sapFeSmallestVisibleSizeXXL,
549
+ .sapUiContainer-Narrow .sapFeSmallestVisibleSizeXL,
550
+ .sapUiContainer-Narrow .sapFeSmallestVisibleSizeL,
551
+ .sapUiContainer-Narrow .sapFeSmallestVisibleSizeM {
552
+ display: none;
553
+ }
554
+ .sapUiContainer-Narrow .sapFeResponsivePadding {
555
+ width: calc(~"100% - 2rem");
556
+ padding-left: 1rem;
557
+ padding-right: 1rem;
558
+ }
559
+ .sapUiContainer-Narrow .sapFeCols4 > * {
560
+ width: calc(~"100% - 1rem");
561
+ }
562
+ .sapUiContainer-Narrow .sapFeTableColmnHeaderCell,
563
+ .sapUiContainer-Narrow .sapFeTableCell {
564
+ width: 100%;
565
+ }
566
+ @media (max-width: 599px) {
567
+ .sapFeSmallestVisibleSizeXXL,
568
+ .sapFeSmallestVisibleSizeXL,
569
+ .sapFeSmallestVisibleSizeL,
570
+ .sapFeSmallestVisibleSizeM {
571
+ display: none;
572
+ }
573
+ .sapFeResponsivePadding {
574
+ width: calc(~"100% - 2rem");
575
+ padding-left: 1rem;
576
+ padding-right: 1rem;
577
+ }
578
+ .sapFeCols4 > * {
579
+ width: calc(~"100% - 1rem");
580
+ }
581
+ .sapFeTableColmnHeaderCell,
582
+ .sapFeTableCell {
583
+ width: 100%;
584
+ }
585
+ }
@@ -0,0 +1,3 @@
1
+ @import "../../../../../sap/ui/core/themes/base/base.less";
2
+ @import "../../../../../sap/ui/core/themes/base/global.less";
3
+ @import "Placeholder.less";
@@ -1,3 +1,12 @@
1
- @import "../base/library.source.less";
1
+ /***********************************************************************************
2
+ /* Due to deprecation of the Belize theme family with SAPUI5 version 1.120 the
3
+ /* inheritance of the base theme is now updated to an inheritance of a static
4
+ /* copy of the base theme named sap_belize_base. The respective
5
+ /* control css files of base are copied to the sap_belize_base theme folder.
6
+ /* This decoupling of the base theme is introduced with SAPUI5 version 1.125.
7
+ ***********************************************************************************/
8
+
9
+
10
+ @import "../sap_belize_base/library.source.less";
2
11
  @import "../../../../../sap/ui/core/themes/sap_belize_hcb/base.less";
3
12
  @import "../../../../../sap/ui/core/themes/sap_belize_hcb/global.less";
@@ -1,3 +1,12 @@
1
- @import "../base/library.source.less";
1
+ /***********************************************************************************
2
+ /* Due to deprecation of the Belize theme family with SAPUI5 version 1.120 the
3
+ /* inheritance of the base theme is now updated to an inheritance of a static
4
+ /* copy of the base theme named sap_belize_base. The respective
5
+ /* control css files of base are copied to the sap_belize_base theme folder.
6
+ /* This decoupling of the base theme is introduced with SAPUI5 version 1.125.
7
+ ***********************************************************************************/
8
+
9
+
10
+ @import "../sap_belize_base/library.source.less";
2
11
  @import "../../../../../sap/ui/core/themes/sap_belize_hcw/base.less";
3
12
  @import "../../../../../sap/ui/core/themes/sap_belize_hcw/global.less";