@openui5/sap.ui.core 1.98.0 → 1.101.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 (418) hide show
  1. package/.eslintrc.json +33 -1
  2. package/THIRDPARTY.txt +6 -6
  3. package/package.json +1 -1
  4. package/src/jquery.sap.global.js +6 -3
  5. package/src/jquery.sap.mobile.js +29 -11
  6. package/src/jquery.sap.properties.js +1 -1
  7. package/src/jquery.sap.resources.js +1 -1
  8. package/src/jquery.sap.script.js +1 -1
  9. package/src/jquery.sap.storage.js +3 -3
  10. package/src/sap/base/Log.js +1 -1
  11. package/src/sap/base/strings/whitespaceReplacer.js +1 -1
  12. package/src/sap/base/util/LoaderExtensions.js +1 -10
  13. package/src/sap/base/util/UriParameters.js +2 -2
  14. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  15. package/src/sap/base/util/restricted/_castArray.js +1 -1
  16. package/src/sap/base/util/restricted/_compact.js +1 -1
  17. package/src/sap/base/util/restricted/_curry.js +1 -1
  18. package/src/sap/base/util/restricted/_debounce.js +1 -1
  19. package/src/sap/base/util/restricted/_difference.js +1 -1
  20. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  21. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  22. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  23. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  24. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  25. package/src/sap/base/util/restricted/_flatten.js +1 -1
  26. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  27. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  28. package/src/sap/base/util/restricted/_intersection.js +1 -1
  29. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  30. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  31. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  32. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  33. package/src/sap/base/util/restricted/_isNil.js +1 -1
  34. package/src/sap/base/util/restricted/_max.js +1 -1
  35. package/src/sap/base/util/restricted/_merge.js +1 -1
  36. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  37. package/src/sap/base/util/restricted/_min.js +1 -1
  38. package/src/sap/base/util/restricted/_omit.js +1 -1
  39. package/src/sap/base/util/restricted/_pick.js +1 -1
  40. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  41. package/src/sap/base/util/restricted/_throttle.js +1 -1
  42. package/src/sap/base/util/restricted/_toArray.js +1 -1
  43. package/src/sap/base/util/restricted/_union.js +1 -1
  44. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  45. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  46. package/src/sap/base/util/restricted/_uniq.js +1 -1
  47. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  48. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  49. package/src/sap/base/util/restricted/_without.js +1 -1
  50. package/src/sap/base/util/restricted/_xor.js +1 -1
  51. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  52. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  53. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  54. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  55. package/src/sap/ui/Device.js +3 -3
  56. package/src/sap/ui/Global.js +4 -4
  57. package/src/sap/ui/VersionInfo.js +13 -10
  58. package/src/sap/ui/base/BindingParser.js +34 -7
  59. package/src/sap/ui/base/Event.js +1 -1
  60. package/src/sap/ui/base/EventProvider.js +2 -2
  61. package/src/sap/ui/base/ExpressionParser.js +1 -1
  62. package/src/sap/ui/base/Interface.js +1 -1
  63. package/src/sap/ui/base/ManagedObject.js +32 -22
  64. package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
  65. package/src/sap/ui/base/ManagedObjectObserver.js +2 -0
  66. package/src/sap/ui/base/ManagedObjectRegistry.js +10 -5
  67. package/src/sap/ui/base/Metadata.js +1 -1
  68. package/src/sap/ui/base/Object.js +1 -1
  69. package/src/sap/ui/base/ObjectPool.js +1 -1
  70. package/src/sap/ui/core/.library +2 -2
  71. package/src/sap/ui/core/BusyIndicator.js +1 -1
  72. package/src/sap/ui/core/Component.js +24 -20
  73. package/src/sap/ui/core/ComponentContainer.js +1 -1
  74. package/src/sap/ui/core/ComponentMetadata.js +2 -2
  75. package/src/sap/ui/core/ComponentSupport.js +1 -1
  76. package/src/sap/ui/core/Configuration.js +80 -11
  77. package/src/sap/ui/core/Control.js +2 -1
  78. package/src/sap/ui/core/Core.js +29 -12
  79. package/src/sap/ui/core/CustomData.js +1 -1
  80. package/src/sap/ui/core/DeclarativeSupport.js +1 -1
  81. package/src/sap/ui/core/Element.js +4 -7
  82. package/src/sap/ui/core/ElementMetadata.js +1 -1
  83. package/src/sap/ui/core/EnabledPropagator.js +1 -1
  84. package/src/sap/ui/core/EventBus.js +1 -1
  85. package/src/sap/ui/core/ExtensionPoint.js +6 -1
  86. package/src/sap/ui/core/FocusHandler.js +1 -1
  87. package/src/sap/ui/core/Fragment.js +1 -1
  88. package/src/sap/ui/core/HTML.js +1 -1
  89. package/src/sap/ui/core/HTMLRenderer.js +1 -1
  90. package/src/sap/ui/core/History.js +1 -1
  91. package/src/sap/ui/core/Icon.js +17 -3
  92. package/src/sap/ui/core/IconRenderer.js +1 -1
  93. package/src/sap/ui/core/IndicationColorSupport.js +1 -1
  94. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  95. package/src/sap/ui/core/InvisibleMessage.js +1 -1
  96. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  97. package/src/sap/ui/core/InvisibleText.js +1 -1
  98. package/src/sap/ui/core/Item.js +1 -1
  99. package/src/sap/ui/core/LabelEnablement.js +9 -2
  100. package/src/sap/ui/core/LayoutData.js +1 -1
  101. package/src/sap/ui/core/ListItem.js +1 -1
  102. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  103. package/src/sap/ui/core/LocalBusyIndicatorRenderer.js +2 -2
  104. package/src/sap/ui/core/Locale.js +1 -1
  105. package/src/sap/ui/core/LocaleData.js +73 -6
  106. package/src/sap/ui/core/Manifest.js +5 -3
  107. package/src/sap/ui/core/Message.js +1 -1
  108. package/src/sap/ui/core/Patcher.js +6 -4
  109. package/src/sap/ui/core/Popup.js +11 -8
  110. package/src/sap/ui/core/RenderManager.js +1 -1
  111. package/src/sap/ui/core/Renderer.js +1 -1
  112. package/src/sap/ui/core/ResizeHandler.js +1 -1
  113. package/src/sap/ui/core/ScrollBar.js +1 -1
  114. package/src/sap/ui/core/ScrollBarRenderer.js +1 -1
  115. package/src/sap/ui/core/SeparatorItem.js +1 -1
  116. package/src/sap/ui/core/Title.js +1 -1
  117. package/src/sap/ui/core/TooltipBase.js +1 -1
  118. package/src/sap/ui/core/UIArea.js +1 -1
  119. package/src/sap/ui/core/UIComponent.js +1 -1
  120. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  121. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  122. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  123. package/src/sap/ui/core/XMLComposite.js +1 -1
  124. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  125. package/src/sap/ui/core/XMLTemplateProcessor.js +27 -26
  126. package/src/sap/ui/core/_IconRegistry.js +13 -3
  127. package/src/sap/ui/core/cache/CacheManager.js +1 -1
  128. package/src/sap/ui/core/cache/LRUPersistentCache.js +2 -1
  129. package/src/sap/ui/core/cldr/en_AU.json +1 -1
  130. package/src/sap/ui/core/date/Buddhist.js +3 -3
  131. package/src/sap/ui/core/date/Japanese.js +4 -4
  132. package/src/sap/ui/core/date/UniversalDate.js +10 -0
  133. package/src/sap/ui/core/date/UniversalDateUtils.js +49 -49
  134. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  135. package/src/sap/ui/core/delegate/ScrollEnablement.js +9 -6
  136. package/src/sap/ui/core/dnd/DragAndDrop.js +27 -22
  137. package/src/sap/ui/core/dnd/DragDropBase.js +1 -2
  138. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  139. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  140. package/src/sap/ui/core/dnd/DropInfo.js +3 -3
  141. package/src/sap/ui/core/format/DateFormat.js +670 -199
  142. package/src/sap/ui/core/format/DateFormatTimezoneDisplay.js +47 -0
  143. package/src/sap/ui/core/format/ListFormat.js +2 -2
  144. package/src/sap/ui/core/format/NumberFormat.js +502 -216
  145. package/src/sap/ui/core/format/TimezoneUtil.js +248 -0
  146. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  147. package/src/sap/ui/core/library.js +220 -189
  148. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  149. package/src/sap/ui/core/message/Message.js +1 -1
  150. package/src/sap/ui/core/message/MessageManager.js +1 -1
  151. package/src/sap/ui/core/message/MessageParser.js +1 -1
  152. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  153. package/src/sap/ui/core/messagebundle.properties +2 -0
  154. package/src/sap/ui/core/messagebundle_ar.properties +1 -0
  155. package/src/sap/ui/core/messagebundle_bg.properties +6 -5
  156. package/src/sap/ui/core/messagebundle_ca.properties +1 -0
  157. package/src/sap/ui/core/messagebundle_cs.properties +1 -0
  158. package/src/sap/ui/core/messagebundle_cy.properties +1 -0
  159. package/src/sap/ui/core/messagebundle_da.properties +1 -0
  160. package/src/sap/ui/core/messagebundle_de.properties +2 -1
  161. package/src/sap/ui/core/messagebundle_el.properties +1 -0
  162. package/src/sap/ui/core/messagebundle_en.properties +1 -0
  163. package/src/sap/ui/core/messagebundle_en_GB.properties +1 -0
  164. package/src/sap/ui/core/messagebundle_en_US_sappsd.properties +1 -0
  165. package/src/sap/ui/core/messagebundle_en_US_saprigi.properties +1 -0
  166. package/src/sap/ui/core/messagebundle_en_US_saptrc.properties +1 -0
  167. package/src/sap/ui/core/messagebundle_es.properties +1 -0
  168. package/src/sap/ui/core/messagebundle_es_MX.properties +1 -0
  169. package/src/sap/ui/core/messagebundle_et.properties +1 -0
  170. package/src/sap/ui/core/messagebundle_fi.properties +1 -0
  171. package/src/sap/ui/core/messagebundle_fr.properties +1 -0
  172. package/src/sap/ui/core/messagebundle_fr_CA.properties +1 -0
  173. package/src/sap/ui/core/messagebundle_hi.properties +1 -0
  174. package/src/sap/ui/core/messagebundle_hr.properties +1 -0
  175. package/src/sap/ui/core/messagebundle_hu.properties +1 -0
  176. package/src/sap/ui/core/messagebundle_id.properties +3 -2
  177. package/src/sap/ui/core/messagebundle_it.properties +1 -0
  178. package/src/sap/ui/core/messagebundle_iw.properties +1 -0
  179. package/src/sap/ui/core/messagebundle_ja.properties +1 -0
  180. package/src/sap/ui/core/messagebundle_kk.properties +1 -0
  181. package/src/sap/ui/core/messagebundle_ko.properties +2 -1
  182. package/src/sap/ui/core/messagebundle_lt.properties +1 -0
  183. package/src/sap/ui/core/messagebundle_lv.properties +2 -1
  184. package/src/sap/ui/core/messagebundle_ms.properties +1 -0
  185. package/src/sap/ui/core/messagebundle_nl.properties +1 -0
  186. package/src/sap/ui/core/messagebundle_no.properties +1 -0
  187. package/src/sap/ui/core/messagebundle_pl.properties +1 -0
  188. package/src/sap/ui/core/messagebundle_pt.properties +1 -0
  189. package/src/sap/ui/core/messagebundle_pt_PT.properties +1 -0
  190. package/src/sap/ui/core/messagebundle_ro.properties +1 -0
  191. package/src/sap/ui/core/messagebundle_ru.properties +1 -0
  192. package/src/sap/ui/core/messagebundle_sh.properties +1 -0
  193. package/src/sap/ui/core/messagebundle_sk.properties +1 -0
  194. package/src/sap/ui/core/messagebundle_sl.properties +1 -0
  195. package/src/sap/ui/core/messagebundle_sv.properties +1 -0
  196. package/src/sap/ui/core/messagebundle_th.properties +1 -0
  197. package/src/sap/ui/core/messagebundle_tr.properties +1 -0
  198. package/src/sap/ui/core/messagebundle_uk.properties +1 -0
  199. package/src/sap/ui/core/messagebundle_vi.properties +1 -0
  200. package/src/sap/ui/core/messagebundle_zh_CN.properties +1 -0
  201. package/src/sap/ui/core/messagebundle_zh_TW.properties +1 -0
  202. package/src/sap/ui/core/mvc/Controller.js +1 -1
  203. package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +1 -1
  204. package/src/sap/ui/core/mvc/HTMLView.js +1 -1
  205. package/src/sap/ui/core/mvc/HTMLViewRenderer.js +1 -1
  206. package/src/sap/ui/core/mvc/JSONView.js +1 -1
  207. package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -1
  208. package/src/sap/ui/core/mvc/JSView.js +1 -1
  209. package/src/sap/ui/core/mvc/JSViewRenderer.js +1 -1
  210. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  211. package/src/sap/ui/core/mvc/TemplateViewRenderer.js +1 -1
  212. package/src/sap/ui/core/mvc/View.js +1 -1
  213. package/src/sap/ui/core/mvc/ViewRenderer.js +1 -1
  214. package/src/sap/ui/core/mvc/XMLView.js +16 -4
  215. package/src/sap/ui/core/mvc/XMLViewRenderer.js +5 -2
  216. package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
  217. package/src/sap/ui/core/plugin/LessSupport.js +1 -1
  218. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  219. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  220. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  221. package/src/sap/ui/core/routing/Router.js +1 -1
  222. package/src/sap/ui/core/rules/App.support.js +6 -1
  223. package/src/sap/ui/core/rules/Misc.support.js +8 -3
  224. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  225. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  226. package/src/sap/ui/core/service/Service.js +1 -1
  227. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  228. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  229. package/src/sap/ui/core/support/Plugin.js +29 -1
  230. package/src/sap/ui/core/support/Support.js +3 -3
  231. package/src/sap/ui/core/support/controls/InteractionSlider.js +395 -407
  232. package/src/sap/ui/core/support/plugins/Breakpoint.js +5 -5
  233. package/src/sap/ui/core/support/plugins/ControlTree.js +434 -347
  234. package/src/sap/ui/core/support/plugins/Debugging.js +153 -129
  235. package/src/sap/ui/core/support/plugins/Interaction.js +71 -85
  236. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  237. package/src/sap/ui/core/support/plugins/Performance.js +10 -13
  238. package/src/sap/ui/core/support/plugins/Selector.js +1 -1
  239. package/src/sap/ui/core/support/plugins/TechInfo.js +5 -3
  240. package/src/sap/ui/core/support/plugins/Trace.js +7 -7
  241. package/src/sap/ui/core/support/plugins/ViewInfo.js +84 -22
  242. package/src/sap/ui/core/support/support.css +23 -23
  243. package/src/sap/ui/core/support/support.html +4 -6
  244. package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +1 -1
  245. package/src/sap/ui/core/themes/base/CommandShortcutHints.less +1 -1
  246. package/src/sap/ui/core/themes/base/DragAndDrop.less +3 -3
  247. package/src/sap/ui/core/themes/base/base.less +1524 -54
  248. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  249. package/src/sap/ui/core/themes/base/global.less +169 -13
  250. package/src/sap/ui/core/themes/base/shared.less +1 -0
  251. package/src/sap/ui/core/themes/sap_hcb/global.less +164 -7
  252. package/src/sap/ui/core/theming/Parameters.js +1 -1
  253. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  254. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  255. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  256. package/src/sap/ui/core/tmpl/Template.js +1 -1
  257. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  258. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  259. package/src/sap/ui/core/util/Export.js +1 -1
  260. package/src/sap/ui/core/util/ExportCell.js +1 -1
  261. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  262. package/src/sap/ui/core/util/ExportRow.js +1 -1
  263. package/src/sap/ui/core/util/ExportType.js +1 -1
  264. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  265. package/src/sap/ui/core/util/File.js +1 -1
  266. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  267. package/src/sap/ui/core/util/MockServer.js +20 -17
  268. package/src/sap/ui/core/util/PasteHelper.js +5 -5
  269. package/src/sap/ui/core/util/XMLPreprocessor.js +17 -4
  270. package/src/sap/ui/core/util/reflection/XmlTreeModifier.js +1 -1
  271. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  272. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  273. package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
  274. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  275. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  276. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  277. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  278. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  279. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  280. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  281. package/src/sap/ui/debug/ControlTree.js +1 -1
  282. package/src/sap/ui/debug/DebugEnv.js +1 -1
  283. package/src/sap/ui/debug/LogViewer.js +2 -2
  284. package/src/sap/ui/debug/PropertyList.js +1 -1
  285. package/src/sap/ui/dom/includeStylesheet.js +8 -3
  286. package/src/sap/ui/events/jquery/EventExtension.js +1 -1
  287. package/src/sap/ui/model/Binding.js +4 -3
  288. package/src/sap/ui/model/ClientModel.js +1 -1
  289. package/src/sap/ui/model/ClientTreeBinding.js +1 -1
  290. package/src/sap/ui/model/CompositeBinding.js +4 -1
  291. package/src/sap/ui/model/CompositeDataState.js +1 -1
  292. package/src/sap/ui/model/CompositeType.js +13 -1
  293. package/src/sap/ui/model/ContextBinding.js +1 -1
  294. package/src/sap/ui/model/DataState.js +1 -1
  295. package/src/sap/ui/model/MetaModel.js +1 -2
  296. package/src/sap/ui/model/Model.js +10 -7
  297. package/src/sap/ui/model/SelectionModel.js +1 -1
  298. package/src/sap/ui/model/SimpleType.js +1 -1
  299. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  300. package/src/sap/ui/model/Type.js +1 -1
  301. package/src/sap/ui/model/_Helper.js +24 -0
  302. package/src/sap/ui/model/analytics/AnalyticalBinding.js +30 -15
  303. package/src/sap/ui/model/analytics/ODataModelAdapter.js +2 -1
  304. package/src/sap/ui/model/base/ManagedObjectModel.js +9 -7
  305. package/src/sap/ui/model/json/JSONListBinding.js +1 -1
  306. package/src/sap/ui/model/json/JSONModel.js +15 -8
  307. package/src/sap/ui/model/json/JSONPropertyBinding.js +1 -1
  308. package/src/sap/ui/model/message/MessageListBinding.js +1 -1
  309. package/src/sap/ui/model/message/MessageModel.js +1 -1
  310. package/src/sap/ui/model/message/MessagePropertyBinding.js +1 -1
  311. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  312. package/src/sap/ui/model/odata/ODataListBinding.js +1 -1
  313. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  314. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  315. package/src/sap/ui/model/odata/ODataMetadata.js +3 -3
  316. package/src/sap/ui/model/odata/ODataModel.js +2 -2
  317. package/src/sap/ui/model/odata/ODataPropertyBinding.js +3 -1
  318. package/src/sap/ui/model/odata/ODataTreeBinding.js +1 -1
  319. package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +5 -4
  320. package/src/sap/ui/model/odata/ODataUtils.js +7 -9
  321. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  322. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  323. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  324. package/src/sap/ui/model/odata/type/Date.js +1 -1
  325. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  326. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  327. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  328. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +349 -0
  329. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  330. package/src/sap/ui/model/odata/type/Double.js +1 -1
  331. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  332. package/src/sap/ui/model/odata/type/Int.js +1 -1
  333. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  334. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  335. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  336. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  337. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  338. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  339. package/src/sap/ui/model/odata/type/Single.js +1 -1
  340. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  341. package/src/sap/ui/model/odata/type/String.js +1 -1
  342. package/src/sap/ui/model/odata/type/Time.js +1 -1
  343. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  344. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  345. package/src/sap/ui/model/odata/v2/Context.js +69 -5
  346. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  347. package/src/sap/ui/model/odata/v2/ODataContextBinding.js +8 -4
  348. package/src/sap/ui/model/odata/v2/ODataListBinding.js +215 -78
  349. package/src/sap/ui/model/odata/v2/ODataModel.js +283 -80
  350. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +6 -4
  351. package/src/sap/ui/model/odata/v4/AnnotationHelper.js +16 -17
  352. package/src/sap/ui/model/odata/v4/Context.js +117 -76
  353. package/src/sap/ui/model/odata/v4/ODataBinding.js +62 -37
  354. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +157 -169
  355. package/src/sap/ui/model/odata/v4/ODataListBinding.js +451 -262
  356. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +91 -63
  357. package/src/sap/ui/model/odata/v4/ODataModel.js +478 -250
  358. package/src/sap/ui/model/odata/v4/ODataParentBinding.js +74 -83
  359. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +65 -61
  360. package/src/sap/ui/model/odata/v4/_AnnotationHelperExpression.js +61 -6
  361. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +15 -0
  362. package/src/sap/ui/model/odata/v4/lib/_Cache.js +336 -86
  363. package/src/sap/ui/model/odata/v4/lib/_ConcatHelper.js +5 -13
  364. package/src/sap/ui/model/odata/v4/lib/_GroupLock.js +16 -0
  365. package/src/sap/ui/model/odata/v4/lib/_Helper.js +13 -6
  366. package/src/sap/ui/model/odata/v4/lib/_MetadataConverter.js +2 -2
  367. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +233 -26
  368. package/src/sap/ui/model/odata/v4/lib/_V2Requestor.js +1 -1
  369. package/src/sap/ui/model/resource/ResourceModel.js +1 -1
  370. package/src/sap/ui/model/resource/ResourcePropertyBinding.js +1 -1
  371. package/src/sap/ui/model/type/Boolean.js +1 -1
  372. package/src/sap/ui/model/type/Currency.js +1 -1
  373. package/src/sap/ui/model/type/Date.js +1 -1
  374. package/src/sap/ui/model/type/DateInterval.js +1 -1
  375. package/src/sap/ui/model/type/DateTime.js +1 -1
  376. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  377. package/src/sap/ui/model/type/FileSize.js +1 -1
  378. package/src/sap/ui/model/type/Float.js +1 -1
  379. package/src/sap/ui/model/type/Integer.js +1 -1
  380. package/src/sap/ui/model/type/String.js +1 -1
  381. package/src/sap/ui/model/type/Time.js +1 -1
  382. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  383. package/src/sap/ui/model/type/Unit.js +1 -1
  384. package/src/sap/ui/model/xml/XMLListBinding.js +1 -1
  385. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  386. package/src/sap/ui/model/xml/XMLPropertyBinding.js +1 -1
  387. package/src/sap/ui/performance/trace/FESR.js +1 -1
  388. package/src/sap/ui/performance/trace/FESRHelper.js +72 -0
  389. package/src/sap/ui/performance/trace/Interaction.js +6 -2
  390. package/src/sap/ui/performance/trace/Passport.js +3 -3
  391. package/src/sap/ui/qunit/qunit-2-css.js +4 -4
  392. package/src/sap/ui/qunit/qunit-css.js +4 -4
  393. package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
  394. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  395. package/src/sap/ui/test/BranchTracking.js +1 -0
  396. package/src/sap/ui/test/Opa5.js +10 -6
  397. package/src/sap/ui/test/OpaBuilder.js +7 -7
  398. package/src/sap/ui/test/TestUtils.js +11 -0
  399. package/src/sap/ui/test/_UsageReport.js +1 -1
  400. package/src/sap/ui/test/generic/GenericTestCollection.js +176 -0
  401. package/src/sap/ui/test/generic/TestBase.js +151 -0
  402. package/src/sap/ui/test/generic/Utils.js +284 -0
  403. package/src/sap/ui/test/gherkin/opa5TestHarness.js +14 -5
  404. package/src/sap/ui/test/opaQunit.js +11 -10
  405. package/src/sap/ui/test/selectors/_ControlSelectorGenerator.js +9 -8
  406. package/src/sap/ui/test/selectors/_ControlSelectorValidator.js +1 -1
  407. package/src/sap/ui/test/starter/_setupAndStart.js +4 -0
  408. package/src/sap/ui/thirdparty/IPv6.js +1 -1
  409. package/src/sap/ui/thirdparty/SecondLevelDomains.js +1 -1
  410. package/src/sap/ui/thirdparty/URI.js +7 -3
  411. package/src/sap/ui/thirdparty/URITemplate.js +1 -1
  412. package/src/sap/ui/thirdparty/jqueryui/jquery-ui-datepicker.js +143 -3
  413. package/src/sap/ui/thirdparty/jqueryui/jquery-ui-position.js +8 -1
  414. package/src/sap/ui/thirdparty/jszip.js +17 -7
  415. package/src/sap/ui/thirdparty/mobify-carousel.js +1 -1
  416. package/src/sap/ui/util/Mobile.js +17 -0
  417. package/src/sap/ui/util/Storage.js +1 -1
  418. package/src/ui5loader.js +9 -5
@@ -1,11 +1,11 @@
1
1
  // /**
2
- // * Copyright (c) 2012-2020 SAP SE or an SAP affiliate company and Theming Base Content contributors. Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
3
- // * Theming Engine 1.51.0
4
- // * data:{"sModified":"2021-10-12T13:35:50Z"}
2
+ // * Copyright (c) 2012-2020 SAP SE or an SAP affiliate company. All rights reserved.
3
+ // * Theming Engine 1.69.2
4
+ // * data:{"sModified":"2022-04-05T12:29:16Z"}
5
5
  // */
6
6
 
7
7
 
8
- /******************* FILE /Base/baseLib/baseTheme/base.less (Version 11.1.34) *******************/
8
+ /******************* FILE /Base/baseLib/baseTheme/base.less (Version 11.1.38) *******************/
9
9
 
10
10
 
11
11
  // [Label "Brand Color"]
@@ -314,6 +314,18 @@
314
314
  // [Tags "Base", "Content", "Color", "Font", "Protected"]
315
315
  @sapContent_MarkerTextColor: @sapDefault_Color;
316
316
 
317
+ // [Label "Measure Indicator Color"]
318
+ // [Description "The color of measuring indicators."]
319
+ // [TranslationKey "sapContent_MeasIndClr"]
320
+ // [Tags "Base", "Content", "Color", "Protected"]
321
+ @sapContent_MeasureIndicatorColor: @sapDefault_Color;
322
+
323
+ // [Label "Selected Measure Indicator Color"]
324
+ // [Description "The selected state color of measuring indicators."]
325
+ // [TranslationKey "sapContent_SelMeasIndClr"]
326
+ // [Tags "Base", "Content", "Color", "Protected"]
327
+ @sapContent_Selected_MeasureIndicatorColor: @sapDefault_Color;
328
+
317
329
  // [Label "Placeholder Loading Background Color"]
318
330
  // [Description "The background color of placeholder loading."]
319
331
  // [TranslationKey "sapContent_PlaceholderloadBg"]
@@ -348,6 +360,11 @@
348
360
  // [Tags "Base", "Content", "Color", "Protected"]
349
361
  @sapContent_UnratedColor: @sapDefault_Color;
350
362
 
363
+ // [Label "Busy Color"]
364
+ // [Description "Color of the busy indicator."]
365
+ // [Tags "Base", "Content", "Color", "Protected"]
366
+ @sapContent_BusyColor: @sapDefault_Color;
367
+
351
368
  // [Label "Focus Color"]
352
369
  // [Description "The color of the focus."]
353
370
  // [Tags "Base", "Content", "Color", "Protected"]
@@ -554,6 +571,11 @@
554
571
  // [Tags "Base", "Content", "Color", "Protected"]
555
572
  @sapContent_Selected_ForegroundColor: @sapDefault_Color;
556
573
 
574
+ // [Label "Forced Color Adjust"]
575
+ // [Description "Decides wether OS high contrast settings should be respected (auto) or ignored (none)."]
576
+ // [Tags "Base", "Content", "Protected"]
577
+ @sapContent_ForcedColorAdjust: none;
578
+
557
579
  // [Label "Illustrative Color 1"]
558
580
  // [Description "The color of illustrated content."]
559
581
  // [Tags "Base", "Content", "Color", "Protected"]
@@ -664,6 +686,16 @@
664
686
  // [Tags "Base", "Content", "Font", "Protected"]
665
687
  @sapFontBoldFamily: @sapDefault_Font;
666
688
 
689
+ // [Label "Semi Bold Font Family"]
690
+ // [Description "The preferred semi bold font family."]
691
+ // [Tags "Base", "Content", "Font", "Protected"]
692
+ @sapFontSemiboldFamily: @sapDefault_Font;
693
+
694
+ // [Label "Semi Bold Duplex Font Family"]
695
+ // [Description "The preferred semi bold duplex font family (with the same widths as @sapFontFamily)."]
696
+ // [Tags "Base", "Content", "Font", "Protected"]
697
+ @sapFontSemiboldDuplexFamily: @sapDefault_Font;
698
+
667
699
  // [Label "Black Font Family"]
668
700
  // [Description "The preferred black font family of headers."]
669
701
  // [Tags "Base", "Content", "Font", "Protected"]
@@ -906,6 +938,156 @@
906
938
  // [Tags "Base", "Shell", "Color", "Protected"]
907
939
  @sapShell_NeutralColor: @sapDefault_Color;
908
940
 
941
+ // [Label "Avatar 1 Background Color"]
942
+ // [Description "The background color of type-1 avatars."]
943
+ // [Tags "Base", "Avatar", "Color", "Protected"]
944
+ @sapAvatar_1_Background: @sapDefault_Color;
945
+
946
+ // [Label "Avatar 1 Border Color"]
947
+ // [Description "The border color of type-1 avatars."]
948
+ // [Tags "Base", "Avatar", "Color", "Protected"]
949
+ @sapAvatar_1_BorderColor: @sapDefault_Color;
950
+
951
+ // [Label "Avatar 1 Text Color"]
952
+ // [Description "The text color of type-1 avatars."]
953
+ // [Tags "Base", "Avatar", "Color", "Protected"]
954
+ @sapAvatar_1_TextColor: @sapDefault_Color;
955
+
956
+ // [Label "Avatar 2 Background Color"]
957
+ // [Description "The background color of type-2 avatars."]
958
+ // [Tags "Base", "Avatar", "Color", "Protected"]
959
+ @sapAvatar_2_Background: @sapDefault_Color;
960
+
961
+ // [Label "Avatar 2 Border Color"]
962
+ // [Description "The border color of type-2 avatars."]
963
+ // [Tags "Base", "Avatar", "Color", "Protected"]
964
+ @sapAvatar_2_BorderColor: @sapDefault_Color;
965
+
966
+ // [Label "Avatar 2 Text Color"]
967
+ // [Description "The text color of type-2 avatars."]
968
+ // [Tags "Base", "Avatar", "Color", "Protected"]
969
+ @sapAvatar_2_TextColor: @sapDefault_Color;
970
+
971
+ // [Label "Avatar 3 Background Color"]
972
+ // [Description "The background color of type-3 avatars."]
973
+ // [Tags "Base", "Avatar", "Color", "Protected"]
974
+ @sapAvatar_3_Background: @sapDefault_Color;
975
+
976
+ // [Label "Avatar 3 Border Color"]
977
+ // [Description "The border color of type-3 avatars."]
978
+ // [Tags "Base", "Avatar", "Color", "Protected"]
979
+ @sapAvatar_3_BorderColor: @sapDefault_Color;
980
+
981
+ // [Label "Avatar 3 Text Color"]
982
+ // [Description "The text color of type-3 avatars."]
983
+ // [Tags "Base", "Avatar", "Color", "Protected"]
984
+ @sapAvatar_3_TextColor: @sapDefault_Color;
985
+
986
+ // [Label "Avatar 4 Background Color"]
987
+ // [Description "The background color of type-4 avatars."]
988
+ // [Tags "Base", "Avatar", "Color", "Protected"]
989
+ @sapAvatar_4_Background: @sapDefault_Color;
990
+
991
+ // [Label "Avatar 4 Border Color"]
992
+ // [Description "The border color of type-4 avatars."]
993
+ // [Tags "Base", "Avatar", "Color", "Protected"]
994
+ @sapAvatar_4_BorderColor: @sapDefault_Color;
995
+
996
+ // [Label "Avatar 4 Text Color"]
997
+ // [Description "The text color of type-4 avatars."]
998
+ // [Tags "Base", "Avatar", "Color", "Protected"]
999
+ @sapAvatar_4_TextColor: @sapDefault_Color;
1000
+
1001
+ // [Label "Avatar 5 Background Color"]
1002
+ // [Description "The background color of type-5 avatars."]
1003
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1004
+ @sapAvatar_5_Background: @sapDefault_Color;
1005
+
1006
+ // [Label "Avatar 5 Border Color"]
1007
+ // [Description "The border color of type-5 avatars."]
1008
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1009
+ @sapAvatar_5_BorderColor: @sapDefault_Color;
1010
+
1011
+ // [Label "Avatar 5 Text Color"]
1012
+ // [Description "The text color of type-5 avatars."]
1013
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1014
+ @sapAvatar_5_TextColor: @sapDefault_Color;
1015
+
1016
+ // [Label "Avatar 6 Background Color"]
1017
+ // [Description "The background color of type-6 avatars."]
1018
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1019
+ @sapAvatar_6_Background: @sapDefault_Color;
1020
+
1021
+ // [Label "Avatar 6 Border Color"]
1022
+ // [Description "The border color of type-6 avatars."]
1023
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1024
+ @sapAvatar_6_BorderColor: @sapDefault_Color;
1025
+
1026
+ // [Label "Avatar 6 Text Color"]
1027
+ // [Description "The text color of type-6 avatars."]
1028
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1029
+ @sapAvatar_6_TextColor: @sapDefault_Color;
1030
+
1031
+ // [Label "Avatar 7 Background Color"]
1032
+ // [Description "The background color of type-7 avatars."]
1033
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1034
+ @sapAvatar_7_Background: @sapDefault_Color;
1035
+
1036
+ // [Label "Avatar 7 Border Color"]
1037
+ // [Description "The border color of type-7 avatars."]
1038
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1039
+ @sapAvatar_7_BorderColor: @sapDefault_Color;
1040
+
1041
+ // [Label "Avatar 7 Text Color"]
1042
+ // [Description "The text color of type-7 avatars."]
1043
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1044
+ @sapAvatar_7_TextColor: @sapDefault_Color;
1045
+
1046
+ // [Label "Avatar 8 Background Color"]
1047
+ // [Description "The background color of type-8 avatars."]
1048
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1049
+ @sapAvatar_8_Background: @sapDefault_Color;
1050
+
1051
+ // [Label "Avatar 8 Border Color"]
1052
+ // [Description "The border color of type-8 avatars."]
1053
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1054
+ @sapAvatar_8_BorderColor: @sapDefault_Color;
1055
+
1056
+ // [Label "Avatar 8 Text Color"]
1057
+ // [Description "The text color of type-8 avatars."]
1058
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1059
+ @sapAvatar_8_TextColor: @sapDefault_Color;
1060
+
1061
+ // [Label "Avatar 9 Background Color"]
1062
+ // [Description "The background color of type-9 avatars."]
1063
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1064
+ @sapAvatar_9_Background: @sapDefault_Color;
1065
+
1066
+ // [Label "Avatar 9 Border Color"]
1067
+ // [Description "The border color of type-9 avatars."]
1068
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1069
+ @sapAvatar_9_BorderColor: @sapDefault_Color;
1070
+
1071
+ // [Label "Avatar 9 Text Color"]
1072
+ // [Description "The text color of type-9 avatars."]
1073
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1074
+ @sapAvatar_9_TextColor: @sapDefault_Color;
1075
+
1076
+ // [Label "Avatar 10 Background Color"]
1077
+ // [Description "The background color of type-10 avatars."]
1078
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1079
+ @sapAvatar_10_Background: @sapDefault_Color;
1080
+
1081
+ // [Label "Avatar 10 Border Color"]
1082
+ // [Description "The border color of type-10 avatars."]
1083
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1084
+ @sapAvatar_10_BorderColor: @sapDefault_Color;
1085
+
1086
+ // [Label "Avatar 10 Text Color"]
1087
+ // [Description "The text color of type-10 avatars."]
1088
+ // [Tags "Base", "Avatar", "Color", "Protected"]
1089
+ @sapAvatar_10_TextColor: @sapDefault_Color;
1090
+
909
1091
  // [Label "Button Background Color"]
910
1092
  // [Description "The background color of buttons."]
911
1093
  // [Tags "Base", "Button", "Color", "Protected"]
@@ -1546,6 +1728,12 @@
1546
1728
  // [Tags "Base", "Button", "Color", "Protected"]
1547
1729
  @sapButton_Information_Active_BorderColor: @sapDefault_Color;
1548
1730
 
1731
+ // [Label "Information Button Active Text Color"]
1732
+ // [Description "The active (down) state text color of information buttons."]
1733
+ // [TranslationKey "sapButton_InfActTxtClr"]
1734
+ // [Tags "Base", "Button", "Color", "Protected"]
1735
+ @sapButton_Information_Active_TextColor: @sapDefault_Color;
1736
+
1549
1737
  // [Label "Neutral Button Background Color"]
1550
1738
  // [Description "The background color of neutral buttons."]
1551
1739
  // [Tags "Base", "Button", "Color", "Protected"]
@@ -1597,27 +1785,239 @@
1597
1785
  // [Tags "Base", "Button", "Color", "Font", "Protected"]
1598
1786
  @sapButton_Neutral_Active_TextColor: @sapDefault_Color;
1599
1787
 
1600
- // [Label "Switch Button Selected Track Color"]
1788
+ // [Label "Switch Button Track Background Color"]
1789
+ // [Description "The background color for the track of button controls such as the switch."]
1790
+ // [Tags "Base", "Button", "Color", "Protected"]
1791
+ @sapButton_Track_Background: @sapDefault_Color;
1792
+
1793
+ // [Label "Switch Button Track Border Color"]
1794
+ // [Description "The border color for the track of button controls such as the switch."]
1795
+ // [Tags "Base", "Button", "Color", "Protected"]
1796
+ @sapButton_Track_BorderColor: @sapDefault_Color;
1797
+
1798
+ // [Label "Switch Button Track Text Color"]
1799
+ // [Description "The text and icon color for the track of button controls such as the switch."]
1800
+ // [Tags "Base", "Button", "Color", "Font", "Protected"]
1801
+ @sapButton_Track_TextColor: @sapDefault_Color;
1802
+
1803
+ // [Label "Switch Button Track Hover Background Color"]
1804
+ // [Description "The background color for the hovered track of button controls such as the switch."]
1805
+ // [TranslationKey "sapButton_TrackHvBg"]
1806
+ // [Tags "Base", "Button", "Color", "Protected"]
1807
+ @sapButton_Track_Hover_Background: @sapDefault_Color;
1808
+
1809
+ // [Label "Switch Button Track Hover Border Color"]
1810
+ // [Description "The border color for the hovered track of button controls such as the switch."]
1811
+ // [TranslationKey "sapButton_TrackHvBrd"]
1812
+ // [Tags "Base", "Button", "Color", "Protected"]
1813
+ @sapButton_Track_Hover_BorderColor: @sapDefault_Color;
1814
+
1815
+ // [Label "Switch Button Selected Track Background Color"]
1601
1816
  // [Description "The background color for the selected track of button controls such as the switch."]
1602
1817
  // [TranslationKey "sapButton_TrackSelBg"]
1603
1818
  // [Tags "Base", "Button", "Color", "Protected"]
1604
1819
  @sapButton_Track_Selected_Background: @sapDefault_Color;
1605
1820
 
1606
- // [Label "Switch Button Selected Text Color"]
1821
+ // [Label "Switch Button Selected Track Border Color"]
1822
+ // [Description "The border color for the selected track of button controls such as the switch."]
1823
+ // [TranslationKey "sapButton_TrackSelBrd"]
1824
+ // [Tags "Base", "Button", "Color", "Protected"]
1825
+ @sapButton_Track_Selected_BorderColor: @sapDefault_Color;
1826
+
1827
+ // [Label "Switch Button Selected Track Text Color"]
1607
1828
  // [Description "The text and icon color for the selected track of button controls such as the switch."]
1608
1829
  // [TranslationKey "sapButton_TrackSelTxtClr"]
1609
1830
  // [Tags "Base", "Button", "Color", "Font", "Protected"]
1610
1831
  @sapButton_Track_Selected_TextColor: @sapDefault_Color;
1611
1832
 
1612
- // [Label "Switch Button Track Color"]
1613
- // [Description "The background color for the track of button controls such as the switch."]
1833
+ // [Label "Switch Button Selected Track Hover Background Color"]
1834
+ // [Description "The background color for the hovered selected track of button controls such as the switch."]
1835
+ // [TranslationKey "sapButton_TrackSelHvBg"]
1614
1836
  // [Tags "Base", "Button", "Color", "Protected"]
1615
- @sapButton_Track_Background: @sapDefault_Color;
1837
+ @sapButton_Track_Selected_Hover_Background: @sapDefault_Color;
1616
1838
 
1617
- // [Label "Switch Button Text Color"]
1618
- // [Description "The text and icon color for the track of button controls such as the switch."]
1839
+ // [Label "Switch Button Selected Track Hover Border Color"]
1840
+ // [Description "The border color for the hovered selected track of button controls such as the switch."]
1841
+ // [TranslationKey "sapButton_TrackSelHvBrd"]
1842
+ // [Tags "Base", "Button", "Color", "Protected"]
1843
+ @sapButton_Track_Selected_Hover_BorderColor: @sapDefault_Color;
1844
+
1845
+ // [Label "Switch Button Handle Background Color"]
1846
+ // [Description "The background color for the handle of button controls such as the switch."]
1847
+ // [Tags "Base", "Button", "Color", "Protected"]
1848
+ @sapButton_Handle_Background: @sapDefault_Color;
1849
+
1850
+ // [Label "Switch Button Handle Border Color"]
1851
+ // [Description "The border color for the handle of button controls such as the switch."]
1852
+ // [Tags "Base", "Button", "Color", "Protected"]
1853
+ @sapButton_Handle_BorderColor: @sapDefault_Color;
1854
+
1855
+ // [Label "Switch Button Handle Text Color"]
1856
+ // [Description "The text and icon color for the handle of button controls such as the switch."]
1857
+ // [Tags "Base", "Button", "Color", "Protected"]
1858
+ @sapButton_Handle_TextColor: @sapDefault_Color;
1859
+
1860
+ // [Label "Switch Button Handle Hover Background Color"]
1861
+ // [Description "The background color for the hovered handle of button controls such as the switch."]
1862
+ // [TranslationKey "sapButton_HandleHvBg"]
1863
+ // [Tags "Base", "Button", "Color", "Protected"]
1864
+ @sapButton_Handle_Hover_Background: @sapDefault_Color;
1865
+
1866
+ // [Label "Switch Button Handle Hover Border Color"]
1867
+ // [Description "The border color for the hovered handle of button controls such as the switch."]
1868
+ // [TranslationKey "sapButton_HandleHvBrd"]
1869
+ // [Tags "Base", "Button", "Color", "Protected"]
1870
+ @sapButton_Handle_Hover_BorderColor: @sapDefault_Color;
1871
+
1872
+ // [Label "Switch Button Selected Handle Background Color"]
1873
+ // [Description "The background color for the selected handle of button controls such as the switch."]
1874
+ // [TranslationKey "sapButton_HandleSelBg"]
1875
+ // [Tags "Base", "Button", "Color", "Protected"]
1876
+ @sapButton_Handle_Selected_Background: @sapDefault_Color;
1877
+
1878
+ // [Label "Switch Button Selected Handle Border Color"]
1879
+ // [Description "The border color for the selected handle of button controls such as the switch."]
1880
+ // [TranslationKey "sapButton_HandleSelBrd"]
1881
+ // [Tags "Base", "Button", "Color", "Protected"]
1882
+ @sapButton_Handle_Selected_BorderColor: @sapDefault_Color;
1883
+
1884
+ // [Label "Switch Button Selected Handle Text Color"]
1885
+ // [Description "The text and icon color for the selected handle of button controls such as the switch."]
1886
+ // [TranslationKey "sapButton_HandleSelTxtClr"]
1887
+ // [Tags "Base", "Button", "Color", "Protected"]
1888
+ @sapButton_Handle_Selected_TextColor: @sapDefault_Color;
1889
+
1890
+ // [Label "Switch Button Selected Handle Hover Background Color"]
1891
+ // [Description "The background color for the hovered selected handle of button controls such as the switch."]
1892
+ // [TranslationKey "sapButton_HandleSelHvBg"]
1893
+ // [Tags "Base", "Button", "Color", "Protected"]
1894
+ @sapButton_Handle_Selected_Hover_Background: @sapDefault_Color;
1895
+
1896
+ // [Label "Switch Button Selected Handle Hover Border Color"]
1897
+ // [Description "The border color for the hovered selected handle of button controls such as the switch."]
1898
+ // [TranslationKey "sapButton_HandleSelHvBrd"]
1899
+ // [Tags "Base", "Button", "Color", "Protected"]
1900
+ @sapButton_Handle_Selected_Hover_BorderColor: @sapDefault_Color;
1901
+
1902
+ // [Label "Negative Switch Button Track Background Color"]
1903
+ // [Description "The background color for the track of negative button controls such as the switch."]
1904
+ // [TranslationKey "sapButton_TrackNegBg"]
1905
+ // [Tags "Base", "Button", "Color", "Protected"]
1906
+ @sapButton_Track_Negative_Background: @sapDefault_Color;
1907
+
1908
+ // [Label "Negative Switch Button Track Border Color"]
1909
+ // [Description "The border color for the track of negative button controls such as the switch."]
1910
+ // [TranslationKey "sapButton_TrackNegBrd"]
1911
+ // [Tags "Base", "Button", "Color", "Protected"]
1912
+ @sapButton_Track_Negative_BorderColor: @sapDefault_Color;
1913
+
1914
+ // [Label "Negative Switch Button Track Text Color"]
1915
+ // [Description "The text and icon color for the track of negative button controls such as the switch."]
1916
+ // [TranslationKey "sapButton_TrackNegTxtClr"]
1619
1917
  // [Tags "Base", "Button", "Color", "Font", "Protected"]
1620
- @sapButton_Track_TextColor: @sapDefault_Color;
1918
+ @sapButton_Track_Negative_TextColor: @sapDefault_Color;
1919
+
1920
+ // [Label "Negative Switch Button Track Hover Background Color"]
1921
+ // [Description "The background color for the hovered track of negative button controls such as the switch."]
1922
+ // [TranslationKey "sapButton_TrackNegHvBg"]
1923
+ // [Tags "Base", "Button", "Color", "Protected"]
1924
+ @sapButton_Track_Negative_Hover_Background: @sapDefault_Color;
1925
+
1926
+ // [Label "Negative Switch Button Track Hover Border Color"]
1927
+ // [Description "The border color for the hovered track of negative button controls such as the switch."]
1928
+ // [TranslationKey "sapButton_TrackNegHvBrd"]
1929
+ // [Tags "Base", "Button", "Color", "Protected"]
1930
+ @sapButton_Track_Negative_Hover_BorderColor: @sapDefault_Color;
1931
+
1932
+ // [Label "Negative Switch Button Handle Background Color"]
1933
+ // [Description "The background color for the handle of negative button controls such as the switch."]
1934
+ // [TranslationKey "sapButton_HandleNegBg"]
1935
+ // [Tags "Base", "Button", "Color", "Protected"]
1936
+ @sapButton_Handle_Negative_Background: @sapDefault_Color;
1937
+
1938
+ // [Label "Negative Switch Button Handle Border Color"]
1939
+ // [Description "The border color for the handle of negative button controls such as the switch."]
1940
+ // [TranslationKey "sapButton_HandleNegBrd"]
1941
+ // [Tags "Base", "Button", "Color", "Protected"]
1942
+ @sapButton_Handle_Negative_BorderColor: @sapDefault_Color;
1943
+
1944
+ // [Label "Negative Switch Button Handle Text Color"]
1945
+ // [Description "The text and icon color for the handle of negative button controls such as the switch."]
1946
+ // [TranslationKey "sapButton_HandleNegTxtClr"]
1947
+ // [Tags "Base", "Button", "Color", "Protected"]
1948
+ @sapButton_Handle_Negative_TextColor: @sapDefault_Color;
1949
+
1950
+ // [Label "Negative Switch Button Handle Hover Background Color"]
1951
+ // [Description "The background color for the hovered handle of negative button controls such as the switch."]
1952
+ // [TranslationKey "sapButton_HandleNegHvBg"]
1953
+ // [Tags "Base", "Button", "Color", "Protected"]
1954
+ @sapButton_Handle_Negative_Hover_Background: @sapDefault_Color;
1955
+
1956
+ // [Label "Negative Switch Button Handle Hover Border Color"]
1957
+ // [Description "The border color for the hovered handle of negative button controls such as the switch."]
1958
+ // [TranslationKey "sapButton_HandleNegHvBrd"]
1959
+ // [Tags "Base", "Button", "Color", "Protected"]
1960
+ @sapButton_Handle_Negative_Hover_BorderColor: @sapDefault_Color;
1961
+
1962
+ // [Label "Positive Switch Button Track Background Color"]
1963
+ // [Description "The background color for the track of positive button controls such as the switch."]
1964
+ // [TranslationKey "sapButton_TrackPosBg"]
1965
+ // [Tags "Base", "Button", "Color", "Protected"]
1966
+ @sapButton_Track_Positive_Background: @sapDefault_Color;
1967
+
1968
+ // [Label "Positive Switch Button Track Border Color"]
1969
+ // [Description "The border color for the track of positive button controls such as the switch."]
1970
+ // [TranslationKey "sapButton_TrackPosBrd"]
1971
+ // [Tags "Base", "Button", "Color", "Protected"]
1972
+ @sapButton_Track_Positive_BorderColor: @sapDefault_Color;
1973
+
1974
+ // [Label "Positive Switch Button Track Text Color"]
1975
+ // [Description "The text and icon color for the track of positive button controls such as the switch."]
1976
+ // [TranslationKey "sapButton_TrackPosTxtClr"]
1977
+ // [Tags "Base", "Button", "Color", "Font", "Protected"]
1978
+ @sapButton_Track_Positive_TextColor: @sapDefault_Color;
1979
+
1980
+ // [Label "Positive Switch Button Track Hover Background Color"]
1981
+ // [Description "The background color for the hovered track of positive button controls such as the switch."]
1982
+ // [TranslationKey "sapButton_TrackPosHvBg"]
1983
+ // [Tags "Base", "Button", "Color", "Protected"]
1984
+ @sapButton_Track_Positive_Hover_Background: @sapDefault_Color;
1985
+
1986
+ // [Label "Positive Switch Button Track Hover Border Color"]
1987
+ // [Description "The border color for the hovered track of positive button controls such as the switch."]
1988
+ // [TranslationKey "sapButton_TrackPosHvBrd"]
1989
+ // [Tags "Base", "Button", "Color", "Protected"]
1990
+ @sapButton_Track_Positive_Hover_BorderColor: @sapDefault_Color;
1991
+
1992
+ // [Label "Positive Switch Button Handle Background Color"]
1993
+ // [Description "The background color for the handle of positive button controls such as the switch."]
1994
+ // [TranslationKey "sapButton_HandlePosBg"]
1995
+ // [Tags "Base", "Button", "Color", "Protected"]
1996
+ @sapButton_Handle_Positive_Background: @sapDefault_Color;
1997
+
1998
+ // [Label "Positive Switch Button Handle Border Color"]
1999
+ // [Description "The border color for the handle of positive button controls such as the switch."]
2000
+ // [TranslationKey "sapButton_HandlePosBrd"]
2001
+ // [Tags "Base", "Button", "Color", "Protected"]
2002
+ @sapButton_Handle_Positive_BorderColor: @sapDefault_Color;
2003
+
2004
+ // [Label "Positive Switch Button Handle Text Color"]
2005
+ // [Description "The text and icon color for the handle of positive button controls such as the switch."]
2006
+ // [TranslationKey "sapButton_HandlePosTxtClr"]
2007
+ // [Tags "Base", "Button", "Color", "Protected"]
2008
+ @sapButton_Handle_Positive_TextColor: @sapDefault_Color;
2009
+
2010
+ // [Label "Positive Switch Button Handle Hover Background Color"]
2011
+ // [Description "The background color for the hovered handle of positive button controls such as the switch."]
2012
+ // [TranslationKey "sapButton_HandlePosHvBg"]
2013
+ // [Tags "Base", "Button", "Color", "Protected"]
2014
+ @sapButton_Handle_Positive_Hover_Background: @sapDefault_Color;
2015
+
2016
+ // [Label "Positive Switch Button Handle Hover Border Color"]
2017
+ // [Description "The border color for the hovered handle of positive button controls such as the switch."]
2018
+ // [TranslationKey "sapButton_HandlePosHvBrd"]
2019
+ // [Tags "Base", "Button", "Color", "Protected"]
2020
+ @sapButton_Handle_Positive_Hover_BorderColor: @sapDefault_Color;
1621
2021
 
1622
2022
  // [Label "Token Background Color"]
1623
2023
  // [Description "The background color of token buttons."]
@@ -1634,6 +2034,11 @@
1634
2034
  // [Tags "Base", "Field", "Color", "Protected"]
1635
2035
  @sapField_Background: @sapDefault_Color;
1636
2036
 
2037
+ // [Label "Field Background Image"]
2038
+ // [Description "The background style of input fields."]
2039
+ // [Tags "Base", "Field", "Protected"]
2040
+ @sapField_BackgroundStyle: @sapDefault_URI;
2041
+
1637
2042
  // [Label "Field Text Color"]
1638
2043
  // [Description "The text color of input fields."]
1639
2044
  // [Tags "Base", "Field", "Color", "Font", "Protected"]
@@ -1659,6 +2064,11 @@
1659
2064
  // [Tags "Base", "Field", "Dimension", "Protected"]
1660
2065
  @sapField_BorderWidth: @sapDefault_Dimension;
1661
2066
 
2067
+ // [Label "Field Border Style"]
2068
+ // [Description "The style of borders of an input field."]
2069
+ // [Tags "Base", "Field", "Protected"]
2070
+ @sapField_BorderStyle: @sapDefault_BorderStyle;
2071
+
1662
2072
  // [Label "Field Corner Radius"]
1663
2073
  // [Description "Defines whether an input field has rounded corners."]
1664
2074
  // [Tags "Base", "Field", "Dimension", "Protected"]
@@ -1669,6 +2079,11 @@
1669
2079
  // [Tags "Base", "Field", "Color", "Protected"]
1670
2080
  @sapField_Hover_Background: @sapDefault_Color;
1671
2081
 
2082
+ // [Label "Field Hover Background Image"]
2083
+ // [Description "The background style of input fields on hover."]
2084
+ // [Tags "Base", "Field", "Protected"]
2085
+ @sapField_Hover_BackgroundStyle: @sapDefault_URI;
2086
+
1672
2087
  // [Label "Field Hover Border Color"]
1673
2088
  // [Description "The color of an input field's borders on hover."]
1674
2089
  // [Tags "Base", "Field", "Color", "Protected"]
@@ -1704,11 +2119,22 @@
1704
2119
  // [Tags "Base", "Field", "Color", "Protected"]
1705
2120
  @sapField_ReadOnly_Background: @sapDefault_Color;
1706
2121
 
2122
+ // [Label "Read Only Field Background Image"]
2123
+ // [Description "The background style of read-only input fields."]
2124
+ // [Tags "Base", "Field", "Protected"]
2125
+ // [TranslationKey "sapField_ReadOnly_BgStyle"]
2126
+ @sapField_ReadOnly_BackgroundStyle: @sapDefault_URI;
2127
+
1707
2128
  // [Label "Read Only Field Border Color"]
1708
2129
  // [Description "The color of a read-only input field's borders."]
1709
2130
  // [Tags "Base", "Field", "Color", "Protected"]
1710
2131
  @sapField_ReadOnly_BorderColor: @sapDefault_Color;
1711
2132
 
2133
+ // [Label "Read Only Field Border Style"]
2134
+ // [Description "The border style of read-only input fields."]
2135
+ // [Tags "Base", "Field", "Protected"]
2136
+ @sapField_ReadOnly_BorderStyle: @sapDefault_BorderStyle;
2137
+
1712
2138
  // [Label "Read Only Field Help Color"]
1713
2139
  // [Description "The background color of a read-only input field's value help icon."]
1714
2140
  // [TranslationKey "sapField_ReadOnly_HelpBackgrnd"]
@@ -1730,6 +2156,12 @@
1730
2156
  // [Tags "Base", "Field", "Color", "Protected"]
1731
2157
  @sapField_InvalidBackground: @sapDefault_Color;
1732
2158
 
2159
+ // [Label "Invalid Field Background Image"]
2160
+ // [Description "The background style of an input field with an invalid value."]
2161
+ // [TranslationKey "sapField_InvBgImg"]
2162
+ // [Tags "Base", "Field", "Protected"]
2163
+ @sapField_InvalidBackgroundStyle: @sapDefault_URI;
2164
+
1733
2165
  // [Label "Invalid Field Border Thickness"]
1734
2166
  // [Description "The thickness of borders of an input field with invalid value."]
1735
2167
  // [Tags "Base", "Field", "Dimension", "Protected"]
@@ -1737,7 +2169,7 @@
1737
2169
 
1738
2170
  // [Label "Invalid Field Border Style"]
1739
2171
  // [Description "The style of borders of an input field with invalid value."]
1740
- // [Tags "Base", "Field", "Color", "Protected"]
2172
+ // [Tags "Base", "Field", "Protected"]
1741
2173
  @sapField_InvalidBorderStyle: @sapDefault_BorderStyle;
1742
2174
 
1743
2175
  // [Label "Warning Field Color"]
@@ -1750,6 +2182,12 @@
1750
2182
  // [Tags "Base", "Field", "Color", "Protected"]
1751
2183
  @sapField_WarningBackground: @sapDefault_Color;
1752
2184
 
2185
+ // [Label "Warning Field Background Image"]
2186
+ // [Description "The background style of an input field indicating a warning."]
2187
+ // [TranslationKey "sapField_WarnBgImg"]
2188
+ // [Tags "Base", "Field", "Protected"]
2189
+ @sapField_WarningBackgroundStyle: @sapDefault_URI;
2190
+
1753
2191
  // [Label "Warning Field Border Thickness"]
1754
2192
  // [Description "The thickness of borders of an input field indicating a warning."]
1755
2193
  // [Tags "Base", "Field", "Dimension", "Protected"]
@@ -1757,7 +2195,7 @@
1757
2195
 
1758
2196
  // [Label "Warning Field Border Style"]
1759
2197
  // [Description "The style of borders of an input field indicating a warning."]
1760
- // [Tags "Base", "Field", "Color", "Protected"]
2198
+ // [Tags "Base", "Field", "Protected"]
1761
2199
  @sapField_WarningBorderStyle: @sapDefault_BorderStyle;
1762
2200
 
1763
2201
  // [Label "Success Field Color"]
@@ -1770,6 +2208,12 @@
1770
2208
  // [Tags "Base", "Field", "Color", "Protected"]
1771
2209
  @sapField_SuccessBackground: @sapDefault_Color;
1772
2210
 
2211
+ // [Label "Success Field Background Image"]
2212
+ // [Description "The background style of an input field indicating a successful user action."]
2213
+ // [TranslationKey "sapField_SucBgImg"]
2214
+ // [Tags "Base", "Field", "Protected"]
2215
+ @sapField_SuccessBackgroundStyle: @sapDefault_URI;
2216
+
1773
2217
  // [Label "Success Field Border Thickness"]
1774
2218
  // [Description "The thickness of borders of an input field indicating a successful user action."]
1775
2219
  // [Tags "Base", "Field", "Dimension", "Protected"]
@@ -1777,7 +2221,7 @@
1777
2221
 
1778
2222
  // [Label "Success Field Border Style"]
1779
2223
  // [Description "The style of borders of an input field indicating a successful user action."]
1780
- // [Tags "Base", "Field", "Color", "Protected"]
2224
+ // [Tags "Base", "Field", "Protected"]
1781
2225
  @sapField_SuccessBorderStyle: @sapDefault_BorderStyle;
1782
2226
 
1783
2227
  // [Label "Information Field Color"]
@@ -1790,14 +2234,22 @@
1790
2234
  // [Tags "Base", "Field", "Color", "Protected"]
1791
2235
  @sapField_InformationBackground: @sapDefault_Color;
1792
2236
 
2237
+ // [Label "Information Field Background Image"]
2238
+ // [Description "The background style of an input field indicating an information status."]
2239
+ // [TranslationKey "sapField_InfBgImg"]
2240
+ // [Tags "Base", "Field", "Protected"]
2241
+ @sapField_InformationBackgroundStyle: @sapDefault_URI;
2242
+
1793
2243
  // [Label "Information Field Border Thickness"]
1794
2244
  // [Description "The thickness of borders of an input field indicating an information status."]
2245
+ // [TranslationKey "sapField_InfBrdWdth"]
1795
2246
  // [Tags "Base", "Field", "Dimension", "Protected"]
1796
2247
  @sapField_InformationBorderWidth: @sapDefault_Dimension;
1797
2248
 
1798
2249
  // [Label "Information Field Border Style"]
1799
2250
  // [Description "The style of borders of an input field indicating an information status."]
1800
- // [Tags "Base", "Field", "Color", "Protected"]
2251
+ // [TranslationKey "sapField_InfBrdSty"]
2252
+ // [Tags "Base", "Field", "Protected"]
1801
2253
  @sapField_InformationBorderStyle: @sapDefault_BorderStyle;
1802
2254
 
1803
2255
  // [Label "Group Title Background Color"]
@@ -1815,6 +2267,11 @@
1815
2267
  // [Tags "Base", "Group", "Color", "Font", "Protected"]
1816
2268
  @sapGroup_TitleTextColor: @sapDefault_Color;
1817
2269
 
2270
+ // [Label "Group Title Font Size"]
2271
+ // [Description "The font size of the group title."]
2272
+ // [Tags "Base", "Group", "Dimension", "Font", "Protected"]
2273
+ @sapGroup_Title_FontSize: @sapDefault_Dimension;
2274
+
1818
2275
  // [Label "Group Content Background Color"]
1819
2276
  // [Description "The background color of the content area of a group."]
1820
2277
  // [Tags "Base", "Group", "Color", "Protected"]
@@ -1975,6 +2432,211 @@
1975
2432
  // [Tags "Base", "List", "Color", "Protected"]
1976
2433
  @sapList_TableFixedBorderColor: @sapDefault_Color;
1977
2434
 
2435
+ // [Label "Message Error Border Color"]
2436
+ // [Description "The error border color of message controls."]
2437
+ // [Tags "Base", "Message", "Color", "Protected"]
2438
+ @sapMessage_ErrorBorderColor: @sapDefault_Color;
2439
+
2440
+ // [Label "Message Warning Border Color"]
2441
+ // [Description "The warning border color of message controls."]
2442
+ // [Tags "Base", "Message", "Color", "Protected"]
2443
+ @sapMessage_WarningBorderColor: @sapDefault_Color;
2444
+
2445
+ // [Label "Message Success Border Color"]
2446
+ // [Description "The success border color of message controls."]
2447
+ // [Tags "Base", "Message", "Color", "Protected"]
2448
+ @sapMessage_SuccessBorderColor: @sapDefault_Color;
2449
+
2450
+ // [Label "Message Information Border Color"]
2451
+ // [Description "The information border color of message controls."]
2452
+ // [TranslationKey "sapMessage_InfBrd"]
2453
+ // [Tags "Base", "Message", "Color", "Protected"]
2454
+ @sapMessage_InformationBorderColor: @sapDefault_Color;
2455
+
2456
+ // [Label "Popover Border Corner Radius"]
2457
+ // [Description "The border radius of popovers."]
2458
+ // [TranslationKey "sapPopover_BrdRd"]
2459
+ // [Tags "Base", "Popover", "Dimension", "Protected"]
2460
+ @sapPopover_BorderCornerRadius: @sapDefault_Dimension;
2461
+
2462
+ // [Label "Progress Background"]
2463
+ // [Description "The background color of the empty part of progress bars."]
2464
+ // [Tags "Base", "Progress", "Color", "Protected"]
2465
+ @sapProgress_Background: @sapDefault_Color;
2466
+
2467
+ // [Label "Progress Border Color"]
2468
+ // [Description "The border color of the empty part of progress bars."]
2469
+ // [Tags "Base", "Progress", "Color", "Protected"]
2470
+ @sapProgress_BorderColor: @sapDefault_Color;
2471
+
2472
+ // [Label "Progress Text Color"]
2473
+ // [Description "The text color of the empty part of progress bars."]
2474
+ // [Tags "Base", "Progress", "Color", "Protected"]
2475
+ @sapProgress_TextColor: @sapDefault_Color;
2476
+
2477
+ // [Label "Progress Font Size"]
2478
+ // [Description "The font size of progress bars."]
2479
+ // [Tags "Base", "Progress", "Dimension", "Protected"]
2480
+ @sapProgress_FontSize: @sapDefault_Dimension;
2481
+
2482
+ // [Label "Negative Progress Background"]
2483
+ // [Description "The background color of the empty part of negative progress bars."]
2484
+ // [TranslationKey "sapProgress_NegBg"]
2485
+ // [Tags "Base", "Progress", "Color", "Protected"]
2486
+ @sapProgress_NegativeBackground: @sapDefault_Color;
2487
+
2488
+ // [Label "Negative Progress Border Color"]
2489
+ // [Description "The border color of the empty part of negative progress bars."]
2490
+ // [TranslationKey "sapProgress_NegBrd"]
2491
+ // [Tags "Base", "Progress", "Color", "Protected"]
2492
+ @sapProgress_NegativeBorderColor: @sapDefault_Color;
2493
+
2494
+ // [Label "Negative Progress Text Color"]
2495
+ // [Description "The text color of the empty part of negative progress bars."]
2496
+ // [Tags "Base", "Progress", "Color", "Protected"]
2497
+ @sapProgress_NegativeTextColor: @sapDefault_Color;
2498
+
2499
+ // [Label "Critical Progress Background"]
2500
+ // [Description "The background color of the empty part of critical progress bars."]
2501
+ // [TranslationKey "sapProgress_CrtBg"]
2502
+ // [Tags "Base", "Progress", "Color", "Protected"]
2503
+ @sapProgress_CriticalBackground: @sapDefault_Color;
2504
+
2505
+ // [Label "Critical Progress Border Color"]
2506
+ // [Description "The border color of the empty part of critical progress bars."]
2507
+ // [TranslationKey "sapProgress_CrtBrd"]
2508
+ // [Tags "Base", "Progress", "Color", "Protected"]
2509
+ @sapProgress_CriticalBorderColor: @sapDefault_Color;
2510
+
2511
+ // [Label "Critical Progress Text Color"]
2512
+ // [Description "The text color of the empty part of critical progress bars."]
2513
+ // [Tags "Base", "Progress", "Color", "Protected"]
2514
+ @sapProgress_CriticalTextColor: @sapDefault_Color;
2515
+
2516
+ // [Label "Positive Progress Background"]
2517
+ // [Description "The background color of the empty part of positive progress bars."]
2518
+ // [TranslationKey "sapProgress_PosBg"]
2519
+ // [Tags "Base", "Progress", "Color", "Protected"]
2520
+ @sapProgress_PositiveBackground: @sapDefault_Color;
2521
+
2522
+ // [Label "Positive Progress Border Color"]
2523
+ // [Description "The border color of the empty part of positive progress bars."]
2524
+ // [TranslationKey "sapProgress_PosBrd"]
2525
+ // [Tags "Base", "Progress", "Color", "Protected"]
2526
+ @sapProgress_PositiveBorderColor: @sapDefault_Color;
2527
+
2528
+ // [Label "Positive Progress Text Color"]
2529
+ // [Description "The text color of the empty part of positive progress bars."]
2530
+ // [Tags "Base", "Progress", "Color", "Protected"]
2531
+ @sapProgress_PositiveTextColor: @sapDefault_Color;
2532
+
2533
+ // [Label "Information Progress Background"]
2534
+ // [Description "The background color of the empty part of information progress bars."]
2535
+ // [TranslationKey "sapProgress_InfBg"]
2536
+ // [Tags "Base", "Progress", "Color", "Protected"]
2537
+ @sapProgress_InformationBackground: @sapDefault_Color;
2538
+
2539
+ // [Label "Information Progress Border Color"]
2540
+ // [Description "The border color of the empty part of information progress bars."]
2541
+ // [TranslationKey "sapProgress_InfBrd"]
2542
+ // [Tags "Base", "Progress", "Color", "Protected"]
2543
+ @sapProgress_InformationBorderColor: @sapDefault_Color;
2544
+
2545
+ // [Label "Information Progress Text Color"]
2546
+ // [Description "The text color of the empty part of information progress bars."]
2547
+ // [TranslationKey "sapProgress_InfTxtClr"]
2548
+ // [Tags "Base", "Progress", "Color", "Protected"]
2549
+ @sapProgress_InformationTextColor: @sapDefault_Color;
2550
+
2551
+ // [Label "Progress Value Background"]
2552
+ // [Description "The background color of the filled part of progress bars."]
2553
+ // [TranslationKey "sapProgress_Value_Bg"]
2554
+ // [Tags "Base", "Progress", "Color", "Protected"]
2555
+ @sapProgress_Value_Background: @sapDefault_Color;
2556
+
2557
+ // [Label "Progress Value Border Color"]
2558
+ // [Description "The border color of the filled part of progress bars."]
2559
+ // [TranslationKey "sapProgress_Value_Brd"]
2560
+ // [Tags "Base", "Progress", "Color", "Protected"]
2561
+ @sapProgress_Value_BorderColor: @sapDefault_Color;
2562
+
2563
+ // [Label "Progress Value Text Color"]
2564
+ // [Description "The text color of the filled part of progress bars."]
2565
+ // [Tags "Base", "Progress", "Color", "Protected"]
2566
+ @sapProgress_Value_TextColor: @sapDefault_Color;
2567
+
2568
+ // [Label "Negative Progress Value Background"]
2569
+ // [Description "The background color of the filled part of negative progress bars."]
2570
+ // [TranslationKey "sapProgress_Value_NegBg"]
2571
+ // [Tags "Base", "Progress", "Color", "Protected"]
2572
+ @sapProgress_Value_NegativeBackground: @sapDefault_Color;
2573
+
2574
+ // [Label "Negative Progress Value Border Color"]
2575
+ // [Description "The border color of the filled part of negative progress bars."]
2576
+ // [TranslationKey "sapProgress_Value_NegBrd"]
2577
+ // [Tags "Base", "Progress", "Color", "Protected"]
2578
+ @sapProgress_Value_NegativeBorderColor: @sapDefault_Color;
2579
+
2580
+ // [Label "Negative Progress Value Text Color"]
2581
+ // [Description "The text color of the filled part of negative progress bars."]
2582
+ // [TranslationKey "sapProgress_Value_NegTxtClr"]
2583
+ // [Tags "Base", "Progress", "Color", "Protected"]
2584
+ @sapProgress_Value_NegativeTextColor: @sapDefault_Color;
2585
+
2586
+ // [Label "Critical Progress Value Background"]
2587
+ // [Description "The background color of the filled part of critical progress bars."]
2588
+ // [TranslationKey "sapProgress_Value_CrtBg"]
2589
+ // [Tags "Base", "Progress", "Color", "Protected"]
2590
+ @sapProgress_Value_CriticalBackground: @sapDefault_Color;
2591
+
2592
+ // [Label "Critical Progress Value Border Color"]
2593
+ // [Description "The border color of the filled part of critical progress bars."]
2594
+ // [TranslationKey "sapProgress_Value_CrtBrd"]
2595
+ // [Tags "Base", "Progress", "Color", "Protected"]
2596
+ @sapProgress_Value_CriticalBorderColor: @sapDefault_Color;
2597
+
2598
+ // [Label "Critical Progress Value Text Color"]
2599
+ // [Description "The text color of the filled part of critical progress bars."]
2600
+ // [TranslationKey "sapProgress_Value_CrtTxtClr"]
2601
+ // [Tags "Base", "Progress", "Color", "Protected"]
2602
+ @sapProgress_Value_CriticalTextColor: @sapDefault_Color;
2603
+
2604
+ // [Label "Positive Progress Value Background"]
2605
+ // [Description "The background color of the filled part of positive progress bars."]
2606
+ // [TranslationKey "sapProgress_Value_PosBg"]
2607
+ // [Tags "Base", "Progress", "Color", "Protected"]
2608
+ @sapProgress_Value_PositiveBackground: @sapDefault_Color;
2609
+
2610
+ // [Label "Positive Progress Value Border Color"]
2611
+ // [Description "The border color of the filled part of positive progress bars."]
2612
+ // [TranslationKey "sapProgress_Value_PosBrd"]
2613
+ // [Tags "Base", "Progress", "Color", "Protected"]
2614
+ @sapProgress_Value_PositiveBorderColor: @sapDefault_Color;
2615
+
2616
+ // [Label "Positive Progress Value Text Color"]
2617
+ // [Description "The text color of the filled part of positive progress bars."]
2618
+ // [TranslationKey "sapProgress_Value_PosTxtClr"]
2619
+ // [Tags "Base", "Progress", "Color", "Protected"]
2620
+ @sapProgress_Value_PositiveTextColor: @sapDefault_Color;
2621
+
2622
+ // [Label "Information Progress Value Background"]
2623
+ // [Description "The background color of the filled part of information progress bars."]
2624
+ // [TranslationKey "sapProgress_Value_InfBg"]
2625
+ // [Tags "Base", "Progress", "Color", "Protected"]
2626
+ @sapProgress_Value_InformationBackground: @sapDefault_Color;
2627
+
2628
+ // [Label "Information Progress Value Border Color"]
2629
+ // [Description "The border color of the filled part of information progress bars."]
2630
+ // [TranslationKey "sapProgress_Value_InfBrd"]
2631
+ // [Tags "Base", "Progress", "Color", "Protected"]
2632
+ @sapProgress_Value_InformationBorderColor: @sapDefault_Color;
2633
+
2634
+ // [Label "Information Progress Value Text Color"]
2635
+ // [Description "The text color of the filled part of information progress bars."]
2636
+ // [TranslationKey "sapProgress_Value_InfTxtClr"]
2637
+ // [Tags "Base", "Progress", "Color", "Protected"]
2638
+ @sapProgress_Value_InformationTextColor: @sapDefault_Color;
2639
+
1978
2640
  // [Label "Scrollbar Face Color"]
1979
2641
  // [Description "The color of the surface of a scrollbar."]
1980
2642
  // [Tags "Base", "Scrollbar", "Color", "Protected"]
@@ -2005,6 +2667,78 @@
2005
2667
  // [Tags "Base", "Scrollbar", "Color", "Protected"]
2006
2668
  @sapScrollBar_Hover_FaceColor: @sapDefault_Color;
2007
2669
 
2670
+ // [Label "Slider Background"]
2671
+ // [Description "The background color of the slider."]
2672
+ // [Tags "Base", "Slider", "Color", "Protected"]
2673
+ @sapSlider_Background: @sapDefault_Color;
2674
+
2675
+ // [Label "Slider Border Color"]
2676
+ // [Description "The border color of the slider."]
2677
+ // [Tags "Base", "Slider", "Color", "Protected"]
2678
+ @sapSlider_BorderColor: @sapDefault_Color;
2679
+
2680
+ // [Label "Slider Selected Background"]
2681
+ // [Description "The background color of the selected part of the slider (in LTR usually the part left of the handle)."]
2682
+ // [Tags "Base", "Slider", "Color", "Protected"]
2683
+ @sapSlider_Selected_Background: @sapDefault_Color;
2684
+
2685
+ // [Label "Slider Selected Border Color"]
2686
+ // [Description "The border color of the selected part of the slider (in LTR usually the part left of the handle)."]
2687
+ // [Tags "Base", "Slider", "Color", "Protected"]
2688
+ @sapSlider_Selected_BorderColor: @sapDefault_Color;
2689
+
2690
+ // [Label "Slider Handle Background"]
2691
+ // [Description "The background color of the slider handle."]
2692
+ // [Tags "Base", "Slider", "Color", "Protected"]
2693
+ @sapSlider_HandleBackground: @sapDefault_Color;
2694
+
2695
+ // [Label "Slider Handle Border Color"]
2696
+ // [Description "The border color of the slider handle."]
2697
+ // [Tags "Base", "Slider", "Color", "Protected"]
2698
+ @sapSlider_HandleBorderColor: @sapDefault_Color;
2699
+
2700
+ // [Label "Range Slider Handle Background"]
2701
+ // [Description "The background color of the range slider handle."]
2702
+ // [TranslationKey "sapSlider_RangeHandleBg"]
2703
+ // [Tags "Base", "Slider", "Color", "Protected"]
2704
+ @sapSlider_RangeHandleBackground: @sapDefault_Color;
2705
+
2706
+ // [Label "Slider Handle Hover Background"]
2707
+ // [Description "The hover state background color of the slider handle."]
2708
+ // [TranslationKey "sapSlider_HandleHvBg"]
2709
+ // [Tags "Base", "Slider", "Color", "Protected"]
2710
+ @sapSlider_Hover_HandleBackground: @sapDefault_Color;
2711
+
2712
+ // [Label "Slider Handle Hover Border Color"]
2713
+ // [Description "The hover state border color of the slider handle."]
2714
+ // [TranslationKey "sapSlider_HandleHvBrd"]
2715
+ // [Tags "Base", "Slider", "Color", "Protected"]
2716
+ @sapSlider_Hover_HandleBorderColor: @sapDefault_Color;
2717
+
2718
+ // [Label "Range Slider Handle Hover Background"]
2719
+ // [Description "The hover state background color of the range slider handle."]
2720
+ // [TranslationKey "sapSlider_Hv_RangeHandleBg"]
2721
+ // [Tags "Base", "Slider", "Color", "Protected"]
2722
+ @sapSlider_Hover_RangeHandleBackground: @sapDefault_Color;
2723
+
2724
+ // [Label "Slider Handle Active Background"]
2725
+ // [Description "The active state background color of the slider handle."]
2726
+ // [TranslationKey "sapSlider_HandleActBg"]
2727
+ // [Tags "Base", "Slider", "Color", "Protected"]
2728
+ @sapSlider_Active_HandleBackground: @sapDefault_Color;
2729
+
2730
+ // [Label "Slider Handle Active Border Color"]
2731
+ // [Description "The active state border color of the slider handle."]
2732
+ // [TranslationKey "sapSlider_HandleActBrd"]
2733
+ // [Tags "Base", "Slider", "Color", "Protected"]
2734
+ @sapSlider_Active_HandleBorderColor: @sapDefault_Color;
2735
+
2736
+ // [Label "Range Slider Handle Active Background"]
2737
+ // [Description "The active state background color of the range slider handle."]
2738
+ // [TranslationKey "sapSlider_Act_RangeHandleBg"]
2739
+ // [Tags "Base", "Slider", "Color", "Protected"]
2740
+ @sapSlider_Active_RangeHandleBackground: @sapDefault_Color;
2741
+
2008
2742
  // [Label "Page Header Background Color"]
2009
2743
  // [Description "The background color of page headers."]
2010
2744
  // [Tags "Base", "Page", "Color", "Protected"]
@@ -2077,6 +2811,35 @@
2077
2811
  // [Tags "Base", "Page", "Color", "Protected"]
2078
2812
  @sapObjectHeader_BorderColor: @sapDefault_Color;
2079
2813
 
2814
+ // [Label "Object Header Title Text Color"]
2815
+ // [Description "The text color of object header titles."]
2816
+ // [TranslationKey "sapObjectHeader_TtlTxtClr"]
2817
+ // [Tags "Base", "Page", "Color", "Protected"]
2818
+ @sapObjectHeader_Title_TextColor: @sapDefault_Color;
2819
+
2820
+ // [Label "Object Header Title Font Size"]
2821
+ // [Description "The font size of object header titles."]
2822
+ // [Tags "Base", "Page", "Dimension", "Protected"]
2823
+ @sapObjectHeader_Title_FontSize: @sapDefault_Dimension;
2824
+
2825
+ // [Label "Object Header Snapped Title Font Size"]
2826
+ // [Description "The font size of snapped object header titles."]
2827
+ // [TranslationKey "sapObjectHeader_TtlSnFntSz"]
2828
+ // [Tags "Base", "Page", "Dimension", "Protected"]
2829
+ @sapObjectHeader_Title_SnappedFontSize: @sapDefault_Dimension;
2830
+
2831
+ // [Label "Object Header Title Font Family"]
2832
+ // [Description "The font family of object header titles."]
2833
+ // [TranslationKey "sapObjectHeader_TtlFntFmly"]
2834
+ // [Tags "Base", "Page", "Font", "Protected"]
2835
+ @sapObjectHeader_Title_FontFamily: @sapDefault_Font;
2836
+
2837
+ // [Label "Object Header Subtitle Text Color"]
2838
+ // [Description "The text color of object header subtitles."]
2839
+ // [TranslationKey "sapObjectHeader_SubttlTxtClr"]
2840
+ // [Tags "Base", "Page", "Color", "Protected"]
2841
+ @sapObjectHeader_Subtitle_TextColor: @sapDefault_Color;
2842
+
2080
2843
  // [Label "Block Layer Background Color"]
2081
2844
  // [Description "The background color of block layers."]
2082
2845
  // [Tags "Base", "Page", "Color", "Protected"]
@@ -2102,6 +2865,11 @@
2102
2865
  // [Tags "Base", "Tile", "Color", "Protected"]
2103
2866
  @sapTile_BorderColor: @sapDefault_Color;
2104
2867
 
2868
+ // [Label "Tile Border Corner Radius"]
2869
+ // [Description "The border radius of tiles and cards."]
2870
+ // [Tags "Base", "Tile", "Dimension", "Protected"]
2871
+ @sapTile_BorderCornerRadius: @sapDefault_Dimension;
2872
+
2105
2873
  // [Label "Tile Title Text Color"]
2106
2874
  // [Description "The color of title texts on tiles and cards."]
2107
2875
  // [Tags "Base", "Tile", "Color", "Font", "Protected"]
@@ -2242,6 +3010,18 @@
2242
3010
  // [Tags "Base", "SemanticColor", "Color", "Protected"]
2243
3011
  @sapIndicationColor_1: @sapDefault_Color;
2244
3012
 
3013
+ // [Label "Indication Color 1 Background"]
3014
+ // [Description "The background color for elements showing indication 1."]
3015
+ // [TranslationKey "sapIndication1Bg"]
3016
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3017
+ @sapIndicationColor_1_Background: @sapDefault_Color;
3018
+
3019
+ // [Label "Indication Color 1 Border Color"]
3020
+ // [Description "The border color for elements showing indication 1."]
3021
+ // [TranslationKey "sapIndication1Brd"]
3022
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3023
+ @sapIndicationColor_1_BorderColor: @sapDefault_Color;
3024
+
2245
3025
  // [Label "Indication Color 1 Hover Background"]
2246
3026
  // [Description "The hover state background color for elements showing indication 1."]
2247
3027
  // [TranslationKey "sapIndication1HvrBg"]
@@ -2264,6 +3044,18 @@
2264
3044
  // [Tags "Base", "SemanticColor", "Color", "Protected"]
2265
3045
  @sapIndicationColor_2: @sapDefault_Color;
2266
3046
 
3047
+ // [Label "Indication Color 2 Background"]
3048
+ // [Description "The background color for elements showing indication 2."]
3049
+ // [TranslationKey "sapIndication2Bg"]
3050
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3051
+ @sapIndicationColor_2_Background: @sapDefault_Color;
3052
+
3053
+ // [Label "Indication Color 2 Border Color"]
3054
+ // [Description "The border color for elements showing indication 2."]
3055
+ // [TranslationKey "sapIndication2Brd"]
3056
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3057
+ @sapIndicationColor_2_BorderColor: @sapDefault_Color;
3058
+
2267
3059
  // [Label "Indication Color 2 Hover Background"]
2268
3060
  // [Description "The hover state background color for elements showing indication 2."]
2269
3061
  // [TranslationKey "sapIndication2HvrBg"]
@@ -2286,6 +3078,18 @@
2286
3078
  // [Tags "Base", "SemanticColor", "Color", "Protected"]
2287
3079
  @sapIndicationColor_3: @sapDefault_Color;
2288
3080
 
3081
+ // [Label "Indication Color 3 Background"]
3082
+ // [Description "The background color for elements showing indication 3."]
3083
+ // [TranslationKey "sapIndication3Bg"]
3084
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3085
+ @sapIndicationColor_3_Background: @sapDefault_Color;
3086
+
3087
+ // [Label "Indication Color 3 Border Color"]
3088
+ // [Description "The border color for elements showing indication 3."]
3089
+ // [TranslationKey "sapIndication3Brd"]
3090
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3091
+ @sapIndicationColor_3_BorderColor: @sapDefault_Color;
3092
+
2289
3093
  // [Label "Indication Color 3 Hover Background"]
2290
3094
  // [Description "The hover state background color for elements showing indication 3."]
2291
3095
  // [TranslationKey "sapIndication3HvrBg"]
@@ -2308,6 +3112,18 @@
2308
3112
  // [Tags "Base", "SemanticColor", "Color", "Protected"]
2309
3113
  @sapIndicationColor_4: @sapDefault_Color;
2310
3114
 
3115
+ // [Label "Indication Color 4 Background"]
3116
+ // [Description "The background color for elements showing indication 4."]
3117
+ // [TranslationKey "sapIndication4Bg"]
3118
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3119
+ @sapIndicationColor_4_Background: @sapDefault_Color;
3120
+
3121
+ // [Label "Indication Color 4 Border Color"]
3122
+ // [Description "The border color for elements showing indication 4."]
3123
+ // [TranslationKey "sapIndication4Brd"]
3124
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3125
+ @sapIndicationColor_4_BorderColor: @sapDefault_Color;
3126
+
2311
3127
  // [Label "Indication Color 4 Hover Background"]
2312
3128
  // [Description "The hover state background color for elements showing indication 4."]
2313
3129
  // [TranslationKey "sapIndication4HvrBg"]
@@ -2330,6 +3146,18 @@
2330
3146
  // [Tags "Base", "SemanticColor", "Color", "Protected"]
2331
3147
  @sapIndicationColor_5: @sapDefault_Color;
2332
3148
 
3149
+ // [Label "Indication Color 5 Background"]
3150
+ // [Description "The background color for elements showing indication 5."]
3151
+ // [TranslationKey "sapIndication5Bg"]
3152
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3153
+ @sapIndicationColor_5_Background: @sapDefault_Color;
3154
+
3155
+ // [Label "Indication Color 5 Border Color"]
3156
+ // [Description "The border color for elements showing indication 5."]
3157
+ // [TranslationKey "sapIndication5Brd"]
3158
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3159
+ @sapIndicationColor_5_BorderColor: @sapDefault_Color;
3160
+
2333
3161
  // [Label "Indication Color 5 Hover Background"]
2334
3162
  // [Description "The hover state background color for elements showing indication 5."]
2335
3163
  // [TranslationKey "sapIndication5HvrBg"]
@@ -2352,6 +3180,18 @@
2352
3180
  // [Tags "Base", "SemanticColor", "Color", "Protected"]
2353
3181
  @sapIndicationColor_6: @sapDefault_Color;
2354
3182
 
3183
+ // [Label "Indication Color 6 Background"]
3184
+ // [Description "The background color for elements showing indication 6."]
3185
+ // [TranslationKey "sapIndication6Bg"]
3186
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3187
+ @sapIndicationColor_6_Background: @sapDefault_Color;
3188
+
3189
+ // [Label "Indication Color 6 Border Color"]
3190
+ // [Description "The border color for elements showing indication 6."]
3191
+ // [TranslationKey "sapIndication6Brd"]
3192
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3193
+ @sapIndicationColor_6_BorderColor: @sapDefault_Color;
3194
+
2355
3195
  // [Label "Indication Color 6 Hover Background"]
2356
3196
  // [Description "The hover state background color for elements showing indication 6."]
2357
3197
  // [TranslationKey "sapIndication6HvrBg"]
@@ -2374,6 +3214,18 @@
2374
3214
  // [Tags "Base", "SemanticColor", "Color", "Protected"]
2375
3215
  @sapIndicationColor_7: @sapDefault_Color;
2376
3216
 
3217
+ // [Label "Indication Color 7 Background"]
3218
+ // [Description "The background color for elements showing indication 7."]
3219
+ // [TranslationKey "sapIndication7Bg"]
3220
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3221
+ @sapIndicationColor_7_Background: @sapDefault_Color;
3222
+
3223
+ // [Label "Indication Color 7 Border Color"]
3224
+ // [Description "The border color for elements showing indication 7."]
3225
+ // [TranslationKey "sapIndication7Brd"]
3226
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3227
+ @sapIndicationColor_7_BorderColor: @sapDefault_Color;
3228
+
2377
3229
  // [Label "Indication Color 7 Hover Background"]
2378
3230
  // [Description "The hover state background color for elements showing indication 7."]
2379
3231
  // [TranslationKey "sapIndication7HvrBg"]
@@ -2396,6 +3248,18 @@
2396
3248
  // [Tags "Base", "SemanticColor", "Color", "Protected"]
2397
3249
  @sapIndicationColor_8: @sapDefault_Color;
2398
3250
 
3251
+ // [Label "Indication Color 8 Background"]
3252
+ // [Description "The background color for elements showing indication 8."]
3253
+ // [TranslationKey "sapIndication8Bg"]
3254
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3255
+ @sapIndicationColor_8_Background: @sapDefault_Color;
3256
+
3257
+ // [Label "Indication Color 8 Border Color"]
3258
+ // [Description "The border color for elements showing indication 8."]
3259
+ // [TranslationKey "sapIndication8Brd"]
3260
+ // [Tags "Base", "SemanticColor", "Color", "Protected"]
3261
+ @sapIndicationColor_8_BorderColor: @sapDefault_Color;
3262
+
2399
3263
  // [Label "Indication Color 8 Hover Background"]
2400
3264
  // [Description "The hover state background color for elements showing indication 8."]
2401
3265
  // [TranslationKey "sapIndication8HvrBg"]
@@ -2802,6 +3666,18 @@
2802
3666
  // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
2803
3667
  // @sapFontUrl_72_Bold_woff: none;
2804
3668
 
3669
+ // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
3670
+ // @sapFontUrl_72_Semibold_woff2: none;
3671
+
3672
+ // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
3673
+ // @sapFontUrl_72_Semibold_woff: none;
3674
+
3675
+ // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
3676
+ // @sapFontUrl_72_SemiboldDuplex_woff2: none;
3677
+
3678
+ // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
3679
+ // @sapFontUrl_72_SemiboldDuplex_woff: none;
3680
+
2805
3681
  // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
2806
3682
  // @sapFontUrl_72_Light_woff2: none;
2807
3683
 
@@ -2820,6 +3696,18 @@
2820
3696
  // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
2821
3697
  // @sapFontUrl_72_Bold_full_woff: none;
2822
3698
 
3699
+ // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
3700
+ // @sapFontUrl_72_Semibold_full_woff2: none;
3701
+
3702
+ // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
3703
+ // @sapFontUrl_72_Semibold_full_woff: none;
3704
+
3705
+ // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
3706
+ // @sapFontUrl_72_SemiboldDuplex_full_woff2: none;
3707
+
3708
+ // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
3709
+ // @sapFontUrl_72_SemiboldDuplex_full_woff: none;
3710
+
2823
3711
  // [Tags "SapInternal", "Base", "URI", "Font", "Protected"]
2824
3712
  // @sapFontUrl_72_Light_full_woff2: none;
2825
3713
 
@@ -2950,11 +3838,6 @@
2950
3838
  // [Tags "Base", "Shell", "Protected", "Deprecated"]
2951
3839
  @sapShell_BackgroundGradient: @sapShell_BackgroundImage;
2952
3840
 
2953
- // [Label "deprecated - Group Title Font Size"]
2954
- // [Description "The font size of the group title (deprecated)."]
2955
- // [Tags "Base", "Group", "Dimension", "Font", "Protected", "Deprecated"]
2956
- @sapGroup_Title_FontSize: @sapDeprecated_Dimension;
2957
-
2958
3841
  // [Tags "SapInternal", "Base", "Color", "Protected"]
2959
3842
  @sapDeprecated_Color: lime;
2960
3843
 
@@ -3012,6 +3895,13 @@
3012
3895
  // src: local('72'), @sapFontUrl_72_Regular_woff2 format('woff2'), @sapFontUrl_72_Regular_woff format('woff');
3013
3896
  // }
3014
3897
 
3898
+ // @font-face {
3899
+ // font-family: '72';
3900
+ // font-style: normal;
3901
+ // font-weight: 600;
3902
+ // src: local('72-Semibold'), @sapFontUrl_72_Semibold_woff2 format('woff2'), @sapFontUrl_72_Semibold_woff format('woff');
3903
+ // }
3904
+
3015
3905
  // @font-face {
3016
3906
  // font-family: '72';
3017
3907
  // font-style: normal;
@@ -3033,6 +3923,13 @@
3033
3923
  // src: @sapFontUrl_72_Regular_full_woff2 format('woff2'), @sapFontUrl_72_Regular_full_woff format('woff');
3034
3924
  // }
3035
3925
 
3926
+ // @font-face {
3927
+ // font-family: '72full';
3928
+ // font-style: normal;
3929
+ // font-weight: 600;
3930
+ // src: @sapFontUrl_72_Semibold_full_woff2 format('woff2'), @sapFontUrl_72_Semibold_full_woff format('woff');
3931
+ // }
3932
+
3036
3933
  // @font-face {
3037
3934
  // font-family: '72full';
3038
3935
  // font-style: normal;
@@ -3097,6 +3994,26 @@
3097
3994
  // src: @sapFontUrl_72_Bold_full_woff2 format('woff2'), @sapFontUrl_72_Bold_full_woff format('woff');
3098
3995
  // }
3099
3996
 
3997
+ // @font-face {
3998
+ // font-family: '72-Semibold';
3999
+ // src: local('72-Semibold'), @sapFontUrl_72_Semibold_woff2 format('woff2'), @sapFontUrl_72_Semibold_woff format('woff');
4000
+ // }
4001
+
4002
+ // @font-face {
4003
+ // font-family: '72-Semiboldfull';
4004
+ // src: @sapFontUrl_72_Semibold_full_woff2 format('woff2'), @sapFontUrl_72_Semibold_full_woff format('woff');
4005
+ // }
4006
+
4007
+ // @font-face {
4008
+ // font-family: '72-SemiboldDuplex';
4009
+ // src: local('72-SemiboldDuplex'), @sapFontUrl_72_SemiboldDuplex_woff2 format('woff2'), @sapFontUrl_72_SemiboldDuplex_woff format('woff');
4010
+ // }
4011
+
4012
+ // @font-face {
4013
+ // font-family: '72-SemiboldDuplexfull';
4014
+ // src: @sapFontUrl_72_SemiboldDuplex_full_woff2 format('woff2'), @sapFontUrl_72_SemiboldDuplex_full_woff format('woff');
4015
+ // }
4016
+
3100
4017
  // @font-face {
3101
4018
  // font-family: '72Black';
3102
4019
  // src: local('72Black'), @sapFontUrl_72_Black_woff2 format('woff2'), @sapFontUrl_72_Black_woff format('woff');
@@ -3154,14 +4071,18 @@
3154
4071
  // fill: @sapPositiveElementColor !important;
3155
4072
  // }
3156
4073
 
4074
+ // .sapSvgIconBase {
4075
+ // fill: @sapBaseColor !important;
4076
+ // }
4077
+
3157
4078
  // /**
3158
- // * Copyright (c) 2012-2020 SAP SE or an SAP affiliate company and Theming Base Content contributors. Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
3159
- // * Theming Engine 1.51.0
3160
- // * data:{"sModified":"2021-10-12T13:35:50Z"}
4079
+ // * Copyright (c) 2012-2020 SAP SE or an SAP affiliate company. All rights reserved.
4080
+ // * Theming Engine 1.69.2
4081
+ // * data:{"sModified":"2022-04-05T12:29:16Z"}
3161
4082
  // */
3162
4083
 
3163
4084
 
3164
- /******************* FILE /Base/baseLib/sap_belize_hcw/base.less (Version 11.1.34) *******************/
4085
+ /******************* FILE /Base/baseLib/sap_belize_hcw/base.less (Version 11.1.38) *******************/
3165
4086
 
3166
4087
 
3167
4088
  // [Tags "SapInternal", "Base", "Dimension", "Protected"]
@@ -3425,6 +4346,12 @@
3425
4346
  // [Tags "!Protected"]
3426
4347
  @sapContent_MarkerTextColor: @sapTextColor;
3427
4348
 
4349
+ // [#Tags "!Protected"]
4350
+ @sapContent_MeasureIndicatorColor: @sapField_BorderColor;
4351
+
4352
+ // [Tags "!Protected"]
4353
+ @sapContent_Selected_MeasureIndicatorColor: @sapField_BorderColor;
4354
+
3428
4355
  // [Tags "!Protected"]
3429
4356
  @sapContent_Placeholderloading_Background: @sapHC_ReducedForeground;
3430
4357
 
@@ -3443,6 +4370,9 @@
3443
4370
  // [Tags "!Protected"]
3444
4371
  @sapContent_UnratedColor: @sapHC_ReducedAltForeground;
3445
4372
 
4373
+ // [Tags "!Protected"]
4374
+ @sapContent_BusyColor: @sapContent_IconColor;
4375
+
3446
4376
  // [Tags "!Protected"]
3447
4377
  @sapContent_FocusColor: @sapHC_StandardForeground;
3448
4378
 
@@ -3562,25 +4492,68 @@
3562
4492
 
3563
4493
  // [Tags "!Protected"]
3564
4494
  @sapContent_Selected_ForegroundColor: @sapHC_StandardForeground;
4495
+
4496
+ // [Tags "!Protected"]
4497
+ @sapContent_ForcedColorAdjust: none;
4498
+
4499
+ // [Tags "!Protected"]
3565
4500
  @sapContent_Illustrative_Color1: #212628;
4501
+
4502
+ // [Tags "!Protected"]
3566
4503
  @sapContent_Illustrative_Color2: #434e56;
4504
+
4505
+ // [Tags "!Protected"]
3567
4506
  @sapContent_Illustrative_Color3: #62737c;
4507
+
4508
+ // [Tags "!Protected"]
3568
4509
  @sapContent_Illustrative_Color4: #030303;
4510
+
4511
+ // [Tags "!Protected"]
3569
4512
  @sapContent_Illustrative_Color5: #9da4aa;
4513
+
4514
+ // [Tags "!Protected"]
3570
4515
  @sapContent_Illustrative_Color6: #c6cace;
4516
+
4517
+ // [Tags "!Protected"]
3571
4518
  @sapContent_Illustrative_Color7: #e7e9ea;
4519
+
4520
+ // [Tags "!Protected"]
3572
4521
  @sapContent_Illustrative_Color8: #fff;
4522
+
4523
+ // [Tags "!Protected"]
3573
4524
  @sapContent_Illustrative_Color9: #64edd2;
4525
+
4526
+ // [Tags "!Protected"]
3574
4527
  @sapContent_Illustrative_Color10: #ebf8ff;
4528
+
4529
+ // [Tags "!Protected"]
3575
4530
  @sapContent_Illustrative_Color11: #f31ded;
4531
+
4532
+ // [Tags "!Protected"]
3576
4533
  @sapContent_Illustrative_Color12: #5dc122;
4534
+
4535
+ // [Tags "!Protected"]
3577
4536
  @sapContent_Illustrative_Color13: #005dc9;
4537
+
4538
+ // [Tags "!Protected"]
3578
4539
  @sapContent_Illustrative_Color14: #004da5;
4540
+
4541
+ // [Tags "!Protected"]
3579
4542
  @sapContent_Illustrative_Color15: #cc7400;
4543
+
4544
+ // [Tags "!Protected"]
3580
4545
  @sapContent_Illustrative_Color16: #3b0ac6;
4546
+
4547
+ // [Tags "!Protected"]
3581
4548
  @sapContent_Illustrative_Color17: #00a58a;
4549
+
4550
+ // [Tags "!Protected"]
3582
4551
  @sapContent_Illustrative_Color18: #d1efff;
4552
+
4553
+ // [Tags "!Protected"]
3583
4554
  @sapContent_Illustrative_Color19: #b8e6ff;
4555
+
4556
+ // [Tags "!Protected"]
3584
4557
  @sapContent_Illustrative_Color20: #9eddff;
3585
4558
 
3586
4559
  // [Tags "!Protected"]
@@ -3589,6 +4562,12 @@
3589
4562
  // [Tags "!Protected"]
3590
4563
  @sapFontBoldFamily: "72-Bold", "72-Boldfull", "72", "72full", Arial, Helvetica, sans-serif;
3591
4564
 
4565
+ // [Tags "!Protected"]
4566
+ @sapFontSemiboldFamily: "72-Semibold", "72-Semiboldfull", "72", "72full", Arial, Helvetica, sans-serif;
4567
+
4568
+ // [Tags "!Protected"]
4569
+ @sapFontSemiboldDuplexFamily: "72-SemiboldDuplex", "72-SemiboldDuplexfull", "72", "72full", Arial, Helvetica, sans-serif;
4570
+
3592
4571
  // [Tags "!Protected"]
3593
4572
  @sapFontBlackFamily: "72Black", "72", "72full", Arial, Helvetica, sans-serif;
3594
4573
 
@@ -3728,55 +4707,145 @@
3728
4707
  @sapShell_NeutralColor: @sapNeutralColor;
3729
4708
 
3730
4709
  // [Tags "!Protected"]
3731
- @sapButton_Background: @sapBackgroundColor;
4710
+ @sapAvatar_1_Background: @sapBackgroundColor;
3732
4711
 
3733
4712
  // [Tags "!Protected"]
3734
- @sapButton_BorderColor: @sapHC_StandardForeground;
4713
+ @sapAvatar_1_BorderColor: @sapGroup_ContentBorderColor;
3735
4714
 
3736
4715
  // [Tags "!Protected"]
3737
- @sapButton_BorderWidth: @sapElement_BorderWidth;
4716
+ @sapAvatar_1_TextColor: contrast(@sapAvatar_1_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
3738
4717
 
3739
4718
  // [Tags "!Protected"]
3740
- @sapButton_BorderCornerRadius: 0.375 * @sapContent_GridSize;
4719
+ @sapAvatar_2_Background: @sapBackgroundColor;
3741
4720
 
3742
4721
  // [Tags "!Protected"]
3743
- @sapButton_TextColor: contrast(@sapButton_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4722
+ @sapAvatar_2_BorderColor: @sapGroup_ContentBorderColor;
3744
4723
 
3745
4724
  // [Tags "!Protected"]
3746
- @sapButton_Hover_Background: @sapHighlightColor;
4725
+ @sapAvatar_2_TextColor: contrast(@sapAvatar_2_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
3747
4726
 
3748
4727
  // [Tags "!Protected"]
3749
- @sapButton_Hover_BorderColor: @sapButton_BorderColor;
4728
+ @sapAvatar_3_Background: @sapBackgroundColor;
3750
4729
 
3751
4730
  // [Tags "!Protected"]
3752
- @sapButton_Hover_TextColor: contrast(@sapButton_Hover_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4731
+ @sapAvatar_3_BorderColor: @sapGroup_ContentBorderColor;
3753
4732
 
3754
4733
  // [Tags "!Protected"]
3755
- @sapButton_IconColor: contrast(@sapButton_Background, @sapContent_IconColor, @sapContent_ContrastIconColor, @sapContent_ContrastTextThreshold);
4734
+ @sapAvatar_3_TextColor: contrast(@sapAvatar_3_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
3756
4735
 
3757
4736
  // [Tags "!Protected"]
3758
- @sapButton_Active_Background: @sapActiveColor;
4737
+ @sapAvatar_4_Background: @sapBackgroundColor;
3759
4738
 
3760
4739
  // [Tags "!Protected"]
3761
- @sapButton_Active_BorderColor: @sapButton_BorderColor;
4740
+ @sapAvatar_4_BorderColor: @sapGroup_ContentBorderColor;
3762
4741
 
3763
4742
  // [Tags "!Protected"]
3764
- @sapButton_Active_TextColor: contrast(@sapButton_Active_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4743
+ @sapAvatar_4_TextColor: contrast(@sapAvatar_4_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
3765
4744
 
3766
4745
  // [Tags "!Protected"]
3767
- @sapButton_Emphasized_Background: @sapButton_Background;
4746
+ @sapAvatar_5_Background: @sapBackgroundColor;
3768
4747
 
3769
4748
  // [Tags "!Protected"]
3770
- @sapButton_Emphasized_BorderColor: @sapButton_BorderColor;
4749
+ @sapAvatar_5_BorderColor: @sapGroup_ContentBorderColor;
3771
4750
 
3772
4751
  // [Tags "!Protected"]
3773
- @sapButton_Emphasized_TextColor: contrast(@sapButton_Emphasized_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4752
+ @sapAvatar_5_TextColor: contrast(@sapAvatar_5_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
3774
4753
 
3775
4754
  // [Tags "!Protected"]
3776
- @sapButton_Emphasized_Hover_Background: @sapButton_Hover_Background;
4755
+ @sapAvatar_6_Background: @sapBackgroundColor;
3777
4756
 
3778
4757
  // [Tags "!Protected"]
3779
- @sapButton_Emphasized_Hover_BorderColor: @sapButton_Emphasized_BorderColor;
4758
+ @sapAvatar_6_BorderColor: @sapGroup_ContentBorderColor;
4759
+
4760
+ // [Tags "!Protected"]
4761
+ @sapAvatar_6_TextColor: contrast(@sapAvatar_6_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4762
+
4763
+ // [Tags "!Protected"]
4764
+ @sapAvatar_7_Background: @sapBackgroundColor;
4765
+
4766
+ // [Tags "!Protected"]
4767
+ @sapAvatar_7_BorderColor: @sapGroup_ContentBorderColor;
4768
+
4769
+ // [Tags "!Protected"]
4770
+ @sapAvatar_7_TextColor: contrast(@sapAvatar_7_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4771
+
4772
+ // [Tags "!Protected"]
4773
+ @sapAvatar_8_Background: @sapBackgroundColor;
4774
+
4775
+ // [Tags "!Protected"]
4776
+ @sapAvatar_8_BorderColor: @sapGroup_ContentBorderColor;
4777
+
4778
+ // [Tags "!Protected"]
4779
+ @sapAvatar_8_TextColor: contrast(@sapAvatar_8_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4780
+
4781
+ // [Tags "!Protected"]
4782
+ @sapAvatar_9_Background: @sapBackgroundColor;
4783
+
4784
+ // [Tags "!Protected"]
4785
+ @sapAvatar_9_BorderColor: @sapGroup_ContentBorderColor;
4786
+
4787
+ // [Tags "!Protected"]
4788
+ @sapAvatar_9_TextColor: contrast(@sapAvatar_9_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4789
+
4790
+ // [Tags "!Protected"]
4791
+ @sapAvatar_10_Background: @sapBackgroundColor;
4792
+
4793
+ // [Tags "!Protected"]
4794
+ @sapAvatar_10_BorderColor: @sapGroup_ContentBorderColor;
4795
+
4796
+ // [Tags "!Protected"]
4797
+ @sapAvatar_10_TextColor: contrast(@sapAvatar_10_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4798
+
4799
+ // [Tags "!Protected"]
4800
+ @sapButton_Background: @sapBackgroundColor;
4801
+
4802
+ // [Tags "!Protected"]
4803
+ @sapButton_BorderColor: @sapHC_StandardForeground;
4804
+
4805
+ // [Tags "!Protected"]
4806
+ @sapButton_BorderWidth: @sapElement_BorderWidth;
4807
+
4808
+ // [Tags "!Protected"]
4809
+ @sapButton_BorderCornerRadius: 0.375 * @sapContent_GridSize;
4810
+
4811
+ // [Tags "!Protected"]
4812
+ @sapButton_TextColor: contrast(@sapButton_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4813
+
4814
+ // [Tags "!Protected"]
4815
+ @sapButton_Hover_Background: @sapHighlightColor;
4816
+
4817
+ // [Tags "!Protected"]
4818
+ @sapButton_Hover_BorderColor: @sapButton_BorderColor;
4819
+
4820
+ // [Tags "!Protected"]
4821
+ @sapButton_Hover_TextColor: contrast(@sapButton_Hover_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4822
+
4823
+ // [Tags "!Protected"]
4824
+ @sapButton_IconColor: contrast(@sapButton_Background, @sapContent_IconColor, @sapContent_ContrastIconColor, @sapContent_ContrastTextThreshold);
4825
+
4826
+ // [Tags "!Protected"]
4827
+ @sapButton_Active_Background: @sapActiveColor;
4828
+
4829
+ // [Tags "!Protected"]
4830
+ @sapButton_Active_BorderColor: @sapButton_BorderColor;
4831
+
4832
+ // [Tags "!Protected"]
4833
+ @sapButton_Active_TextColor: contrast(@sapButton_Active_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4834
+
4835
+ // [Tags "!Protected"]
4836
+ @sapButton_Emphasized_Background: @sapButton_Background;
4837
+
4838
+ // [Tags "!Protected"]
4839
+ @sapButton_Emphasized_BorderColor: @sapButton_BorderColor;
4840
+
4841
+ // [Tags "!Protected"]
4842
+ @sapButton_Emphasized_TextColor: contrast(@sapButton_Emphasized_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4843
+
4844
+ // [Tags "!Protected"]
4845
+ @sapButton_Emphasized_Hover_Background: @sapButton_Hover_Background;
4846
+
4847
+ // [Tags "!Protected"]
4848
+ @sapButton_Emphasized_Hover_BorderColor: @sapButton_Emphasized_BorderColor;
3780
4849
 
3781
4850
  // [Tags "!Protected"]
3782
4851
  @sapButton_Emphasized_Hover_TextColor: contrast(@sapButton_Emphasized_Hover_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
@@ -4066,6 +5135,9 @@
4066
5135
  // [Tags "!Protected"]
4067
5136
  @sapButton_Information_Active_BorderColor: @sapButton_Active_BorderColor;
4068
5137
 
5138
+ // [Tags "!Protected"]
5139
+ @sapButton_Information_Active_TextColor: contrast(@sapButton_Information_Active_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5140
+
4069
5141
  // [Tags "!Protected"]
4070
5142
  @sapButton_Neutral_Background: @sapButton_Background;
4071
5143
 
@@ -4093,17 +5165,125 @@
4093
5165
  // [Tags "!Protected"]
4094
5166
  @sapButton_Neutral_Active_TextColor: contrast(@sapButton_Neutral_Active_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4095
5167
 
5168
+ // [Tags "!Protected"]
5169
+ @sapButton_Track_Background: @sapButton_Background;
5170
+
5171
+ // [Tags "!Protected"]
5172
+ @sapButton_Track_BorderColor: @sapContent_ForegroundBorderColor;
5173
+
5174
+ // [Tags "!Protected"]
5175
+ @sapButton_Track_TextColor: contrast(@sapButton_Track_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5176
+
5177
+ // [Tags "!Protected"]
5178
+ @sapButton_Track_Hover_Background: @sapButton_Hover_Background;
5179
+
5180
+ // [Tags "!Protected"]
5181
+ @sapButton_Track_Hover_BorderColor: @sapButton_Track_BorderColor;
5182
+
4096
5183
  // [Tags "!Protected"]
4097
5184
  @sapButton_Track_Selected_Background: @sapButton_Selected_Background;
4098
5185
 
5186
+ // [Tags "!Protected"]
5187
+ @sapButton_Track_Selected_BorderColor: @sapButton_Selected_BorderColor;
5188
+
4099
5189
  // [Tags "!Protected"]
4100
5190
  @sapButton_Track_Selected_TextColor: contrast(@sapButton_Track_Selected_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4101
5191
 
4102
5192
  // [Tags "!Protected"]
4103
- @sapButton_Track_Background: @sapButton_Background;
5193
+ @sapButton_Track_Selected_Hover_Background: @sapButton_Selected_Hover_Background;
4104
5194
 
4105
5195
  // [Tags "!Protected"]
4106
- @sapButton_Track_TextColor: contrast(@sapButton_Track_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5196
+ @sapButton_Track_Selected_Hover_BorderColor: @sapButton_Selected_Hover_BorderColor;
5197
+
5198
+ // [Tags "!Protected"]
5199
+ @sapButton_Handle_Background: @sapButton_Background;
5200
+
5201
+ // [Tags "!Protected"]
5202
+ @sapButton_Handle_BorderColor: @sapButton_BorderColor;
5203
+
5204
+ // [Tags "!Protected"]
5205
+ @sapButton_Handle_TextColor: contrast(@sapButton_Handle_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5206
+
5207
+ // [Tags "!Protected"]
5208
+ @sapButton_Handle_Hover_Background: @sapButton_Hover_Background;
5209
+
5210
+ // [Tags "!Protected"]
5211
+ @sapButton_Handle_Hover_BorderColor: @sapButton_Hover_BorderColor;
5212
+
5213
+ // [Tags "!Protected"]
5214
+ @sapButton_Handle_Selected_Background: @sapButton_Selected_Background;
5215
+
5216
+ // [Tags "!Protected"]
5217
+ @sapButton_Handle_Selected_BorderColor: @sapButton_Selected_BorderColor;
5218
+
5219
+ // [Tags "!Protected"]
5220
+ @sapButton_Handle_Selected_TextColor: contrast(@sapButton_Handle_Selected_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5221
+
5222
+ // [Tags "!Protected"]
5223
+ @sapButton_Handle_Selected_Hover_Background: @sapButton_Selected_Hover_Background;
5224
+
5225
+ // [Tags "!Protected"]
5226
+ @sapButton_Handle_Selected_Hover_BorderColor: @sapButton_Selected_Hover_BorderColor;
5227
+
5228
+ // [Tags "!Protected"]
5229
+ @sapButton_Track_Negative_Background: @sapButton_Background;
5230
+
5231
+ // [Tags "!Protected"]
5232
+ @sapButton_Track_Negative_BorderColor: @sapNegativeElementColor;
5233
+
5234
+ // [Tags "!Protected"]
5235
+ @sapButton_Track_Negative_TextColor: contrast(@sapButton_Track_Negative_Background, @sapNegativeElementColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5236
+
5237
+ // [Tags "!Protected"]
5238
+ @sapButton_Track_Negative_Hover_Background: @sapButton_Hover_Background;
5239
+
5240
+ // [Tags "!Protected"]
5241
+ @sapButton_Track_Negative_Hover_BorderColor: @sapButton_Track_Negative_BorderColor;
5242
+
5243
+ // [Tags "!Protected"]
5244
+ @sapButton_Handle_Negative_Background: @sapButton_Handle_Background;
5245
+
5246
+ // [Tags "!Protected"]
5247
+ @sapButton_Handle_Negative_BorderColor: @sapNegativeElementColor;
5248
+
5249
+ // [Tags "!Protected"]
5250
+ @sapButton_Handle_Negative_TextColor: contrast(@sapButton_Handle_Negative_Background, @sapNegativeElementColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5251
+
5252
+ // [Tags "!Protected"]
5253
+ @sapButton_Handle_Negative_Hover_Background: @sapButton_Handle_Hover_Background;
5254
+
5255
+ // [Tags "!Protected"]
5256
+ @sapButton_Handle_Negative_Hover_BorderColor: @sapButton_Handle_Negative_BorderColor;
5257
+
5258
+ // [Tags "!Protected"]
5259
+ @sapButton_Track_Positive_Background: @sapButton_Background;
5260
+
5261
+ // [Tags "!Protected"]
5262
+ @sapButton_Track_Positive_BorderColor: @sapPositiveElementColor;
5263
+
5264
+ // [Tags "!Protected"]
5265
+ @sapButton_Track_Positive_TextColor: contrast(@sapButton_Track_Positive_Background, @sapPositiveElementColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5266
+
5267
+ // [Tags "!Protected"]
5268
+ @sapButton_Track_Positive_Hover_Background: @sapButton_Track_Positive_Background;
5269
+
5270
+ // [Tags "!Protected"]
5271
+ @sapButton_Track_Positive_Hover_BorderColor: @sapButton_Track_BorderColor;
5272
+
5273
+ // [Tags "!Protected"]
5274
+ @sapButton_Handle_Positive_Background: @sapButton_Handle_Background;
5275
+
5276
+ // [Tags "!Protected"]
5277
+ @sapButton_Handle_Positive_BorderColor: @sapPositiveElementColor;
5278
+
5279
+ // [Tags "!Protected"]
5280
+ @sapButton_Handle_Positive_TextColor: contrast(@sapButton_Handle_Positive_Background, @sapPositiveTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5281
+
5282
+ // [Tags "!Protected"]
5283
+ @sapButton_Handle_Positive_Hover_Background: @sapButton_Handle_Hover_Background;
5284
+
5285
+ // [Tags "!Protected"]
5286
+ @sapButton_Handle_Positive_Hover_BorderColor: @sapButton_Handle_Positive_BorderColor;
4107
5287
 
4108
5288
  // [Tags "!Protected"]
4109
5289
  @sapButton_TokenBackground: @sapButton_Background;
@@ -4114,6 +5294,9 @@
4114
5294
  // [Tags "!Protected"]
4115
5295
  @sapField_Background: @sapBackgroundColor;
4116
5296
 
5297
+ // [Tags "!Protected"]
5298
+ @sapField_BackgroundStyle: none;
5299
+
4117
5300
  // [Tags "!Protected"]
4118
5301
  @sapField_TextColor: @sapTextColor;
4119
5302
 
@@ -4129,12 +5312,18 @@
4129
5312
  // [Tags "!Protected"]
4130
5313
  @sapField_BorderWidth: @sapElement_BorderWidth;
4131
5314
 
5315
+ // [Tags "!Protected"]
5316
+ @sapField_BorderStyle: solid;
5317
+
4132
5318
  // [Tags "!Protected"]
4133
5319
  @sapField_BorderCornerRadius: 0;
4134
5320
 
4135
5321
  // [Tags "!Protected"]
4136
5322
  @sapField_Hover_Background: @sapField_Background;
4137
5323
 
5324
+ // [Tags "!Protected"]
5325
+ @sapField_Hover_BackgroundStyle: none;
5326
+
4138
5327
  // [Tags "!Protected"]
4139
5328
  @sapField_Hover_BorderColor: @sapField_BorderColor;
4140
5329
 
@@ -4156,9 +5345,15 @@
4156
5345
  // [Tags "!Protected"]
4157
5346
  @sapField_ReadOnly_Background: @sapHC_ReducedBackground;
4158
5347
 
5348
+ // [Tags "!Protected"]
5349
+ @sapField_ReadOnly_BackgroundStyle: none;
5350
+
4159
5351
  // [Tags "!Protected"]
4160
5352
  @sapField_ReadOnly_BorderColor: @sapHC_ReducedAltForeground;
4161
5353
 
5354
+ // [Tags "!Protected"]
5355
+ @sapField_ReadOnly_BorderStyle: @sapField_BorderStyle;
5356
+
4162
5357
  // [Tags "!Protected"]
4163
5358
  @sapField_ReadOnly_HelpBackground: @sapField_ReadOnly_Background;
4164
5359
 
@@ -4171,6 +5366,9 @@
4171
5366
  // [Tags "!Protected"]
4172
5367
  @sapField_InvalidBackground: @sapHighlightColor;
4173
5368
 
5369
+ // [Tags "!Protected"]
5370
+ @sapField_InvalidBackgroundStyle: none;
5371
+
4174
5372
  // [Tags "!Protected"]
4175
5373
  @sapField_InvalidBorderWidth: 0.125 * @sapContent_GridSize;
4176
5374
 
@@ -4183,6 +5381,9 @@
4183
5381
  // [Tags "!Protected"]
4184
5382
  @sapField_WarningBackground: @sapField_Background;
4185
5383
 
5384
+ // [Tags "!Protected"]
5385
+ @sapField_WarningBackgroundStyle: none;
5386
+
4186
5387
  // [Tags "!Protected"]
4187
5388
  @sapField_WarningBorderWidth: 0.125 * @sapContent_GridSize;
4188
5389
 
@@ -4195,6 +5396,9 @@
4195
5396
  // [Tags "!Protected"]
4196
5397
  @sapField_SuccessBackground: @sapField_Background;
4197
5398
 
5399
+ // [Tags "!Protected"]
5400
+ @sapField_SuccessBackgroundStyle: none;
5401
+
4198
5402
  // [Tags "!Protected"]
4199
5403
  @sapField_SuccessBorderWidth: 0.0625 * @sapContent_GridSize;
4200
5404
 
@@ -4207,6 +5411,9 @@
4207
5411
  // [Tags "!Protected"]
4208
5412
  @sapField_InformationBackground: @sapField_Background;
4209
5413
 
5414
+ // [Tags "!Protected"]
5415
+ @sapField_InformationBackgroundStyle: none;
5416
+
4210
5417
  // [Tags "!Protected"]
4211
5418
  @sapField_InformationBorderWidth: 0.0625 * @sapContent_GridSize;
4212
5419
 
@@ -4222,6 +5429,9 @@
4222
5429
  // [Tags "!Protected"]
4223
5430
  @sapGroup_TitleTextColor: contrast(@sapBackgroundColor, @sapTitleColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4224
5431
 
5432
+ // [Tags "!Protected"]
5433
+ @sapGroup_Title_FontSize: @sapFontHeader4Size;
5434
+
4225
5435
  // [Tags "!Protected"]
4226
5436
  @sapGroup_ContentBackground: @sapBackgroundColor;
4227
5437
 
@@ -4315,6 +5525,114 @@
4315
5525
  // [Tags "!Protected"]
4316
5526
  @sapList_TableFixedBorderColor: @sapHC_StandardForeground;
4317
5527
 
5528
+ // [Tags "!Protected"]
5529
+ @sapMessage_ErrorBorderColor: @sapErrorBorderColor;
5530
+
5531
+ // [Tags "!Protected"]
5532
+ @sapMessage_WarningBorderColor: @sapWarningBorderColor;
5533
+
5534
+ // [Tags "!Protected"]
5535
+ @sapMessage_SuccessBorderColor: @sapSuccessBorderColor;
5536
+
5537
+ // [Tags "!Protected"]
5538
+ @sapMessage_InformationBorderColor: @sapInformationBorderColor;
5539
+
5540
+ // [Tags "!Protected"]
5541
+ @sapPopover_BorderCornerRadius: @sapElement_BorderCornerRadius;
5542
+
5543
+ // [Tags "!Protected"]
5544
+ @sapProgress_Background: @sapField_Background;
5545
+
5546
+ // [Tags "!Protected"]
5547
+ @sapProgress_BorderColor: @sapField_BorderColor;
5548
+
5549
+ // [Tags "!Protected"]
5550
+ @sapProgress_TextColor: contrast(@sapProgress_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5551
+
5552
+ // [Tags "!Protected"]
5553
+ @sapProgress_FontSize: @sapFontSmallSize;
5554
+
5555
+ // [Tags "!Protected"]
5556
+ @sapProgress_NegativeBackground: @sapProgress_Background;
5557
+
5558
+ // [Tags "!Protected"]
5559
+ @sapProgress_NegativeBorderColor: @sapProgress_BorderColor;
5560
+
5561
+ // [Tags "!Protected"]
5562
+ @sapProgress_NegativeTextColor: contrast(@sapProgress_NegativeBackground, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5563
+
5564
+ // [Tags "!Protected"]
5565
+ @sapProgress_CriticalBackground: @sapProgress_Background;
5566
+
5567
+ // [Tags "!Protected"]
5568
+ @sapProgress_CriticalBorderColor: @sapProgress_BorderColor;
5569
+
5570
+ // [Tags "!Protected"]
5571
+ @sapProgress_CriticalTextColor: contrast(@sapProgress_CriticalBackground, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5572
+
5573
+ // [Tags "!Protected"]
5574
+ @sapProgress_PositiveBackground: @sapProgress_Background;
5575
+
5576
+ // [Tags "!Protected"]
5577
+ @sapProgress_PositiveBorderColor: @sapProgress_BorderColor;
5578
+
5579
+ // [Tags "!Protected"]
5580
+ @sapProgress_PositiveTextColor: contrast(@sapProgress_PositiveBackground, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5581
+
5582
+ // [Tags "!Protected"]
5583
+ @sapProgress_InformationBackground: @sapProgress_Background;
5584
+
5585
+ // [Tags "!Protected"]
5586
+ @sapProgress_InformationBorderColor: @sapProgress_BorderColor;
5587
+
5588
+ // [Tags "!Protected"]
5589
+ @sapProgress_InformationTextColor: contrast(@sapProgress_InformationBackground, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5590
+
5591
+ // [Tags "!Protected"]
5592
+ @sapProgress_Value_Background: @sapHighlightColor;
5593
+
5594
+ // [Tags "!Protected"]
5595
+ @sapProgress_Value_BorderColor: @sapProgress_BorderColor;
5596
+
5597
+ // [Tags "!Protected"]
5598
+ @sapProgress_Value_TextColor: contrast(@sapProgress_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5599
+
5600
+ // [Tags "!Protected"]
5601
+ @sapProgress_Value_NegativeBackground: @sapHighlightColor;
5602
+
5603
+ // [Tags "!Protected"]
5604
+ @sapProgress_Value_NegativeBorderColor: @sapProgress_BorderColor;
5605
+
5606
+ // [Tags "!Protected"]
5607
+ @sapProgress_Value_NegativeTextColor: contrast(@sapProgress_NegativeBackground, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5608
+
5609
+ // [Tags "!Protected"]
5610
+ @sapProgress_Value_CriticalBackground: @sapHighlightColor;
5611
+
5612
+ // [Tags "!Protected"]
5613
+ @sapProgress_Value_CriticalBorderColor: @sapProgress_BorderColor;
5614
+
5615
+ // [Tags "!Protected"]
5616
+ @sapProgress_Value_CriticalTextColor: contrast(@sapProgress_CriticalBackground, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5617
+
5618
+ // [Tags "!Protected"]
5619
+ @sapProgress_Value_PositiveBackground: @sapHighlightColor;
5620
+
5621
+ // [Tags "!Protected"]
5622
+ @sapProgress_Value_PositiveBorderColor: @sapProgress_BorderColor;
5623
+
5624
+ // [Tags "!Protected"]
5625
+ @sapProgress_Value_PositiveTextColor: contrast(@sapProgress_PositiveBackground, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5626
+
5627
+ // [Tags "!Protected"]
5628
+ @sapProgress_Value_InformationBackground: @sapHighlightColor;
5629
+
5630
+ // [Tags "!Protected"]
5631
+ @sapProgress_Value_InformationBorderColor: @sapProgress_BorderColor;
5632
+
5633
+ // [Tags "!Protected"]
5634
+ @sapProgress_Value_InformationTextColor: contrast(@sapProgress_InformationBackground, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5635
+
4318
5636
  // [Tags "!Protected"]
4319
5637
  @sapScrollBar_FaceColor: @sapHC_ReducedAltForeground;
4320
5638
 
@@ -4333,6 +5651,45 @@
4333
5651
  // [Tags "!Protected"]
4334
5652
  @sapScrollBar_Hover_FaceColor: @sapHC_StandardForeground;
4335
5653
 
5654
+ // [Tags "!Protected"]
5655
+ @sapSlider_Background: @sapNeutralBackground;
5656
+
5657
+ // [Tags "!Protected"]
5658
+ @sapSlider_BorderColor: @sapField_BorderColor;
5659
+
5660
+ // [Tags "!Protected"]
5661
+ @sapSlider_Selected_Background: @sapSelectedColor;
5662
+
5663
+ // [Tags "!Protected"]
5664
+ @sapSlider_Selected_BorderColor: @sapField_BorderColor;
5665
+
5666
+ // [Tags "!Protected"]
5667
+ @sapSlider_HandleBackground: @sapButton_Background;
5668
+
5669
+ // [Tags "!Protected"]
5670
+ @sapSlider_HandleBorderColor: @sapField_BorderColor;
5671
+
5672
+ // [Tags "!Protected"]
5673
+ @sapSlider_RangeHandleBackground: @sapSlider_HandleBackground;
5674
+
5675
+ // [Tags "!Protected"]
5676
+ @sapSlider_Hover_HandleBackground: @sapButton_Hover_Background;
5677
+
5678
+ // [Tags "!Protected"]
5679
+ @sapSlider_Hover_HandleBorderColor: @sapField_BorderColor;
5680
+
5681
+ // [Tags "!Protected"]
5682
+ @sapSlider_Hover_RangeHandleBackground: transparent;
5683
+
5684
+ // [Tags "!Protected"]
5685
+ @sapSlider_Active_HandleBackground: @sapButton_Active_Background;
5686
+
5687
+ // [Tags "!Protected"]
5688
+ @sapSlider_Active_HandleBorderColor: @sapField_BorderColor;
5689
+
5690
+ // [Tags "!Protected"]
5691
+ @sapSlider_Active_RangeHandleBackground: transparent;
5692
+
4336
5693
  // [Tags "!Protected"]
4337
5694
  @sapPageHeader_Background: @sapBaseColor;
4338
5695
 
@@ -4375,6 +5732,21 @@
4375
5732
  // [Tags "!Protected"]
4376
5733
  @sapObjectHeader_BorderColor: @sapHC_StandardForeground;
4377
5734
 
5735
+ // [Tags "!Protected"]
5736
+ @sapObjectHeader_Title_TextColor: contrast(@sapObjectHeader_Background, @sapTitleColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5737
+
5738
+ // [Tags "!Protected"]
5739
+ @sapObjectHeader_Title_FontSize: @sapFontHeader3Size;
5740
+
5741
+ // [Tags "!Protected"]
5742
+ @sapObjectHeader_Title_SnappedFontSize: @sapFontHeader3Size;
5743
+
5744
+ // [Tags "!Protected"]
5745
+ @sapObjectHeader_Title_FontFamily: @sapFontFamily;
5746
+
5747
+ // [Tags "!Protected"]
5748
+ @sapObjectHeader_Subtitle_TextColor: contrast(@sapObjectHeader_Background, @sapContent_LabelColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5749
+
4378
5750
  // [Tags "!Protected"]
4379
5751
  @sapBlockLayer_Background: @sapBackgroundColor;
4380
5752
 
@@ -4390,6 +5762,9 @@
4390
5762
  // [Tags "!Protected"]
4391
5763
  @sapTile_BorderColor: @sapHC_StandardForeground;
4392
5764
 
5765
+ // [Tags "!Protected"]
5766
+ @sapTile_BorderCornerRadius: 0.25rem;
5767
+
4393
5768
  // [Tags "!Protected"]
4394
5769
  @sapTile_TitleTextColor: contrast(@sapTile_Background, @sapTitleColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4395
5770
 
@@ -4410,30 +5785,76 @@
4410
5785
 
4411
5786
  // [Tags "!Protected"]
4412
5787
  @sapTile_OverlayForegroundColor: contrast(@sapTile_OverlayBackground, @sapTitleColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5788
+
5789
+ // [Tags "!Protected"]
4413
5790
  @sapAccentColor1: #5f5800;
5791
+
5792
+ // [Tags "!Protected"]
4414
5793
  @sapAccentColor2: #5e4101;
5794
+
5795
+ // [Tags "!Protected"]
4415
5796
  @sapAccentColor3: #973333;
5797
+
5798
+ // [Tags "!Protected"]
4416
5799
  @sapAccentColor4: #961d7c;
5800
+
5801
+ // [Tags "!Protected"]
4417
5802
  @sapAccentColor5: #365892;
5803
+
5804
+ // [Tags "!Protected"]
4418
5805
  @sapAccentColor6: #004ccb;
5806
+
5807
+ // [Tags "!Protected"]
4419
5808
  @sapAccentColor7: #105b5b;
5809
+
5810
+ // [Tags "!Protected"]
4420
5811
  @sapAccentColor8: #26340b;
5812
+
5813
+ // [Tags "!Protected"]
4421
5814
  @sapAccentColor9: #6c32a9;
5815
+
5816
+ // [Tags "!Protected"]
4422
5817
  @sapAccentColor10: #4a5964;
5818
+
5819
+ // [Tags "!Protected"]
4423
5820
  @sapAccentBackgroundColor1: #fff3b8;
5821
+
5822
+ // [Tags "!Protected"]
4424
5823
  @sapAccentBackgroundColor2: #ffd0e7;
5824
+
5825
+ // [Tags "!Protected"]
4425
5826
  @sapAccentBackgroundColor3: #fff0fa;
5827
+
5828
+ // [Tags "!Protected"]
4426
5829
  @sapAccentBackgroundColor4: #ffdcf3;
5830
+
5831
+ // [Tags "!Protected"]
4427
5832
  @sapAccentBackgroundColor5: #ded3ff;
5833
+
5834
+ // [Tags "!Protected"]
4428
5835
  @sapAccentBackgroundColor6: #d1efff;
5836
+
5837
+ // [Tags "!Protected"]
4429
5838
  @sapAccentBackgroundColor7: #c2fcee;
5839
+
5840
+ // [Tags "!Protected"]
4430
5841
  @sapAccentBackgroundColor8: #ebf5cb;
5842
+
5843
+ // [Tags "!Protected"]
4431
5844
  @sapAccentBackgroundColor9: #dafdf5;
5845
+
5846
+ // [Tags "!Protected"]
4432
5847
  @sapAccentBackgroundColor10: #eaecee;
4433
5848
 
4434
5849
  // [Tags "!Protected"]
4435
5850
  @sapIndicationColor_1: #780000;
4436
5851
 
5852
+ // [Tags "!Protected"]
5853
+ @sapIndicationColor_1_Background: @sapBackgroundColor;
5854
+
5855
+ // [Tags "!Protected"]
5856
+ @sapIndicationColor_1_BorderColor: @sapContent_ForegroundBorderColor;
5857
+
4437
5858
  // [Tags "!Protected"]
4438
5859
  @sapIndicationColor_1_Hover_Background: @sapButton_Hover_Background;
4439
5860
 
@@ -4441,11 +5862,17 @@
4441
5862
  @sapIndicationColor_1_Active_Background: @sapButton_Active_Background;
4442
5863
 
4443
5864
  // [Tags "!Protected"]
4444
- @sapIndicationColor_1_TextColor: contrast(@sapIndicationColor_1, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5865
+ @sapIndicationColor_1_TextColor: contrast(@sapIndicationColor_1_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4445
5866
 
4446
5867
  // [Tags "!Protected"]
4447
5868
  @sapIndicationColor_2: #ab0000;
4448
5869
 
5870
+ // [Tags "!Protected"]
5871
+ @sapIndicationColor_2_Background: @sapBackgroundColor;
5872
+
5873
+ // [Tags "!Protected"]
5874
+ @sapIndicationColor_2_BorderColor: @sapContent_ForegroundBorderColor;
5875
+
4449
5876
  // [Tags "!Protected"]
4450
5877
  @sapIndicationColor_2_Hover_Background: @sapButton_Hover_Background;
4451
5878
 
@@ -4453,11 +5880,17 @@
4453
5880
  @sapIndicationColor_2_Active_Background: @sapButton_Active_Background;
4454
5881
 
4455
5882
  // [Tags "!Protected"]
4456
- @sapIndicationColor_2_TextColor: contrast(@sapIndicationColor_2, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5883
+ @sapIndicationColor_2_TextColor: contrast(@sapIndicationColor_2_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4457
5884
 
4458
5885
  // [Tags "!Protected"]
4459
5886
  @sapIndicationColor_3: #5c5c00;
4460
5887
 
5888
+ // [Tags "!Protected"]
5889
+ @sapIndicationColor_3_Background: @sapBackgroundColor;
5890
+
5891
+ // [Tags "!Protected"]
5892
+ @sapIndicationColor_3_BorderColor: @sapContent_ForegroundBorderColor;
5893
+
4461
5894
  // [Tags "!Protected"]
4462
5895
  @sapIndicationColor_3_Hover_Background: @sapButton_Hover_Background;
4463
5896
 
@@ -4465,11 +5898,17 @@
4465
5898
  @sapIndicationColor_3_Active_Background: @sapButton_Active_Background;
4466
5899
 
4467
5900
  // [Tags "!Protected"]
4468
- @sapIndicationColor_3_TextColor: contrast(@sapIndicationColor_3, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5901
+ @sapIndicationColor_3_TextColor: contrast(@sapIndicationColor_3_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4469
5902
 
4470
5903
  // [Tags "!Protected"]
4471
5904
  @sapIndicationColor_4: #006362;
4472
5905
 
5906
+ // [Tags "!Protected"]
5907
+ @sapIndicationColor_4_Background: @sapBackgroundColor;
5908
+
5909
+ // [Tags "!Protected"]
5910
+ @sapIndicationColor_4_BorderColor: @sapContent_ForegroundBorderColor;
5911
+
4473
5912
  // [Tags "!Protected"]
4474
5913
  @sapIndicationColor_4_Hover_Background: @sapButton_Hover_Background;
4475
5914
 
@@ -4477,11 +5916,17 @@
4477
5916
  @sapIndicationColor_4_Active_Background: @sapButton_Active_Background;
4478
5917
 
4479
5918
  // [Tags "!Protected"]
4480
- @sapIndicationColor_4_TextColor: contrast(@sapIndicationColor_4, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5919
+ @sapIndicationColor_4_TextColor: contrast(@sapIndicationColor_4_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4481
5920
 
4482
5921
  // [Tags "!Protected"]
4483
5922
  @sapIndicationColor_5: #004ccb;
4484
5923
 
5924
+ // [Tags "!Protected"]
5925
+ @sapIndicationColor_5_Background: @sapBackgroundColor;
5926
+
5927
+ // [Tags "!Protected"]
5928
+ @sapIndicationColor_5_BorderColor: @sapContent_ForegroundBorderColor;
5929
+
4485
5930
  // [Tags "!Protected"]
4486
5931
  @sapIndicationColor_5_Hover_Background: @sapButton_Hover_Background;
4487
5932
 
@@ -4489,11 +5934,17 @@
4489
5934
  @sapIndicationColor_5_Active_Background: @sapButton_Active_Background;
4490
5935
 
4491
5936
  // [Tags "!Protected"]
4492
- @sapIndicationColor_5_TextColor: contrast(@sapIndicationColor_5, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5937
+ @sapIndicationColor_5_TextColor: contrast(@sapIndicationColor_5_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4493
5938
 
4494
5939
  // [Tags "!Protected"]
4495
5940
  @sapIndicationColor_6: #105b5b;
4496
5941
 
5942
+ // [Tags "!Protected"]
5943
+ @sapIndicationColor_6_Background: @sapBackgroundColor;
5944
+
5945
+ // [Tags "!Protected"]
5946
+ @sapIndicationColor_6_BorderColor: @sapContent_ForegroundBorderColor;
5947
+
4497
5948
  // [Tags "!Protected"]
4498
5949
  @sapIndicationColor_6_Hover_Background: @sapButton_Hover_Background;
4499
5950
 
@@ -4501,11 +5952,17 @@
4501
5952
  @sapIndicationColor_6_Active_Background: @sapButton_Active_Background;
4502
5953
 
4503
5954
  // [Tags "!Protected"]
4504
- @sapIndicationColor_6_TextColor: contrast(@sapIndicationColor_6, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5955
+ @sapIndicationColor_6_TextColor: contrast(@sapIndicationColor_6_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4505
5956
 
4506
5957
  // [Tags "!Protected"]
4507
5958
  @sapIndicationColor_7: #6c32a9;
4508
5959
 
5960
+ // [Tags "!Protected"]
5961
+ @sapIndicationColor_7_Background: @sapBackgroundColor;
5962
+
5963
+ // [Tags "!Protected"]
5964
+ @sapIndicationColor_7_BorderColor: @sapContent_ForegroundBorderColor;
5965
+
4509
5966
  // [Tags "!Protected"]
4510
5967
  @sapIndicationColor_7_Hover_Background: @sapButton_Hover_Background;
4511
5968
 
@@ -4513,11 +5970,17 @@
4513
5970
  @sapIndicationColor_7_Active_Background: @sapButton_Active_Background;
4514
5971
 
4515
5972
  // [Tags "!Protected"]
4516
- @sapIndicationColor_7_TextColor: contrast(@sapIndicationColor_7, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5973
+ @sapIndicationColor_7_TextColor: contrast(@sapIndicationColor_7_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4517
5974
 
4518
5975
  // [Tags "!Protected"]
4519
5976
  @sapIndicationColor_8: #961d7c;
4520
5977
 
5978
+ // [Tags "!Protected"]
5979
+ @sapIndicationColor_8_Background: @sapBackgroundColor;
5980
+
5981
+ // [Tags "!Protected"]
5982
+ @sapIndicationColor_8_BorderColor: @sapContent_ForegroundBorderColor;
5983
+
4521
5984
  // [Tags "!Protected"]
4522
5985
  @sapIndicationColor_8_Hover_Background: @sapButton_Hover_Background;
4523
5986
 
@@ -4525,13 +5988,13 @@
4525
5988
  @sapIndicationColor_8_Active_Background: @sapButton_Active_Background;
4526
5989
 
4527
5990
  // [Tags "!Protected"]
4528
- @sapIndicationColor_8_TextColor: contrast(@sapIndicationColor_8, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
5991
+ @sapIndicationColor_8_TextColor: contrast(@sapIndicationColor_8_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
4529
5992
 
4530
5993
  // [Tags "!Protected"]
4531
5994
  @sapLegend_WorkingBackground: darken(@sapList_Background, 15);
4532
5995
 
4533
5996
  // [Tags "!Protected"]
4534
- @sapLegend_NonWorkingBackground: darken(@sapList_Background, 30);
5997
+ @sapLegend_NonWorkingBackground: @sapHC_ReducedBackground;
4535
5998
 
4536
5999
  // [Tags "!Protected"]
4537
6000
  @sapLegend_CurrentDateTime: @sapAccentColor4;
@@ -4749,12 +6212,20 @@
4749
6212
  // @sapFontUrl_72_Regular_woff: url(./../baseTheme/fonts/72-Regular.woff);
4750
6213
  // @sapFontUrl_72_Bold_woff2: url(./../baseTheme/fonts/72-Bold.woff2);
4751
6214
  // @sapFontUrl_72_Bold_woff: url(./../baseTheme/fonts/72-Bold.woff);
6215
+ // @sapFontUrl_72_Semibold_woff2: url(./../baseTheme/fonts/72-Semibold.woff2);
6216
+ // @sapFontUrl_72_Semibold_woff: url(./../baseTheme/fonts/72-Semibold.woff);
6217
+ // @sapFontUrl_72_SemiboldDuplex_woff2: url(./../baseTheme/fonts/72-SemiboldDuplex.woff2);
6218
+ // @sapFontUrl_72_SemiboldDuplex_woff: url(./../baseTheme/fonts/72-SemiboldDuplex.woff);
4752
6219
  // @sapFontUrl_72_Light_woff2: url(./../baseTheme/fonts/72-Light.woff2);
4753
6220
  // @sapFontUrl_72_Light_woff: url(./../baseTheme/fonts/72-Light.woff);
4754
6221
  // @sapFontUrl_72_Regular_full_woff2: url(./../baseTheme/fonts/72-Regular-full.woff2);
4755
6222
  // @sapFontUrl_72_Regular_full_woff: url(./../baseTheme/fonts/72-Regular-full.woff);
4756
6223
  // @sapFontUrl_72_Bold_full_woff2: url(./../baseTheme/fonts/72-Bold-full.woff2);
4757
6224
  // @sapFontUrl_72_Bold_full_woff: url(./../baseTheme/fonts/72-Bold-full.woff);
6225
+ // @sapFontUrl_72_Semibold_full_woff2: url(./../baseTheme/fonts/72-Semibold-full.woff2);
6226
+ // @sapFontUrl_72_Semibold_full_woff: url(./../baseTheme/fonts/72-Semibold-full.woff);
6227
+ // @sapFontUrl_72_SemiboldDuplex_full_woff2: url(./../baseTheme/fonts/72-SemiboldDuplex-full.woff2);
6228
+ // @sapFontUrl_72_SemiboldDuplex_full_woff: url(./../baseTheme/fonts/72-SemiboldDuplex-full.woff);
4758
6229
  // @sapFontUrl_72_Light_full_woff2: url(./../baseTheme/fonts/72-Light-full.woff2);
4759
6230
  // @sapFontUrl_72_Light_full_woff: url(./../baseTheme/fonts/72-Light-full.woff);
4760
6231
  // @sapFontUrl_72_Black_woff2: url(./../baseTheme/fonts/72-Black.woff2);
@@ -4780,6 +6251,5 @@
4780
6251
  // @sapSvgLib_SAPWeb-icons: url(./../sap_belize/svg/libs/SAPWeb-icons.svg);
4781
6252
  @sapBackgroundColorDefault: @sapBackgroundColor;
4782
6253
  @sapList_HighlightColor: @sapHighlightColor;
4783
- @sapGroup_Title_FontSize: @sapFontSize;
4784
6254
  @sapContent_ElementHeight: 1.37em;
4785
6255
  @sapContent_ElementHeight_PX: 22px;