@openui5/sap.ui.documentation 1.102.2 → 1.104.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.
Files changed (85) hide show
  1. package/.reuse/dep5 +17 -0
  2. package/LICENSES/LicenseRef-tzdata-PublicDomain.txt +5 -0
  3. package/THIRDPARTY.txt +35 -2
  4. package/package.json +6 -6
  5. package/src/sap/ui/documentation/.library +1 -1
  6. package/src/sap/ui/documentation/library.js +2 -2
  7. package/src/sap/ui/documentation/messagebundle.properties +2 -0
  8. package/src/sap/ui/documentation/messagebundle_ar.properties +1 -1
  9. package/src/sap/ui/documentation/messagebundle_bg.properties +1 -1
  10. package/src/sap/ui/documentation/messagebundle_ca.properties +1 -1
  11. package/src/sap/ui/documentation/messagebundle_cy.properties +1 -1
  12. package/src/sap/ui/documentation/messagebundle_da.properties +1 -1
  13. package/src/sap/ui/documentation/messagebundle_el.properties +1 -1
  14. package/src/sap/ui/documentation/messagebundle_en_US_sappsd.properties +1 -0
  15. package/src/sap/ui/documentation/messagebundle_es_MX.properties +1 -1
  16. package/src/sap/ui/documentation/messagebundle_et.properties +1 -1
  17. package/src/sap/ui/documentation/messagebundle_fi.properties +1 -1
  18. package/src/sap/ui/documentation/messagebundle_fr.properties +1 -1
  19. package/src/sap/ui/documentation/messagebundle_fr_CA.properties +1 -1
  20. package/src/sap/ui/documentation/messagebundle_hi.properties +1 -1
  21. package/src/sap/ui/documentation/messagebundle_hu.properties +1 -1
  22. package/src/sap/ui/documentation/messagebundle_id.properties +1 -1
  23. package/src/sap/ui/documentation/messagebundle_iw.properties +1 -1
  24. package/src/sap/ui/documentation/messagebundle_ja.properties +1 -1
  25. package/src/sap/ui/documentation/messagebundle_kk.properties +1 -1
  26. package/src/sap/ui/documentation/messagebundle_ko.properties +1 -1
  27. package/src/sap/ui/documentation/messagebundle_lt.properties +1 -1
  28. package/src/sap/ui/documentation/messagebundle_lv.properties +1 -1
  29. package/src/sap/ui/documentation/messagebundle_ms.properties +1 -1
  30. package/src/sap/ui/documentation/messagebundle_nl.properties +1 -1
  31. package/src/sap/ui/documentation/messagebundle_no.properties +1 -1
  32. package/src/sap/ui/documentation/messagebundle_ru.properties +1 -1
  33. package/src/sap/ui/documentation/messagebundle_sh.properties +1 -1
  34. package/src/sap/ui/documentation/messagebundle_sk.properties +1 -1
  35. package/src/sap/ui/documentation/messagebundle_sl.properties +1 -1
  36. package/src/sap/ui/documentation/messagebundle_sv.properties +1 -1
  37. package/src/sap/ui/documentation/messagebundle_th.properties +1 -1
  38. package/src/sap/ui/documentation/messagebundle_tr.properties +1 -1
  39. package/src/sap/ui/documentation/messagebundle_uk.properties +1 -1
  40. package/src/sap/ui/documentation/messagebundle_vi.properties +1 -1
  41. package/src/sap/ui/documentation/messagebundle_zh_CN.properties +1 -1
  42. package/src/sap/ui/documentation/messagebundle_zh_TW.properties +1 -1
  43. package/src/sap/ui/documentation/sdk/Component.js +1 -1
  44. package/src/sap/ui/documentation/sdk/controller/App.controller.js +3 -3
  45. package/src/sap/ui/documentation/sdk/controller/Code.controller.js +1 -1
  46. package/src/sap/ui/documentation/sdk/controller/ControlsMaster.controller.js +2 -2
  47. package/src/sap/ui/documentation/sdk/controller/Sample.controller.js +106 -46
  48. package/src/sap/ui/documentation/sdk/controller/TopicDetail.controller.js +1 -1
  49. package/src/sap/ui/documentation/sdk/controller/VersionNotFound.controller.js +19 -12
  50. package/src/sap/ui/documentation/sdk/controller/util/ToolsInfo.js +7 -3
  51. package/src/sap/ui/documentation/sdk/controller/util/URLUtil.js +117 -0
  52. package/src/sap/ui/documentation/sdk/css/style.css +22 -13
  53. package/src/sap/ui/documentation/sdk/index.html +42 -7
  54. package/src/sap/ui/documentation/sdk/model/formatter.js +25 -0
  55. package/src/sap/ui/documentation/sdk/thirdparty/highlight.js/styles.css +47 -1
  56. package/src/sap/ui/documentation/sdk/util/DocumentationRouter.js +7 -0
  57. package/src/sap/ui/documentation/sdk/util/Resources.js +3 -0
  58. package/src/sap/ui/documentation/sdk/view/ApiDetailInitial.view.xml +13 -13
  59. package/src/sap/ui/documentation/sdk/view/Controls.view.xml +19 -19
  60. package/src/sap/ui/documentation/sdk/view/Entity.view.xml +2 -2
  61. package/src/sap/ui/documentation/sdk/view/Tools.view.xml +12 -3
  62. package/src/sap/ui/documentation/sdk/view/TopicDetailInitial.view.xml +12 -12
  63. package/src/sap/ui/documentation/sdk/view/Welcome.view.xml +49 -25
  64. package/src/sap/ui/documentation/sdk/view/appSettingsDialog.fragment.xml +6 -4
  65. package/src/sap/ui/documentation/themes/base/DemokitTreeItem.less +5 -9
  66. package/src/sap/ui/documentation/themes/base/Documentation.less +16 -2
  67. package/src/sap/ui/documentation/themes/base/LightTable.less +49 -40
  68. package/src/sap/ui/documentation/themes/base/ObjectPageSubSection.less +9 -0
  69. package/src/sap/ui/documentation/themes/base/Search.less +1 -0
  70. package/src/sap/ui/documentation/themes/base/global.less +27 -0
  71. package/src/sap/ui/documentation/themes/base/library.source.less +2 -0
  72. package/src/sap/ui/documentation/themes/sap_belize/global.less +19 -0
  73. package/src/sap/ui/documentation/themes/sap_belize/library.source.less +1 -0
  74. package/src/sap/ui/documentation/themes/sap_fiori_3/global.less +18 -0
  75. package/src/sap/ui/documentation/themes/sap_fiori_3/library.source.less +2 -1
  76. package/src/sap/ui/documentation/themes/sap_horizon/Link.less +3 -0
  77. package/src/sap/ui/documentation/themes/sap_horizon/Search.less +3 -0
  78. package/src/sap/ui/documentation/themes/sap_horizon/SplitButton.less +5 -0
  79. package/src/sap/ui/documentation/themes/sap_horizon/global.less +18 -0
  80. package/src/sap/ui/documentation/themes/sap_horizon/library.source.less +6 -1
  81. package/src/sap/ui/documentation/themes/sap_horizon_dark/Documentation.less +17 -0
  82. package/src/sap/ui/documentation/themes/sap_horizon_dark/Link.less +3 -0
  83. package/src/sap/ui/documentation/themes/sap_horizon_dark/Search.less +3 -0
  84. package/src/sap/ui/documentation/themes/sap_horizon_dark/SplitButton.less +5 -0
  85. package/src/sap/ui/documentation/themes/sap_horizon_dark/library.source.less +6 -1
@@ -77,7 +77,7 @@
77
77
  <l:BlockLayout>
78
78
  <l:BlockLayoutRow>
79
79
  <l:BlockLayoutCell
80
- backgroundColorSet="ColorSet11"
80
+ backgroundColorSet="ColorSet10"
81
81
  backgroundColorShade="ShadeA">
82
82
  <l:Grid
83
83
  defaultSpan="L6 M12 S12"
@@ -105,8 +105,8 @@
105
105
  </l:BlockLayoutCell>
106
106
 
107
107
  <l:BlockLayoutCell
108
- backgroundColorSet="ColorSet11"
109
- backgroundColorShade="ShadeD">
108
+ backgroundColorSet="ColorSet10"
109
+ backgroundColorShade="ShadeB">
110
110
  <l:VerticalLayout
111
111
  width="100%">
112
112
  <custom:TitleLink
@@ -171,7 +171,7 @@
171
171
 
172
172
  <l:BlockLayoutRow>
173
173
  <l:BlockLayoutCell
174
- backgroundColorSet="ColorSet11"
174
+ backgroundColorSet="ColorSet10"
175
175
  backgroundColorShade="ShadeB">
176
176
  <l:VerticalLayout
177
177
  width="100%">
@@ -243,7 +243,7 @@
243
243
  </l:BlockLayoutCell>
244
244
 
245
245
  <l:BlockLayoutCell
246
- backgroundColorSet="ColorSet11"
246
+ backgroundColorSet="ColorSet10"
247
247
  backgroundColorShade="ShadeA">
248
248
  <l:Grid
249
249
  defaultSpan="L6 M12 S12"
@@ -281,7 +281,7 @@
281
281
  <!-- This block layout row will be commented until BGSOFUIPIRIN-5473 is completely finished-->
282
282
  <!-- <l:BlockLayoutRow>-->
283
283
  <!-- <l:BlockLayoutCell-->
284
- <!-- backgroundColorSet="ColorSet11"-->
284
+ <!-- backgroundColorSet="ColorSet10"-->
285
285
  <!-- backgroundColorShade="ShadeA">-->
286
286
  <!-- <HBox alignItems="Center" justifyContent="Center" width="100%" height="100%">-->
287
287
  <!-- <core:HTML sanitizeContent="true" content='-->
@@ -296,7 +296,7 @@
296
296
  <!-- </HBox>-->
297
297
  <!-- </l:BlockLayoutCell>-->
298
298
  <!-- <l:BlockLayoutCell-->
299
- <!-- backgroundColorSet="ColorSet11"-->
299
+ <!-- backgroundColorSet="ColorSet10"-->
300
300
  <!-- backgroundColorShade="ShadeD">-->
301
301
  <!-- <l:VerticalLayout-->
302
302
  <!-- width="100%">-->
@@ -395,7 +395,7 @@
395
395
  <l:BlockLayout>
396
396
  <l:BlockLayoutRow>
397
397
  <l:BlockLayoutCell
398
- backgroundColorSet="ColorSet11"
398
+ backgroundColorSet="ColorSet10"
399
399
  backgroundColorShade="ShadeA">
400
400
  <l:VerticalLayout
401
401
  width="100%">
@@ -412,7 +412,7 @@
412
412
  </l:BlockLayoutCell>
413
413
 
414
414
  <l:BlockLayoutCell
415
- backgroundColorSet="ColorSet11"
415
+ backgroundColorSet="ColorSet10"
416
416
  backgroundColorShade="ShadeA">
417
417
  <HBox alignItems="Center" justifyContent="Center" width="100%" height="100%">
418
418
  <Image
@@ -446,8 +446,8 @@
446
446
  <l:BlockLayout>
447
447
  <l:BlockLayoutRow>
448
448
  <l:BlockLayoutCell
449
- backgroundColorSet="ColorSet11"
450
- backgroundColorShade="ShadeD">
449
+ backgroundColorSet="ColorSet10"
450
+ backgroundColorShade="ShadeA">
451
451
  <l:VerticalLayout
452
452
  width="100%">
453
453
  <html:div class="sapUIDisclaimerLink sapUiSmallMarginBottom">
@@ -485,7 +485,7 @@
485
485
  </l:BlockLayoutCell>
486
486
 
487
487
  <l:BlockLayoutCell
488
- backgroundColorSet="ColorSet11"
488
+ backgroundColorSet="ColorSet10"
489
489
  backgroundColorShade="ShadeB">
490
490
  <l:VerticalLayout
491
491
  width="100%">
@@ -526,8 +526,8 @@
526
526
  </l:BlockLayoutCell>
527
527
 
528
528
  <l:BlockLayoutCell
529
- backgroundColorSet="ColorSet11"
530
- backgroundColorShade="ShadeA">
529
+ backgroundColorSet="ColorSet10"
530
+ backgroundColorShade="ShadeC">
531
531
  <l:VerticalLayout
532
532
  width="100%">
533
533
  <html:div class="sapUIDisclaimerLink sapUiSmallMarginBottom">
@@ -567,8 +567,8 @@
567
567
  </l:BlockLayoutCell>
568
568
 
569
569
  <l:BlockLayoutCell
570
- backgroundColorSet="ColorSet11"
571
- backgroundColorShade="ShadeC">
570
+ backgroundColorSet="ColorSet10"
571
+ backgroundColorShade="ShadeA">
572
572
  <l:VerticalLayout
573
573
  width="100%">
574
574
  <custom:TitleLink
@@ -621,7 +621,7 @@
621
621
  <l:BlockLayoutRow>
622
622
  <l:BlockLayoutCell
623
623
  class="sapUiBlockCenteredCell communityLinkCell"
624
- backgroundColorSet="ColorSet11"
624
+ backgroundColorSet="ColorSet10"
625
625
  backgroundColorShade="ShadeA">
626
626
  <l:HorizontalLayout>
627
627
  <core:Icon
@@ -646,7 +646,7 @@
646
646
 
647
647
  <l:BlockLayoutCell
648
648
  class="sapUiBlockCenteredCell communityLinkCell"
649
- backgroundColorSet="ColorSet11"
649
+ backgroundColorSet="ColorSet10"
650
650
  backgroundColorShade="ShadeB">
651
651
  <l:HorizontalLayout>
652
652
  <Image
@@ -672,8 +672,8 @@
672
672
 
673
673
  <l:BlockLayoutCell
674
674
  class="sapUiBlockCenteredCell communityLinkCell"
675
- backgroundColorSet="ColorSet11"
676
- backgroundColorShade="ShadeC">
675
+ backgroundColorSet="ColorSet10"
676
+ backgroundColorShade="ShadeA">
677
677
  <l:HorizontalLayout>
678
678
  <Image
679
679
  src="./resources/sap/ui/documentation/sdk/images/logo_youtube.png"
@@ -695,11 +695,12 @@
695
695
  press="onDisclaimerLinkPress"/>
696
696
  </l:HorizontalLayout>
697
697
  </l:BlockLayoutCell>
698
-
698
+ </l:BlockLayoutRow>
699
+ <l:BlockLayoutRow>
699
700
  <l:BlockLayoutCell
700
- class="sapUiBlockCenteredCell communityLinkCell"
701
- backgroundColorSet="ColorSet11"
702
- backgroundColorShade="ShadeD">
701
+ class="sapUiBlockCenteredCell communityLinkCell"
702
+ backgroundColorSet="ColorSet10"
703
+ backgroundColorShade="ShadeC">
703
704
  <l:HorizontalLayout>
704
705
  <Image
705
706
  src="./resources/sap/ui/documentation/sdk/images/logo_twitter.png"
@@ -721,7 +722,30 @@
721
722
  press="onDisclaimerLinkPress"/>
722
723
  </l:HorizontalLayout>
723
724
  </l:BlockLayoutCell>
724
-
725
+ <l:BlockLayoutCell
726
+ class="sapUiBlockCenteredCell communityLinkCell"
727
+ backgroundColorSet="ColorSet10"
728
+ backgroundColorShade="ShadeB">
729
+ <l:HorizontalLayout>
730
+ <core:Icon
731
+ src="sap-icon://email"
732
+ size="2.5rem"
733
+ color="Default"/>
734
+ <custom:TitleLink
735
+ href="https://listserv.sap.com/mailman/listinfo/ui5.announce"
736
+ target="_blank"
737
+ text="{i18n>WELCOME_BLOCK_13_TITLE}"
738
+ titleStyle="H2"
739
+ wrap="false"
740
+ class="sapUiSmallMargin sapUiNoMarginBottom sapUiNoMarginEnd"/>
741
+ <Image
742
+ src="./resources/sap/ui/documentation/sdk/images/link-sap.png"
743
+ tooltip="{i18n>LEGAL_DISCLAIMER_INTERNAL_TOOLTIP}"
744
+ width="1.25rem"
745
+ class="sapUiDisclaimerCommunityLink"
746
+ press="onDisclaimerLinkPress"/>
747
+ </l:HorizontalLayout>
748
+ </l:BlockLayoutCell>
725
749
  </l:BlockLayoutRow>
726
750
  </l:BlockLayout>
727
751
  </Panel>
@@ -11,13 +11,15 @@
11
11
  <VBox class="sapUiTinyMarginTop">
12
12
  <Label text="{i18n>APP_SETTINGS_DIALOG_THEME}" design="Standard" labelFor="ThemeSelect" />
13
13
  <Select id="ThemeSelect" width="100%" class="sapUiSmallMarginBottom">
14
- <core:Item key="sap_horizon" text="Horizon"/>
14
+ <core:Item key="sap_horizon" text="Morning Horizon (Light)"/>
15
+ <core:Item key="sap_horizon_dark" text="Evening Horizon (Dark)"/>
16
+ <core:Item key="sap_horizon_hcb" text="Horizon High Contrast Black"/>
17
+ <core:Item key="sap_horizon_hcw" text="Horizon High Contrast White"/>
15
18
  <core:Item key="sap_fiori_3" text="Quartz Light"/>
16
19
  <core:Item key="sap_fiori_3_dark" text="Quartz Dark"/>
20
+ <core:Item key="sap_fiori_3_hcb" text="Quartz High Contrast Black"/>
21
+ <core:Item key="sap_fiori_3_hcw" text="Quartz High Contrast White"/>
17
22
  <core:Item key="sap_belize" text="Belize"/>
18
- <core:Item key="sap_belize_plus" text="Belize Deep"/>
19
- <core:Item key="sap_fiori_3_hcb" text="High Contrast Black"/>
20
- <core:Item key="sap_fiori_3_hcw" text="High Contrast White"/>
21
23
  </Select>
22
24
 
23
25
  <Label text="{i18n>APP_SETTINGS_DIALOG_DENSITY}" design="Standard" labelFor="CompactModeSwitch" />
@@ -4,7 +4,7 @@
4
4
  }
5
5
 
6
6
  .sapDemokitTreeItemTitle {
7
- color: #fff;
7
+ color: @sapUiListTextColor;
8
8
  }
9
9
 
10
10
  .sapDemokitTreeItemLabel,
@@ -17,18 +17,14 @@
17
17
  color: #d3d7d9;
18
18
  }
19
19
 
20
+ .sapUiTheme-sap_horizon .sapDemokitTreeItemLabel {
21
+ color: #556b82;
22
+ }
23
+
20
24
  .sapUiTheme-sap_belize_hcw .sapDemokitTreeItemLabel {
21
25
  color: #000;
22
26
  }
23
27
 
24
28
  .sapUiTheme-sap_belize_hcb .sapDemokitTreeItemLabel {
25
29
  color: #fff;
26
- }
27
-
28
- .sapUiTheme-sap_fiori_3_hcw .sapDemokitTreeItemTitle {
29
- color: #000000;
30
- }
31
-
32
- .sapUiTheme-sap_belize_hcw .sapDemokitTreeItemTitle {
33
- color: #000000;
34
30
  }
@@ -602,14 +602,14 @@ html.sap-tablet:not(.sap-desktop) {
602
602
  font-weight: bold;
603
603
  border-collapse: collapse;
604
604
  padding: 0.6em;
605
+ border: .02em solid @sapUiDemoKitTableThBorder;
605
606
  }
606
607
 
607
608
  td {
608
609
  border-collapse: collapse;
609
610
  padding: .5rem;
610
- vertical-align: top;
611
- text-align: left;
612
611
  line-height: 1.75rem;
612
+ border: .02em solid @sapUiDemoKitTableTdBorder;
613
613
 
614
614
  p:first-child {
615
615
  margin-top: 0;
@@ -627,6 +627,20 @@ html.sap-tablet:not(.sap-desktop) {
627
627
  font-size: .8125rem;
628
628
  }
629
629
  }
630
+ th,td {
631
+ &.background_blue {
632
+ border-color: @sapUiDemoKitBorderBlue;
633
+ background-color: @sapUiDemoKitBgrBlue;
634
+ }
635
+ &.background_green {
636
+ border-color: @sapUiDemoKitBorderGreen;
637
+ background-color: @sapUiDemoKitBgrGreen;
638
+ }
639
+ &.background_yellow {
640
+ border-color: @sapUiDemoKitBorderYellow;
641
+ background-color: @sapUiDemoKitBgrYellow;
642
+ }
643
+ }
630
644
  }
631
645
 
632
646
  span.figcap > h2 {
@@ -168,44 +168,53 @@
168
168
  border-bottom: 0.125rem solid #000000;
169
169
  }
170
170
 
171
- .sapUiTheme-sap_fiori_3_dark .sapUiDocLightTable .head {
172
- background-color: #232931;
173
- border-bottom: solid 1px #3a4552;
174
- }
175
-
176
- .sapUiTheme-sap_fiori_3_dark .sapUiDocLightTable .row {
177
- background-color: #29313a;
178
- border-bottom: solid 1px #3a4552;
179
- }
180
-
181
- .sapUiTheme-sap_fiori_3_dark .sapUiDocLightTable .head,
182
- .sapUiTheme-sap_fiori_3_dark .sapUiDocLightTable .row {
183
- border-left: none;
184
- border-right: none;
185
- }
186
-
187
- .sapUiTheme-sap_fiori_3_hcb .sapUiDocLightTable .head,
188
- .sapUiTheme-sap_fiori_3_hcb .sapUiDocLightTable .row {
189
- background-color: #000000;
190
- border-bottom: solid 1px #ffffff;
191
- border-left: solid 1px #ffffff;
192
- border-right: solid 1px #ffffff;
193
- }
194
-
195
- .sapUiTheme-sap_fiori_3_hcb .sapUiDocLightTable .head {
196
- border-top: 1px solid #ffffff;
197
- border-bottom: 0.125rem solid #ffffff;
198
- }
199
-
200
- .sapUiTheme-sap_fiori_3_hcw .sapUiDocLightTable .head,
201
- .sapUiTheme-sap_fiori_3_hcw .sapUiDocLightTable .row {
202
- background-color: #ffffff;
203
- border-bottom: solid 1px #000000;
204
- border-left: solid 1px #000000;
205
- border-right: solid 1px #000000;
206
- }
207
-
208
- .sapUiTheme-sap_fiori_3_hcw .sapUiDocLightTable .head {
209
- border-top: 1px solid #000000;
210
- border-bottom: 0.125rem solid #000000;
171
+ .sapUiTheme-sap_horizon_dark,
172
+ .sapUiTheme-sap_fiori_3_dark {
173
+ .sapUiDocLightTable .head {
174
+ background-color: #232931;
175
+ border-bottom: solid 1px #3a4552;
176
+ }
177
+
178
+ .sapUiDocLightTable .row {
179
+ background-color: #29313a;
180
+ border-bottom: solid 1px #3a4552;
181
+ }
182
+
183
+ .sapUiDocLightTable .head,
184
+ .sapUiDocLightTable .row {
185
+ border-left: none;
186
+ border-right: none;
187
+ }
188
+ }
189
+
190
+ .sapUiTheme-sap_horizon_hcb,
191
+ .sapUiTheme-sap_fiori_3_hcb {
192
+ .sapUiDocLightTable .head,
193
+ .sapUiDocLightTable .row {
194
+ background-color: #000000;
195
+ border-bottom: solid 1px #ffffff;
196
+ border-left: solid 1px #ffffff;
197
+ border-right: solid 1px #ffffff;
198
+ }
199
+
200
+ .sapUiDocLightTable .head {
201
+ border-top: 1px solid #ffffff;
202
+ border-bottom: 0.125rem solid #ffffff;
203
+ }
204
+ }
205
+
206
+ .sapUiTheme-sap_horizon_hcw
207
+ .sapUiTheme-sap_fiori_3_hcw {
208
+ .sapUiDocLightTable .head,
209
+ .sapUiDocLightTable .row {
210
+ background-color: #ffffff;
211
+ border-bottom: solid 1px #000000;
212
+ border-left: solid 1px #000000;
213
+ border-right: solid 1px #000000;
214
+ }
215
+
216
+ .sapUiDocLightTable .head {
217
+ border-top: 1px solid #000000;
218
+ border-bottom: 0.125rem solid #000000;
219
+ }
211
220
  }
@@ -0,0 +1,9 @@
1
+ .sapUiTheme-sap_horizon,
2
+ .sapUiTheme-sap_horizon_dark {
3
+ // necessary because of background color on the block container
4
+ .sapUiDemokit
5
+ .sapUxAPObjectPageSection:not(.sapUiDemokitEntityAbout):not(.sapUiDemokitEntitySamples)
6
+ .sapUxAPObjectPageSectionContainer .sapUxAPObjectPageSubSection .sapUxAPBlockContainer {
7
+ padding: 1rem;
8
+ }
9
+ }
@@ -1,6 +1,7 @@
1
1
  .sapUiDocumentationSearch {
2
2
  display: flex;
3
3
  justify-content: flex-end;
4
+ gap: 5px;
4
5
  }
5
6
 
6
7
  .sapUiDocumentationSearch .sapMSF {
@@ -0,0 +1,27 @@
1
+ // ===========================
2
+ // Global CSS for 'base' theme
3
+ // ===========================
4
+
5
+ // ===========================
6
+ // Semantic Theming Mapping
7
+ // ===========================
8
+
9
+ // ===========================
10
+ // Demo Kit Theming
11
+ // ===========================
12
+
13
+ @sapUiDemoKitTableTdBorder: #ccc;
14
+ @sapUiDemoKitTableThBorder: #ccc;
15
+
16
+ @sapUiDemoKitColorBlue: rgb(47,160,224);
17
+ @sapUiDemoKitColorGreen: rgb(79,184,28);
18
+ @sapUiDemoKitColorYellow: rgb(240,171,0);
19
+
20
+ @sapUiDemoKitBgrBlue: transparent;
21
+ @sapUiDemoKitBorderBlue: #ccc;
22
+
23
+ @sapUiDemoKitBgrYellow: transparent;
24
+ @sapUiDemoKitBorderYellow: #ccc;
25
+
26
+ @sapUiDemoKitBgrGreen: transparent;
27
+ @sapUiDemoKitBorderGreen: #ccc;
@@ -6,6 +6,7 @@
6
6
 
7
7
  @import "../../../../../sap/ui/core/themes/base/base.less";
8
8
  @import "../../../../../sap/ui/core/themes/base/global.less";
9
+ @import "global.less";
9
10
  @import url("../../../../../sap/ui/thirdparty/jqueryui/themes/base/jquery.ui.theme.css");
10
11
  @import url("../../../../../sap/ui/thirdparty/jqueryui/themes/base/jquery.ui.button.css");
11
12
 
@@ -14,5 +15,6 @@
14
15
  @import "Documentation.less";
15
16
  @import "DemokitTreeItem.less";
16
17
  @import "LightTable.less";
18
+ @import "ObjectPageSubSection.less";
17
19
  @import "Search.less";
18
20
  @import "TitleLink.less";
@@ -0,0 +1,19 @@
1
+ // =============================
2
+ // Global CSS for 'belize' theme
3
+ // =============================
4
+
5
+ // ===========================
6
+ // Semantic Theming Mapping
7
+ // ===========================
8
+
9
+ // ===========================
10
+ // Demo Kit Theming
11
+ // ===========================
12
+
13
+
14
+ @sapUiDemoKitBorderBlue: fade(@sapUiDemoKitColorBlue, 50);
15
+ @sapUiDemoKitBgrBlue: fade(@sapUiDemoKitColorBlue, 5);
16
+ @sapUiDemoKitBorderYellow: fade(@sapUiDemoKitColorYellow, 50);
17
+ @sapUiDemoKitBgrYellow: fade(@sapUiDemoKitColorYellow, 5);
18
+ @sapUiDemoKitBorderGreen: fade(@sapUiDemoKitColorGreen, 50);
19
+ @sapUiDemoKitBgrGreen: fade(@sapUiDemoKitColorGreen, 5);
@@ -7,3 +7,4 @@
7
7
  @import "../base/library.source.less";
8
8
  @import "../../../../../sap/ui/core/themes/sap_belize/base.less";
9
9
  @import "../../../../../sap/ui/core/themes/sap_belize/global.less";
10
+ @import "global.less";
@@ -0,0 +1,18 @@
1
+ // =============================
2
+ // Global CSS for 'Quartz' theme
3
+ // =============================
4
+
5
+ // ===========================
6
+ // Semantic Theming Mapping
7
+ // ===========================
8
+
9
+ // ===========================
10
+ // Demo Kit Theming
11
+ // ===========================
12
+
13
+ @sapUiDemoKitBorderBlue: fade(@sapUiDemoKitColorBlue, 50);
14
+ @sapUiDemoKitBgrBlue: fade(@sapUiDemoKitColorBlue, 5);
15
+ @sapUiDemoKitBorderYellow: fade(@sapUiDemoKitColorYellow, 50);
16
+ @sapUiDemoKitBgrYellow: fade(@sapUiDemoKitColorYellow, 5);
17
+ @sapUiDemoKitBorderGreen: fade(@sapUiDemoKitColorGreen, 50);
18
+ @sapUiDemoKitBgrGreen: fade(@sapUiDemoKitColorGreen, 5);
@@ -6,4 +6,5 @@
6
6
 
7
7
  @import "../base/library.source.less";
8
8
  @import "../../../../../sap/ui/core/themes/sap_fiori_3/base.less";
9
- @import "../../../../../sap/ui/core/themes/sap_fiori_3/global.less";
9
+ @import "../../../../../sap/ui/core/themes/sap_fiori_3/global.less";
10
+ @import "global.less";
@@ -0,0 +1,3 @@
1
+ .sapMLnk:not(.sapMLnkDsbl) {
2
+ text-shadow: none;
3
+ }
@@ -0,0 +1,3 @@
1
+ .sapUiDocumentationSearch .sapMSFF {
2
+ border: 1px solid @sapUiFieldFocusBorderColor;
3
+ }
@@ -0,0 +1,5 @@
1
+ .sapUiSizeCozy, .sapUiSizeCompact, .sapUiSizeCondensed {
2
+ .sapMMenuBtn.sapMMenuBtnSplit .sapMSBActive:not(.sapMBtnDisabled) > .sapMBtnInner .sapUiIcon {
3
+ line-height: 2.75rem;
4
+ }
5
+ }
@@ -0,0 +1,18 @@
1
+ // ==============================
2
+ // Global CSS for 'Horizon' theme
3
+ // ==============================
4
+
5
+ // ===========================
6
+ // Semantic Theming Mapping
7
+ // ===========================
8
+
9
+ // ===========================
10
+ // Demo Kit Theming
11
+ // ===========================
12
+
13
+ @sapUiDemoKitBorderBlue: fade(@sapUiDemoKitColorBlue, 50);
14
+ @sapUiDemoKitBgrBlue: fade(@sapUiDemoKitColorBlue, 5);
15
+ @sapUiDemoKitBorderYellow: fade(@sapUiDemoKitColorYellow, 50);
16
+ @sapUiDemoKitBgrYellow: fade(@sapUiDemoKitColorYellow, 5);
17
+ @sapUiDemoKitBorderGreen: fade(@sapUiDemoKitColorGreen, 50);
18
+ @sapUiDemoKitBgrGreen: fade(@sapUiDemoKitColorGreen, 5);
@@ -6,4 +6,9 @@
6
6
 
7
7
  @import "../base/library.source.less";
8
8
  @import "../../../../../sap/ui/core/themes/sap_horizon/base.less";
9
- @import "../../../../../sap/ui/core/themes/sap_horizon/global.less";
9
+ @import "../../../../../sap/ui/core/themes/sap_horizon/global.less";
10
+ @import "global.less";
11
+
12
+ @import "./Link.less";
13
+ @import "./Search.less";
14
+ @import "./SplitButton.less";
@@ -0,0 +1,17 @@
1
+ #d4h5-main-container,
2
+ .faqContent {
3
+ .note,
4
+ pre.codeblock,
5
+ blockquote,
6
+ div.syntax {
7
+ background-color: #1d2d3e;
8
+ }
9
+
10
+ .hljs-tag {
11
+ color: #00abff;
12
+ }
13
+
14
+ pre.codeblock .emphasis {
15
+ background-color: #24435e;
16
+ }
17
+ }
@@ -0,0 +1,3 @@
1
+ .sapMLnk:not(.sapMLnkDsbl) {
2
+ text-shadow: none;
3
+ }
@@ -0,0 +1,3 @@
1
+ .sapUiDocumentationSearch .sapMSFF {
2
+ border: 1px solid @sapUiFieldFocusBorderColor;
3
+ }
@@ -0,0 +1,5 @@
1
+ .sapUiSizeCozy, .sapUiSizeCompact, .sapUiSizeCondensed {
2
+ .sapMMenuBtn.sapMMenuBtnSplit .sapMSBActive:not(.sapMBtnDisabled) > .sapMBtnInner .sapUiIcon {
3
+ line-height: 2.75rem;
4
+ }
5
+ }
@@ -6,4 +6,9 @@
6
6
 
7
7
  @import "../base/library.source.less";
8
8
  @import "../../../../../sap/ui/core/themes/sap_horizon_dark/base.less";
9
- @import "../../../../../sap/ui/core/themes/sap_horizon_dark/global.less";
9
+ @import "../../../../../sap/ui/core/themes/sap_horizon_dark/global.less";
10
+
11
+ @import "./Documentation.less";
12
+ @import "./Link.less";
13
+ @import "./Search.less";
14
+ @import "./SplitButton.less";