@openui5/sap.ui.core 1.130.1 → 1.131.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRDPARTY.txt +1 -1
- package/package.json +1 -1
- package/src/jquery.sap.global.js +1 -1
- package/src/jquery.sap.properties.js +1 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +1 -1
- package/src/jquery.sap.storage.js +3 -3
- package/src/sap/base/Event.js +1 -1
- package/src/sap/base/Eventing.js +3 -2
- package/src/sap/base/config.js +1 -1
- package/src/sap/base/i18n/LanguageTag.js +1 -1
- package/src/sap/base/i18n/date/CalendarType.js +3 -1
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +3 -1
- package/src/sap/base/i18n/date/TimezoneUtils.js +1 -1
- package/src/sap/base/i18n/date/_EnumHelper.js +43 -0
- package/src/sap/base/util/clamp.js +26 -0
- package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
- package/src/sap/base/util/restricted/_castArray.js +1 -1
- package/src/sap/base/util/restricted/_compact.js +1 -1
- package/src/sap/base/util/restricted/_curry.js +1 -1
- package/src/sap/base/util/restricted/_debounce.js +1 -1
- package/src/sap/base/util/restricted/_difference.js +1 -1
- package/src/sap/base/util/restricted/_differenceBy.js +1 -1
- package/src/sap/base/util/restricted/_differenceWith.js +1 -1
- package/src/sap/base/util/restricted/_flatMap.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
- package/src/sap/base/util/restricted/_flatten.js +1 -1
- package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
- package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
- package/src/sap/base/util/restricted/_intersection.js +1 -1
- package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
- package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
- package/src/sap/base/util/restricted/_isEqual.js +1 -1
- package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
- package/src/sap/base/util/restricted/_isNil.js +1 -1
- package/src/sap/base/util/restricted/_max.js +1 -1
- package/src/sap/base/util/restricted/_merge.js +1 -1
- package/src/sap/base/util/restricted/_mergeWith.js +1 -1
- package/src/sap/base/util/restricted/_min.js +1 -1
- package/src/sap/base/util/restricted/_omit.js +1 -1
- package/src/sap/base/util/restricted/_pick.js +1 -1
- package/src/sap/base/util/restricted/_pickBy.js +1 -1
- package/src/sap/base/util/restricted/_throttle.js +1 -1
- package/src/sap/base/util/restricted/_toArray.js +1 -1
- package/src/sap/base/util/restricted/_union.js +1 -1
- package/src/sap/base/util/restricted/_unionBy.js +1 -1
- package/src/sap/base/util/restricted/_unionWith.js +1 -1
- package/src/sap/base/util/restricted/_uniq.js +1 -1
- package/src/sap/base/util/restricted/_uniqBy.js +1 -1
- package/src/sap/base/util/restricted/_uniqWith.js +1 -1
- package/src/sap/base/util/restricted/_without.js +1 -1
- package/src/sap/base/util/restricted/_xor.js +1 -1
- package/src/sap/base/util/restricted/_xorBy.js +1 -1
- package/src/sap/base/util/restricted/_xorWith.js +1 -1
- package/src/sap/base/util/restricted/_zipObject.js +1 -1
- package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
- package/src/sap/ui/Device.js +11 -8
- package/src/sap/ui/Global.js +3 -3
- package/src/sap/ui/base/BindingInfo.js +4 -2
- package/src/sap/ui/base/DataType.js +7 -2
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +1 -1
- package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
- package/src/sap/ui/base/Metadata.js +1 -1
- package/src/sap/ui/base/Object.js +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +3 -3
- package/src/sap/ui/core/BlockLayerUtils.js +17 -29
- package/src/sap/ui/core/BusyIndicator.js +2 -15
- package/src/sap/ui/core/BusyIndicatorUtils.js +34 -3
- package/src/sap/ui/core/Component.js +1 -1
- package/src/sap/ui/core/ComponentContainer.js +1 -1
- package/src/sap/ui/core/ComponentMetadata.js +1 -1
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +1 -1
- package/src/sap/ui/core/ContextMenuSupport.js +2 -1
- package/src/sap/ui/core/Control.js +48 -10
- package/src/sap/ui/core/ControlBehavior.js +14 -18
- package/src/sap/ui/core/Core.js +2 -2
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/Element.js +230 -32
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +4 -4
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/FocusMode.js +28 -0
- package/src/sap/ui/core/Fragment.js +1 -1
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IndicationColorSupport.js +1 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +1 -1
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +1 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +1 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +3 -3
- package/src/sap/ui/core/Manifest.js +2 -2
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Popup.js +12 -0
- package/src/sap/ui/core/RenderManager.js +4 -1
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/ResizeHandler.js +1 -1
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +1 -1
- package/src/sap/ui/core/UIArea.js +1 -1
- package/src/sap/ui/core/UIComponent.js +1 -1
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/_IconRegistry.js +1 -0
- package/src/sap/ui/core/cldr/ca.json +1 -1
- package/src/sap/ui/core/cldr/cs.json +1 -1
- package/src/sap/ui/core/cldr/es.json +2 -2
- package/src/sap/ui/core/cldr/es_AR.json +2 -2
- package/src/sap/ui/core/cldr/es_BO.json +2 -2
- package/src/sap/ui/core/cldr/es_CL.json +2 -2
- package/src/sap/ui/core/cldr/es_CO.json +2 -2
- package/src/sap/ui/core/cldr/es_PE.json +2 -2
- package/src/sap/ui/core/cldr/es_UY.json +2 -2
- package/src/sap/ui/core/cldr/es_VE.json +2 -2
- package/src/sap/ui/core/cldr/fi.json +1 -1
- package/src/sap/ui/core/cldr/hu.json +1 -1
- package/src/sap/ui/core/cldr/id.json +2 -2
- package/src/sap/ui/core/cldr/mk.json +2 -2
- package/src/sap/ui/core/cldr/tr.json +1 -1
- package/src/sap/ui/core/cldr/vi.json +2 -2
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +1 -1
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
- package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
- package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
- package/src/sap/ui/core/dnd/DragInfo.js +1 -1
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/fieldhelp/FieldHelpCustomData.js +5 -1
- package/src/sap/ui/core/format/FormatUtils.js +1 -1
- package/src/sap/ui/core/format/NumberFormat.js +29 -8
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +1 -1
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +23 -19
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +1 -1
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageMixin.js +5 -2
- package/src/sap/ui/core/message/MessageParser.js +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/messagebundle_no.properties +1 -1
- package/src/sap/ui/core/mvc/HTMLView.js +1 -1
- package/src/sap/ui/core/mvc/JSONView.js +1 -1
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +1 -1
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/plugin/LessSupport.js +1 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/routing/Target.js +5 -5
- package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
- package/src/sap/ui/core/search/SearchProvider.js +1 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/Support.js +1 -1
- package/src/sap/ui/core/support/bootstrapFallback.js +1 -0
- package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
- package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +1 -1
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/themes/base/LocalBusyIndicator.less +1 -0
- package/src/sap/ui/core/themes/base/base.less +1353 -247
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/themes/base/global.less +32 -0
- package/src/sap/ui/core/themes/base/skeleton.less +93 -3
- package/src/sap/ui/core/theming/ThemeManager.js +2 -2
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
- package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +1 -1
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +1 -1
- package/src/sap/ui/model/Filter.js +2 -1
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +1 -1
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/Sorter.js +61 -31
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +9 -3
- package/src/sap/ui/model/base/ManagedObjectModel.js +1 -1
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +16 -6
- package/src/sap/ui/model/odata/ODataModel.js +1 -1
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +7 -4
- package/src/sap/ui/model/odata/v2/ODataModel.js +14 -10
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/Context.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataBinding.js +1 -0
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +6 -1
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +66 -6
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +93 -19
- package/src/sap/ui/model/odata/v4/ODataModel.js +14 -4
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +3 -1
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +2 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +12 -1
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +51 -30
- package/src/sap/ui/model/resource/ResourceModel.js +1 -1
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/test/OpaBuilder.js +1 -1
- package/src/sap/ui/test/autowaiter/_promiseWaiter.js +21 -0
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/starter/_utils.js +8 -1
- package/src/sap/ui/test/starter/createSuite.js +1 -1
- package/src/sap/ui/thirdparty/less.js +23 -72
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader.js +9 -4
- package/test/sap/ui/qunit/TestRunner.js +2 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
// /**
|
|
2
2
|
// * Copyright (c) 2012-2024 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 14.
|
|
4
|
-
// * data:{"sModified":"2024-
|
|
3
|
+
// * Theming Engine 14.1.4
|
|
4
|
+
// * data:{"sModified":"2024-11-04T10:14:03Z"}
|
|
5
5
|
// */
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
/******************* FILE /Base/baseLib/baseTheme/base.less (Version 11.
|
|
8
|
+
/******************* FILE /Base/baseLib/baseTheme/base.less (Version 11.22.0) *******************/
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
// [Label "Brand Color"]
|
|
@@ -866,6 +866,14 @@
|
|
|
866
866
|
// [Type "color"]
|
|
867
867
|
@sapContent_BadgeTextColor: @sapDefault_Color;
|
|
868
868
|
|
|
869
|
+
// [Label "Badge Border Color"]
|
|
870
|
+
// [Description "The border color of badges (e.g. Shell Notifications)."]
|
|
871
|
+
// [Tags "Base", "Content", "Color", "Protected"]
|
|
872
|
+
// [Protected "true"]
|
|
873
|
+
// [Category "Badge"]
|
|
874
|
+
// [Type "color"]
|
|
875
|
+
@sapContent_BadgeBorderColor: @sapDefault_Color;
|
|
876
|
+
|
|
869
877
|
// [Label "Drag and Drop Active Color"]
|
|
870
878
|
// [Description "The color used to indicate active drag and drop interaction."]
|
|
871
879
|
// [TranslationKey "sapContent_DnDActiveColor"]
|
|
@@ -917,9 +925,17 @@
|
|
|
917
925
|
// [Type "string"]
|
|
918
926
|
@sapContent_ForcedColorAdjust: none;
|
|
919
927
|
|
|
928
|
+
// [Label "Lite Shadow"]
|
|
929
|
+
// [Description "The value of lite shadows. (With no shadows in standard themes and a visible shadow in high contrast)"]
|
|
930
|
+
// [Tags "Base", "Content", "Protected"]
|
|
931
|
+
// [Protected "true"]
|
|
932
|
+
// [Category "Shadow"]
|
|
933
|
+
// [Type "boxShadow"]
|
|
934
|
+
@sapContent_Lite_Shadow: @sapDefault_Shadow;
|
|
935
|
+
|
|
920
936
|
// [Label "Illustrative Color 1"]
|
|
921
937
|
// [Description "The color of illustrated content."]
|
|
922
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
938
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
923
939
|
// [Protected "true"]
|
|
924
940
|
// [Category "Illustrative"]
|
|
925
941
|
// [Type "color"]
|
|
@@ -927,7 +943,7 @@
|
|
|
927
943
|
|
|
928
944
|
// [Label "Illustrative Color 2"]
|
|
929
945
|
// [Description "The color of illustrated content."]
|
|
930
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
946
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
931
947
|
// [Protected "true"]
|
|
932
948
|
// [Category "Illustrative"]
|
|
933
949
|
// [Type "color"]
|
|
@@ -935,7 +951,7 @@
|
|
|
935
951
|
|
|
936
952
|
// [Label "Illustrative Color 3"]
|
|
937
953
|
// [Description "The color of illustrated content."]
|
|
938
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
954
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
939
955
|
// [Protected "true"]
|
|
940
956
|
// [Category "Illustrative"]
|
|
941
957
|
// [Type "color"]
|
|
@@ -943,7 +959,7 @@
|
|
|
943
959
|
|
|
944
960
|
// [Label "Illustrative Color 4"]
|
|
945
961
|
// [Description "The color of illustrated content."]
|
|
946
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
962
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
947
963
|
// [Protected "true"]
|
|
948
964
|
// [Category "Illustrative"]
|
|
949
965
|
// [Type "color"]
|
|
@@ -951,7 +967,7 @@
|
|
|
951
967
|
|
|
952
968
|
// [Label "Illustrative Color 5"]
|
|
953
969
|
// [Description "The color of illustrated content."]
|
|
954
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
970
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
955
971
|
// [Protected "true"]
|
|
956
972
|
// [Category "Illustrative"]
|
|
957
973
|
// [Type "color"]
|
|
@@ -959,7 +975,7 @@
|
|
|
959
975
|
|
|
960
976
|
// [Label "Illustrative Color 6"]
|
|
961
977
|
// [Description "The color of illustrated content."]
|
|
962
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
978
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
963
979
|
// [Protected "true"]
|
|
964
980
|
// [Category "Illustrative"]
|
|
965
981
|
// [Type "color"]
|
|
@@ -967,7 +983,7 @@
|
|
|
967
983
|
|
|
968
984
|
// [Label "Illustrative Color 7"]
|
|
969
985
|
// [Description "The color of illustrated content."]
|
|
970
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
986
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
971
987
|
// [Protected "true"]
|
|
972
988
|
// [Category "Illustrative"]
|
|
973
989
|
// [Type "color"]
|
|
@@ -975,7 +991,7 @@
|
|
|
975
991
|
|
|
976
992
|
// [Label "Illustrative Color 8"]
|
|
977
993
|
// [Description "The color of illustrated content."]
|
|
978
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
994
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
979
995
|
// [Protected "true"]
|
|
980
996
|
// [Category "Illustrative"]
|
|
981
997
|
// [Type "color"]
|
|
@@ -983,7 +999,7 @@
|
|
|
983
999
|
|
|
984
1000
|
// [Label "Illustrative Color 9"]
|
|
985
1001
|
// [Description "The color of illustrated content."]
|
|
986
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1002
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
987
1003
|
// [Protected "true"]
|
|
988
1004
|
// [Category "Illustrative"]
|
|
989
1005
|
// [Type "color"]
|
|
@@ -991,7 +1007,7 @@
|
|
|
991
1007
|
|
|
992
1008
|
// [Label "Illustrative Color 10"]
|
|
993
1009
|
// [Description "The color of illustrated content."]
|
|
994
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1010
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
995
1011
|
// [Protected "true"]
|
|
996
1012
|
// [Category "Illustrative"]
|
|
997
1013
|
// [Type "color"]
|
|
@@ -999,7 +1015,7 @@
|
|
|
999
1015
|
|
|
1000
1016
|
// [Label "Illustrative Color 11"]
|
|
1001
1017
|
// [Description "The color of illustrated content."]
|
|
1002
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1018
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1003
1019
|
// [Protected "true"]
|
|
1004
1020
|
// [Category "Illustrative"]
|
|
1005
1021
|
// [Type "color"]
|
|
@@ -1007,7 +1023,7 @@
|
|
|
1007
1023
|
|
|
1008
1024
|
// [Label "Illustrative Color 12"]
|
|
1009
1025
|
// [Description "The color of illustrated content."]
|
|
1010
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1026
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1011
1027
|
// [Protected "true"]
|
|
1012
1028
|
// [Category "Illustrative"]
|
|
1013
1029
|
// [Type "color"]
|
|
@@ -1015,7 +1031,7 @@
|
|
|
1015
1031
|
|
|
1016
1032
|
// [Label "Illustrative Color 13"]
|
|
1017
1033
|
// [Description "The color of illustrated content."]
|
|
1018
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1034
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1019
1035
|
// [Protected "true"]
|
|
1020
1036
|
// [Category "Illustrative"]
|
|
1021
1037
|
// [Type "color"]
|
|
@@ -1023,7 +1039,7 @@
|
|
|
1023
1039
|
|
|
1024
1040
|
// [Label "Illustrative Color 14"]
|
|
1025
1041
|
// [Description "The color of illustrated content."]
|
|
1026
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1042
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1027
1043
|
// [Protected "true"]
|
|
1028
1044
|
// [Category "Illustrative"]
|
|
1029
1045
|
// [Type "color"]
|
|
@@ -1031,7 +1047,7 @@
|
|
|
1031
1047
|
|
|
1032
1048
|
// [Label "Illustrative Color 15"]
|
|
1033
1049
|
// [Description "The color of illustrated content."]
|
|
1034
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1050
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1035
1051
|
// [Protected "true"]
|
|
1036
1052
|
// [Category "Illustrative"]
|
|
1037
1053
|
// [Type "color"]
|
|
@@ -1039,7 +1055,7 @@
|
|
|
1039
1055
|
|
|
1040
1056
|
// [Label "Illustrative Color 16"]
|
|
1041
1057
|
// [Description "The color of illustrated content."]
|
|
1042
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1058
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1043
1059
|
// [Protected "true"]
|
|
1044
1060
|
// [Category "Illustrative"]
|
|
1045
1061
|
// [Type "color"]
|
|
@@ -1047,7 +1063,7 @@
|
|
|
1047
1063
|
|
|
1048
1064
|
// [Label "Illustrative Color 17"]
|
|
1049
1065
|
// [Description "The color of illustrated content."]
|
|
1050
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1066
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1051
1067
|
// [Protected "true"]
|
|
1052
1068
|
// [Category "Illustrative"]
|
|
1053
1069
|
// [Type "color"]
|
|
@@ -1055,7 +1071,7 @@
|
|
|
1055
1071
|
|
|
1056
1072
|
// [Label "Illustrative Color 18"]
|
|
1057
1073
|
// [Description "The color of illustrated content."]
|
|
1058
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1074
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1059
1075
|
// [Protected "true"]
|
|
1060
1076
|
// [Category "Illustrative"]
|
|
1061
1077
|
// [Type "color"]
|
|
@@ -1063,7 +1079,7 @@
|
|
|
1063
1079
|
|
|
1064
1080
|
// [Label "Illustrative Color 19"]
|
|
1065
1081
|
// [Description "The color of illustrated content."]
|
|
1066
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1082
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1067
1083
|
// [Protected "true"]
|
|
1068
1084
|
// [Category "Illustrative"]
|
|
1069
1085
|
// [Type "color"]
|
|
@@ -1071,12 +1087,268 @@
|
|
|
1071
1087
|
|
|
1072
1088
|
// [Label "Illustrative Color 20"]
|
|
1073
1089
|
// [Description "The color of illustrated content."]
|
|
1074
|
-
// [Tags "Base", "Content", "Color", "Protected"]
|
|
1090
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1075
1091
|
// [Protected "true"]
|
|
1076
1092
|
// [Category "Illustrative"]
|
|
1077
1093
|
// [Type "color"]
|
|
1078
1094
|
@sapContent_Illustrative_Color20: @sapDefault_Color;
|
|
1079
1095
|
|
|
1096
|
+
// [Label "Illustrative Color 21"]
|
|
1097
|
+
// [Description "The color of illustrated content."]
|
|
1098
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1099
|
+
// [Protected "true"]
|
|
1100
|
+
// [Category "Illustrative"]
|
|
1101
|
+
// [Type "color"]
|
|
1102
|
+
@sapContent_Illustrative_Color21: @sapDefault_Color;
|
|
1103
|
+
|
|
1104
|
+
// [Label "Illustrative Color 22"]
|
|
1105
|
+
// [Description "The color of illustrated content."]
|
|
1106
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1107
|
+
// [Protected "true"]
|
|
1108
|
+
// [Category "Illustrative"]
|
|
1109
|
+
// [Type "color"]
|
|
1110
|
+
@sapContent_Illustrative_Color22: @sapDefault_Color;
|
|
1111
|
+
|
|
1112
|
+
// [Label "Illustrative Color 23"]
|
|
1113
|
+
// [Description "The color of illustrated content."]
|
|
1114
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1115
|
+
// [Protected "true"]
|
|
1116
|
+
// [Category "Illustrative"]
|
|
1117
|
+
// [Type "color"]
|
|
1118
|
+
@sapContent_Illustrative_Color23: @sapDefault_Color;
|
|
1119
|
+
|
|
1120
|
+
// [Label "Illustrative Color 24"]
|
|
1121
|
+
// [Description "The color of illustrated content."]
|
|
1122
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1123
|
+
// [Protected "true"]
|
|
1124
|
+
// [Category "Illustrative"]
|
|
1125
|
+
// [Type "color"]
|
|
1126
|
+
@sapContent_Illustrative_Color24: @sapDefault_Color;
|
|
1127
|
+
|
|
1128
|
+
// [Label "Illustrative Color 25"]
|
|
1129
|
+
// [Description "The color of illustrated content."]
|
|
1130
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1131
|
+
// [Protected "true"]
|
|
1132
|
+
// [Category "Illustrative"]
|
|
1133
|
+
// [Type "color"]
|
|
1134
|
+
@sapContent_Illustrative_Color25: @sapDefault_Color;
|
|
1135
|
+
|
|
1136
|
+
// [Label "Illustrative Color 26"]
|
|
1137
|
+
// [Description "The color of illustrated content."]
|
|
1138
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1139
|
+
// [Protected "true"]
|
|
1140
|
+
// [Category "Illustrative"]
|
|
1141
|
+
// [Type "color"]
|
|
1142
|
+
@sapContent_Illustrative_Color26: @sapDefault_Color;
|
|
1143
|
+
|
|
1144
|
+
// [Label "Illustrative Color 27"]
|
|
1145
|
+
// [Description "The color of illustrated content."]
|
|
1146
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1147
|
+
// [Protected "true"]
|
|
1148
|
+
// [Category "Illustrative"]
|
|
1149
|
+
// [Type "color"]
|
|
1150
|
+
@sapContent_Illustrative_Color27: @sapDefault_Color;
|
|
1151
|
+
|
|
1152
|
+
// [Label "Illustrative Color 28"]
|
|
1153
|
+
// [Description "The color of illustrated content."]
|
|
1154
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1155
|
+
// [Protected "true"]
|
|
1156
|
+
// [Category "Illustrative"]
|
|
1157
|
+
// [Type "color"]
|
|
1158
|
+
@sapContent_Illustrative_Color28: @sapDefault_Color;
|
|
1159
|
+
|
|
1160
|
+
// [Label "Illustrative Color 29"]
|
|
1161
|
+
// [Description "The color of illustrated content."]
|
|
1162
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1163
|
+
// [Protected "true"]
|
|
1164
|
+
// [Category "Illustrative"]
|
|
1165
|
+
// [Type "color"]
|
|
1166
|
+
@sapContent_Illustrative_Color29: @sapDefault_Color;
|
|
1167
|
+
|
|
1168
|
+
// [Label "Illustrative Color 30"]
|
|
1169
|
+
// [Description "The color of illustrated content."]
|
|
1170
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1171
|
+
// [Protected "true"]
|
|
1172
|
+
// [Category "Illustrative"]
|
|
1173
|
+
// [Type "color"]
|
|
1174
|
+
@sapContent_Illustrative_Color30: @sapDefault_Color;
|
|
1175
|
+
|
|
1176
|
+
// [Label "Illustrative Color 31"]
|
|
1177
|
+
// [Description "The color of illustrated content."]
|
|
1178
|
+
// [Tags "Base", "Content", "Color", "Illustrative", "Protected"]
|
|
1179
|
+
// [Protected "true"]
|
|
1180
|
+
// [Category "Illustrative"]
|
|
1181
|
+
// [Type "color"]
|
|
1182
|
+
@sapContent_Illustrative_Color31: @sapDefault_Color;
|
|
1183
|
+
|
|
1184
|
+
// [Label "Content Space S"]
|
|
1185
|
+
// [Description "The responsive content container space on small devices."]
|
|
1186
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1187
|
+
// [Protected "true"]
|
|
1188
|
+
// [Category "Internal"]
|
|
1189
|
+
// [Type "sizing"]
|
|
1190
|
+
@sapContent_Space_S: @sapDefault_Dimension;
|
|
1191
|
+
|
|
1192
|
+
// [Label "Content Space M"]
|
|
1193
|
+
// [Description "The responsive content container space on medium devices."]
|
|
1194
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1195
|
+
// [Protected "true"]
|
|
1196
|
+
// [Category "Internal"]
|
|
1197
|
+
// [Type "sizing"]
|
|
1198
|
+
@sapContent_Space_M: @sapDefault_Dimension;
|
|
1199
|
+
|
|
1200
|
+
// [Label "Content Space L"]
|
|
1201
|
+
// [Description "The responsive content container space on large devices."]
|
|
1202
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1203
|
+
// [Protected "true"]
|
|
1204
|
+
// [Category "Internal"]
|
|
1205
|
+
// [Type "sizing"]
|
|
1206
|
+
@sapContent_Space_L: @sapDefault_Dimension;
|
|
1207
|
+
|
|
1208
|
+
// [Label "Content Space XL"]
|
|
1209
|
+
// [Description "The responsive content container space on extra large devices."]
|
|
1210
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1211
|
+
// [Protected "true"]
|
|
1212
|
+
// [Category "Internal"]
|
|
1213
|
+
// [Type "sizing"]
|
|
1214
|
+
@sapContent_Space_XL: @sapDefault_Dimension;
|
|
1215
|
+
|
|
1216
|
+
// [Label "Content Space Tiny"]
|
|
1217
|
+
// [Description "The tiny value of space used for content."]
|
|
1218
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1219
|
+
// [Protected "true"]
|
|
1220
|
+
// [Category "Internal"]
|
|
1221
|
+
// [Type "sizing"]
|
|
1222
|
+
@sapContent_Space_Tiny: @sapDefault_Dimension;
|
|
1223
|
+
|
|
1224
|
+
// [Label "Content Space Small"]
|
|
1225
|
+
// [Description "The small value of space used for content."]
|
|
1226
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1227
|
+
// [Protected "true"]
|
|
1228
|
+
// [Category "Internal"]
|
|
1229
|
+
// [Type "sizing"]
|
|
1230
|
+
@sapContent_Space_Small: @sapDefault_Dimension;
|
|
1231
|
+
|
|
1232
|
+
// [Label "Content Space Medium"]
|
|
1233
|
+
// [Description "The medium value of space used for content."]
|
|
1234
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1235
|
+
// [Protected "true"]
|
|
1236
|
+
// [Category "Internal"]
|
|
1237
|
+
// [Type "sizing"]
|
|
1238
|
+
@sapContent_Space_Medium: @sapDefault_Dimension;
|
|
1239
|
+
|
|
1240
|
+
// [Label "Content Space Large"]
|
|
1241
|
+
// [Description "The large value of space used for content."]
|
|
1242
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1243
|
+
// [Protected "true"]
|
|
1244
|
+
// [Category "Internal"]
|
|
1245
|
+
// [Type "sizing"]
|
|
1246
|
+
@sapContent_Space_Large: @sapDefault_Dimension;
|
|
1247
|
+
|
|
1248
|
+
// [Label "Content Margin Tiny"]
|
|
1249
|
+
// [Description "The tiny value of the four-sided margin used for content."]
|
|
1250
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1251
|
+
// [Protected "true"]
|
|
1252
|
+
// [Category "Internal"]
|
|
1253
|
+
// [Type "sizing"]
|
|
1254
|
+
@sapContent_Margin_Tiny: @sapDefault_Dimension;
|
|
1255
|
+
|
|
1256
|
+
// [Label "Content Margin Small"]
|
|
1257
|
+
// [Description "The small value of the four-sided margin used for content."]
|
|
1258
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1259
|
+
// [Protected "true"]
|
|
1260
|
+
// [Category "Internal"]
|
|
1261
|
+
// [Type "sizing"]
|
|
1262
|
+
@sapContent_Margin_Small: @sapDefault_Dimension;
|
|
1263
|
+
|
|
1264
|
+
// [Label "Content Margin Medium"]
|
|
1265
|
+
// [Description "The medium value of the four-sided margin used for content."]
|
|
1266
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1267
|
+
// [Protected "true"]
|
|
1268
|
+
// [Category "Internal"]
|
|
1269
|
+
// [Type "sizing"]
|
|
1270
|
+
@sapContent_Margin_Medium: @sapDefault_Dimension;
|
|
1271
|
+
|
|
1272
|
+
// [Label "Content Margin Large"]
|
|
1273
|
+
// [Description "The large value of the four-sided margin used for content."]
|
|
1274
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1275
|
+
// [Protected "true"]
|
|
1276
|
+
// [Category "Internal"]
|
|
1277
|
+
// [Type "sizing"]
|
|
1278
|
+
@sapContent_Margin_Large: @sapDefault_Dimension;
|
|
1279
|
+
|
|
1280
|
+
// [Label "Content Padding S"]
|
|
1281
|
+
// [Description "The value of padding used on small devices."]
|
|
1282
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1283
|
+
// [Protected "true"]
|
|
1284
|
+
// [Category "Internal"]
|
|
1285
|
+
// [Type "sizing"]
|
|
1286
|
+
@sapContent_Padding_S: @sapDefault_Dimension;
|
|
1287
|
+
|
|
1288
|
+
// [Label "Content Padding M"]
|
|
1289
|
+
// [Description "The value of padding used on medium devices."]
|
|
1290
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1291
|
+
// [Protected "true"]
|
|
1292
|
+
// [Category "Internal"]
|
|
1293
|
+
// [Type "sizing"]
|
|
1294
|
+
@sapContent_Padding_M: @sapDefault_Dimension;
|
|
1295
|
+
|
|
1296
|
+
// [Label "Content Padding L"]
|
|
1297
|
+
// [Description "The value of padding used on large devices."]
|
|
1298
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1299
|
+
// [Protected "true"]
|
|
1300
|
+
// [Category "Internal"]
|
|
1301
|
+
// [Type "sizing"]
|
|
1302
|
+
@sapContent_Padding_L: @sapDefault_Dimension;
|
|
1303
|
+
|
|
1304
|
+
// [Label "Content Padding XL"]
|
|
1305
|
+
// [Description "The value of padding used on extra large devices."]
|
|
1306
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1307
|
+
// [Protected "true"]
|
|
1308
|
+
// [Category "Internal"]
|
|
1309
|
+
// [Type "sizing"]
|
|
1310
|
+
@sapContent_Padding_XL: @sapDefault_Dimension;
|
|
1311
|
+
|
|
1312
|
+
// [Label "Content Gap"]
|
|
1313
|
+
// [Description "The value of the gap between content."]
|
|
1314
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1315
|
+
// [Protected "true"]
|
|
1316
|
+
// [Category "Internal"]
|
|
1317
|
+
// [Type "sizing"]
|
|
1318
|
+
@sapContent_Gap: @sapDefault_Dimension;
|
|
1319
|
+
|
|
1320
|
+
// [Label "Success Header Shadow"]
|
|
1321
|
+
// [Description "The success header shadow styling."]
|
|
1322
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1323
|
+
// [Protected "true"]
|
|
1324
|
+
// [Category "Shadow"]
|
|
1325
|
+
// [Type "boxShadow"]
|
|
1326
|
+
@sapContent_Success_HeaderShadow: @sapDefault_Shadow;
|
|
1327
|
+
|
|
1328
|
+
// [Label "Warning Header Shadow"]
|
|
1329
|
+
// [Description "The warning header shadow styling."]
|
|
1330
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1331
|
+
// [Protected "true"]
|
|
1332
|
+
// [Category "Shadow"]
|
|
1333
|
+
// [Type "boxShadow"]
|
|
1334
|
+
@sapContent_Warning_HeaderShadow: @sapDefault_Shadow;
|
|
1335
|
+
|
|
1336
|
+
// [Label "Error Header Shadow"]
|
|
1337
|
+
// [Description "The error header shadow styling."]
|
|
1338
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1339
|
+
// [Protected "true"]
|
|
1340
|
+
// [Category "Shadow"]
|
|
1341
|
+
// [Type "boxShadow"]
|
|
1342
|
+
@sapContent_Error_HeaderShadow: @sapDefault_Shadow;
|
|
1343
|
+
|
|
1344
|
+
// [Label "Information Header Shadow"]
|
|
1345
|
+
// [Description "The information header shadow styling."]
|
|
1346
|
+
// [Tags "Base", "Content", "Dimension", "Protected"]
|
|
1347
|
+
// [Protected "true"]
|
|
1348
|
+
// [Category "Shadow"]
|
|
1349
|
+
// [Type "boxShadow"]
|
|
1350
|
+
@sapContent_Information_HeaderShadow: @sapDefault_Shadow;
|
|
1351
|
+
|
|
1080
1352
|
// [Label "Light Font Family"]
|
|
1081
1353
|
// [Description "The preferred light font family."]
|
|
1082
1354
|
// [Tags "Base", "Content", "Font", "Protected"]
|
|
@@ -1522,6 +1794,14 @@
|
|
|
1522
1794
|
// [Type "color"]
|
|
1523
1795
|
@sapShell_Assistant_ForegroundColor: @sapDefault_Color;
|
|
1524
1796
|
|
|
1797
|
+
// [Label "Shell Sub Brand Text Color"]
|
|
1798
|
+
// [Description "The text color of brand text (such as a product name) in the Shell."]
|
|
1799
|
+
// [Tags "Base", "Shell", "Color", "Font", "Protected"]
|
|
1800
|
+
// [Protected "true"]
|
|
1801
|
+
// [Category "Shell"]
|
|
1802
|
+
// [Type "color"]
|
|
1803
|
+
@sapShell_SubBrand_TextColor: @sapDefault_Color;
|
|
1804
|
+
|
|
1525
1805
|
// [Label "Shell Category 1 Background Color"]
|
|
1526
1806
|
// [Description "The background color of shell elements of category 1."]
|
|
1527
1807
|
// [Tags "Base", "Shell", "Color", "Protected"]
|
|
@@ -2066,6 +2346,102 @@
|
|
|
2066
2346
|
// [Type "boxShadow"]
|
|
2067
2347
|
@sapShell_Category_16_TextShadow: @sapDefault_Color;
|
|
2068
2348
|
|
|
2349
|
+
// [Label "Shell Space S"]
|
|
2350
|
+
// [Description "The value of the small shell container space."]
|
|
2351
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2352
|
+
// [Protected "true"]
|
|
2353
|
+
// [Category "Shell"]
|
|
2354
|
+
// [Type "sizing"]
|
|
2355
|
+
@sapShell_Space_S: @sapDefault_Dimension;
|
|
2356
|
+
|
|
2357
|
+
// [Label "Shell Space M"]
|
|
2358
|
+
// [Description "The value of the medium shell container space."]
|
|
2359
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2360
|
+
// [Protected "true"]
|
|
2361
|
+
// [Category "Shell"]
|
|
2362
|
+
// [Type "sizing"]
|
|
2363
|
+
@sapShell_Space_M: @sapDefault_Dimension;
|
|
2364
|
+
|
|
2365
|
+
// [Label "Shell Space L"]
|
|
2366
|
+
// [Description "The value of the large shell container space."]
|
|
2367
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2368
|
+
// [Protected "true"]
|
|
2369
|
+
// [Category "Shell"]
|
|
2370
|
+
// [Type "sizing"]
|
|
2371
|
+
@sapShell_Space_L: @sapDefault_Dimension;
|
|
2372
|
+
|
|
2373
|
+
// [Label "Shell Space XL"]
|
|
2374
|
+
// [Description "The value of the extra large shell container space."]
|
|
2375
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2376
|
+
// [Protected "true"]
|
|
2377
|
+
// [Category "Shell"]
|
|
2378
|
+
// [Type "sizing"]
|
|
2379
|
+
@sapShell_Space_XL: @sapDefault_Dimension;
|
|
2380
|
+
|
|
2381
|
+
// [Label "Shell Gap S"]
|
|
2382
|
+
// [Description "The value of the small gap in a small container."]
|
|
2383
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2384
|
+
// [Protected "true"]
|
|
2385
|
+
// [Category "Shell"]
|
|
2386
|
+
// [Type "sizing"]
|
|
2387
|
+
@sapShell_Gap_S: @sapDefault_Dimension;
|
|
2388
|
+
|
|
2389
|
+
// [Label "Shell Gap M"]
|
|
2390
|
+
// [Description "The value of the small gap in a medium container."]
|
|
2391
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2392
|
+
// [Protected "true"]
|
|
2393
|
+
// [Category "Shell"]
|
|
2394
|
+
// [Type "sizing"]
|
|
2395
|
+
@sapShell_Gap_M: @sapDefault_Dimension;
|
|
2396
|
+
|
|
2397
|
+
// [Label "Shell Gap L"]
|
|
2398
|
+
// [Description "The value of the small gap in a large container."]
|
|
2399
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2400
|
+
// [Protected "true"]
|
|
2401
|
+
// [Category "Shell"]
|
|
2402
|
+
// [Type "sizing"]
|
|
2403
|
+
@sapShell_Gap_L: @sapDefault_Dimension;
|
|
2404
|
+
|
|
2405
|
+
// [Label "Shell Gap XL"]
|
|
2406
|
+
// [Description "The value of the small gap in a extra large container."]
|
|
2407
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2408
|
+
// [Protected "true"]
|
|
2409
|
+
// [Category "Shell"]
|
|
2410
|
+
// [Type "sizing"]
|
|
2411
|
+
@sapShell_Gap_XL: @sapDefault_Dimension;
|
|
2412
|
+
|
|
2413
|
+
// [Label "Shell Group Bottom Gap Small"]
|
|
2414
|
+
// [Description "The gap between shell groups on small devices."]
|
|
2415
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2416
|
+
// [Protected "true"]
|
|
2417
|
+
// [Category "Shell"]
|
|
2418
|
+
// [Type "sizing"]
|
|
2419
|
+
@sapShell_GroupGap_S: @sapDefault_Dimension;
|
|
2420
|
+
|
|
2421
|
+
// [Label "Shell Group Bottom Gap Medium"]
|
|
2422
|
+
// [Description "The gap between shell groups on medium devices."]
|
|
2423
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2424
|
+
// [Protected "true"]
|
|
2425
|
+
// [Category "Shell"]
|
|
2426
|
+
// [Type "sizing"]
|
|
2427
|
+
@sapShell_GroupGap_M: @sapDefault_Dimension;
|
|
2428
|
+
|
|
2429
|
+
// [Label "Shell Group Bottom Gap Large"]
|
|
2430
|
+
// [Description "The gap between shell groups on large devices."]
|
|
2431
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2432
|
+
// [Protected "true"]
|
|
2433
|
+
// [Category "Shell"]
|
|
2434
|
+
// [Type "sizing"]
|
|
2435
|
+
@sapShell_GroupGap_L: @sapDefault_Dimension;
|
|
2436
|
+
|
|
2437
|
+
// [Label "Shell Group Bottom Gap Extra Large"]
|
|
2438
|
+
// [Description "The gap between shell groups on extra large devices."]
|
|
2439
|
+
// [Tags "Base", "Shell", "Dimension", "Protected"]
|
|
2440
|
+
// [Protected "true"]
|
|
2441
|
+
// [Category "Shell"]
|
|
2442
|
+
// [Type "sizing"]
|
|
2443
|
+
@sapShell_GroupGap_XL: @sapDefault_Dimension;
|
|
2444
|
+
|
|
2069
2445
|
// [Label "Assistant Color"]
|
|
2070
2446
|
// [Description "The color of the SAP assistant (Joule)."]
|
|
2071
2447
|
// [Tags "Base", "Assistant", "Color", "Protected"]
|
|
@@ -2236,6 +2612,14 @@
|
|
|
2236
2612
|
// [Type "color"]
|
|
2237
2613
|
@sapAvatar_1_TextColor: @sapDefault_Color;
|
|
2238
2614
|
|
|
2615
|
+
// [Label "Avatar 1 Hover Background Color"]
|
|
2616
|
+
// [Description "The background color of hovered type-1 avatars."]
|
|
2617
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2618
|
+
// [Protected "true"]
|
|
2619
|
+
// [Category "Avatar"]
|
|
2620
|
+
// [Type "color"]
|
|
2621
|
+
@sapAvatar_1_Hover_Background: @sapDefault_Color;
|
|
2622
|
+
|
|
2239
2623
|
// [Label "Avatar 2 Background Color"]
|
|
2240
2624
|
// [Description "The background color of type-2 avatars."]
|
|
2241
2625
|
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
@@ -2260,6 +2644,14 @@
|
|
|
2260
2644
|
// [Type "color"]
|
|
2261
2645
|
@sapAvatar_2_TextColor: @sapDefault_Color;
|
|
2262
2646
|
|
|
2647
|
+
// [Label "Avatar 2 Hover Background Color"]
|
|
2648
|
+
// [Description "The background color of hovered type-2 avatars."]
|
|
2649
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2650
|
+
// [Protected "true"]
|
|
2651
|
+
// [Category "Avatar"]
|
|
2652
|
+
// [Type "color"]
|
|
2653
|
+
@sapAvatar_2_Hover_Background: @sapDefault_Color;
|
|
2654
|
+
|
|
2263
2655
|
// [Label "Avatar 3 Background Color"]
|
|
2264
2656
|
// [Description "The background color of type-3 avatars."]
|
|
2265
2657
|
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
@@ -2284,6 +2676,14 @@
|
|
|
2284
2676
|
// [Type "color"]
|
|
2285
2677
|
@sapAvatar_3_TextColor: @sapDefault_Color;
|
|
2286
2678
|
|
|
2679
|
+
// [Label "Avatar 3 Hover Background Color"]
|
|
2680
|
+
// [Description "The background color of hovered type-3 avatars."]
|
|
2681
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2682
|
+
// [Protected "true"]
|
|
2683
|
+
// [Category "Avatar"]
|
|
2684
|
+
// [Type "color"]
|
|
2685
|
+
@sapAvatar_3_Hover_Background: @sapDefault_Color;
|
|
2686
|
+
|
|
2287
2687
|
// [Label "Avatar 4 Background Color"]
|
|
2288
2688
|
// [Description "The background color of type-4 avatars."]
|
|
2289
2689
|
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
@@ -2308,6 +2708,14 @@
|
|
|
2308
2708
|
// [Type "color"]
|
|
2309
2709
|
@sapAvatar_4_TextColor: @sapDefault_Color;
|
|
2310
2710
|
|
|
2711
|
+
// [Label "Avatar 4 Hover Background Color"]
|
|
2712
|
+
// [Description "The background color of hovered type-4 avatars."]
|
|
2713
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2714
|
+
// [Protected "true"]
|
|
2715
|
+
// [Category "Avatar"]
|
|
2716
|
+
// [Type "color"]
|
|
2717
|
+
@sapAvatar_4_Hover_Background: @sapDefault_Color;
|
|
2718
|
+
|
|
2311
2719
|
// [Label "Avatar 5 Background Color"]
|
|
2312
2720
|
// [Description "The background color of type-5 avatars."]
|
|
2313
2721
|
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
@@ -2332,6 +2740,14 @@
|
|
|
2332
2740
|
// [Type "color"]
|
|
2333
2741
|
@sapAvatar_5_TextColor: @sapDefault_Color;
|
|
2334
2742
|
|
|
2743
|
+
// [Label "Avatar 5 Hover Background Color"]
|
|
2744
|
+
// [Description "The background color of hovered type-5 avatars."]
|
|
2745
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2746
|
+
// [Protected "true"]
|
|
2747
|
+
// [Category "Avatar"]
|
|
2748
|
+
// [Type "color"]
|
|
2749
|
+
@sapAvatar_5_Hover_Background: @sapDefault_Color;
|
|
2750
|
+
|
|
2335
2751
|
// [Label "Avatar 6 Background Color"]
|
|
2336
2752
|
// [Description "The background color of type-6 avatars."]
|
|
2337
2753
|
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
@@ -2356,6 +2772,14 @@
|
|
|
2356
2772
|
// [Type "color"]
|
|
2357
2773
|
@sapAvatar_6_TextColor: @sapDefault_Color;
|
|
2358
2774
|
|
|
2775
|
+
// [Label "Avatar 6 Hover Background Color"]
|
|
2776
|
+
// [Description "The background color of hovered type-6 avatars."]
|
|
2777
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2778
|
+
// [Protected "true"]
|
|
2779
|
+
// [Category "Avatar"]
|
|
2780
|
+
// [Type "color"]
|
|
2781
|
+
@sapAvatar_6_Hover_Background: @sapDefault_Color;
|
|
2782
|
+
|
|
2359
2783
|
// [Label "Avatar 7 Background Color"]
|
|
2360
2784
|
// [Description "The background color of type-7 avatars."]
|
|
2361
2785
|
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
@@ -2380,6 +2804,14 @@
|
|
|
2380
2804
|
// [Type "color"]
|
|
2381
2805
|
@sapAvatar_7_TextColor: @sapDefault_Color;
|
|
2382
2806
|
|
|
2807
|
+
// [Label "Avatar 7 Hover Background Color"]
|
|
2808
|
+
// [Description "The background color of hovered type-7 avatars."]
|
|
2809
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2810
|
+
// [Protected "true"]
|
|
2811
|
+
// [Category "Avatar"]
|
|
2812
|
+
// [Type "color"]
|
|
2813
|
+
@sapAvatar_7_Hover_Background: @sapDefault_Color;
|
|
2814
|
+
|
|
2383
2815
|
// [Label "Avatar 8 Background Color"]
|
|
2384
2816
|
// [Description "The background color of type-8 avatars."]
|
|
2385
2817
|
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
@@ -2404,6 +2836,14 @@
|
|
|
2404
2836
|
// [Type "color"]
|
|
2405
2837
|
@sapAvatar_8_TextColor: @sapDefault_Color;
|
|
2406
2838
|
|
|
2839
|
+
// [Label "Avatar 8 Hover Background Color"]
|
|
2840
|
+
// [Description "The background color of hovered type-8 avatars."]
|
|
2841
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2842
|
+
// [Protected "true"]
|
|
2843
|
+
// [Category "Avatar"]
|
|
2844
|
+
// [Type "color"]
|
|
2845
|
+
@sapAvatar_8_Hover_Background: @sapDefault_Color;
|
|
2846
|
+
|
|
2407
2847
|
// [Label "Avatar 9 Background Color"]
|
|
2408
2848
|
// [Description "The background color of type-9 avatars."]
|
|
2409
2849
|
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
@@ -2428,6 +2868,14 @@
|
|
|
2428
2868
|
// [Type "color"]
|
|
2429
2869
|
@sapAvatar_9_TextColor: @sapDefault_Color;
|
|
2430
2870
|
|
|
2871
|
+
// [Label "Avatar 9 Hover Background Color"]
|
|
2872
|
+
// [Description "The background color of hovered type-9 avatars."]
|
|
2873
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2874
|
+
// [Protected "true"]
|
|
2875
|
+
// [Category "Avatar"]
|
|
2876
|
+
// [Type "color"]
|
|
2877
|
+
@sapAvatar_9_Hover_Background: @sapDefault_Color;
|
|
2878
|
+
|
|
2431
2879
|
// [Label "Avatar 10 Background Color"]
|
|
2432
2880
|
// [Description "The background color of type-10 avatars."]
|
|
2433
2881
|
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
@@ -2452,6 +2900,38 @@
|
|
|
2452
2900
|
// [Type "color"]
|
|
2453
2901
|
@sapAvatar_10_TextColor: @sapDefault_Color;
|
|
2454
2902
|
|
|
2903
|
+
// [Label "Avatar 10 Hover Background Color"]
|
|
2904
|
+
// [Description "The background color of hovered type-10 avatars."]
|
|
2905
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2906
|
+
// [Protected "true"]
|
|
2907
|
+
// [Category "Avatar"]
|
|
2908
|
+
// [Type "color"]
|
|
2909
|
+
@sapAvatar_10_Hover_Background: @sapDefault_Color;
|
|
2910
|
+
|
|
2911
|
+
// [Label "Lite Avatar Border Color"]
|
|
2912
|
+
// [Description "The border color of transparent (lite) avatars."]
|
|
2913
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2914
|
+
// [Protected "true"]
|
|
2915
|
+
// [Category "Avatar"]
|
|
2916
|
+
// [Type "color"]
|
|
2917
|
+
@sapAvatar_Lite_BorderColor: @sapDefault_Color;
|
|
2918
|
+
|
|
2919
|
+
// [Label "Lite Avatar Background Color"]
|
|
2920
|
+
// [Description "The background color of transparent (lite) avatars."]
|
|
2921
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2922
|
+
// [Protected "true"]
|
|
2923
|
+
// [Category "Avatar"]
|
|
2924
|
+
// [Type "color"]
|
|
2925
|
+
@sapAvatar_Lite_Background: @sapDefault_Color;
|
|
2926
|
+
|
|
2927
|
+
// [Label "Avatar Hover Border Color"]
|
|
2928
|
+
// [Description "The hover border color of the avatar."]
|
|
2929
|
+
// [Tags "Base", "Avatar", "Color", "Protected"]
|
|
2930
|
+
// [Protected "true"]
|
|
2931
|
+
// [Category "Avatar"]
|
|
2932
|
+
// [Type "color"]
|
|
2933
|
+
@sapAvatar_Hover_BorderColor: @sapDefault_Color;
|
|
2934
|
+
|
|
2455
2935
|
// [Label "Button Background Color"]
|
|
2456
2936
|
// [Description "The background color of buttons."]
|
|
2457
2937
|
// [Tags "Base", "Button", "Color", "Protected"]
|
|
@@ -2492,6 +2972,14 @@
|
|
|
2492
2972
|
// [Type "color"]
|
|
2493
2973
|
@sapButton_TextColor: @sapDefault_Color;
|
|
2494
2974
|
|
|
2975
|
+
// [Label "Button Font Family"]
|
|
2976
|
+
// [Description "The font family of buttons."]
|
|
2977
|
+
// [Tags "Base", "Button", "Font", "Protected"]
|
|
2978
|
+
// [Protected "true"]
|
|
2979
|
+
// [Category "Button", "Standard"]
|
|
2980
|
+
// [Type "fontFamilies"]
|
|
2981
|
+
@sapButton_FontFamily: @sapDefault_Font;
|
|
2982
|
+
|
|
2495
2983
|
// [Label "Button Hover Background Color"]
|
|
2496
2984
|
// [Description "The background color of buttons on hover."]
|
|
2497
2985
|
// [Tags "Base", "Button", "Color", "Protected"]
|
|
@@ -2565,6 +3053,15 @@
|
|
|
2565
3053
|
// [Type "color"]
|
|
2566
3054
|
@sapButton_Emphasized_BorderColor: @sapDefault_Color;
|
|
2567
3055
|
|
|
3056
|
+
// [Label "Emphasized Button Border Width"]
|
|
3057
|
+
// [Description "The border width of emphasized buttons."]
|
|
3058
|
+
// [TranslationKey "sapButton_Emphasized_BorderWd"]
|
|
3059
|
+
// [Tags "Base", "Button", "Dimension", "Protected"]
|
|
3060
|
+
// [Protected "true"]
|
|
3061
|
+
// [Category "Button", "Emphasized"]
|
|
3062
|
+
// [Type "borderWidth"]
|
|
3063
|
+
@sapButton_Emphasized_BorderWidth: @sapDefault_Dimension;
|
|
3064
|
+
|
|
2568
3065
|
// [Label "Emphasized Button Text Color"]
|
|
2569
3066
|
// [Description "The color of texts and icons on emphasized buttons."]
|
|
2570
3067
|
// [Tags "Base", "Button", "Color", "Font", "Protected"]
|
|
@@ -2573,6 +3070,14 @@
|
|
|
2573
3070
|
// [Type "color"]
|
|
2574
3071
|
@sapButton_Emphasized_TextColor: @sapDefault_Color;
|
|
2575
3072
|
|
|
3073
|
+
// [Label "Emphasized Button Font Family"]
|
|
3074
|
+
// [Description "The font family of emphasized buttons."]
|
|
3075
|
+
// [Tags "Base", "Button", "Font", "Protected"]
|
|
3076
|
+
// [Protected "true"]
|
|
3077
|
+
// [Category "Button", "Emphasized"]
|
|
3078
|
+
// [Type "fontFamilies"]
|
|
3079
|
+
@sapButton_Emphasized_FontFamily: @sapDefault_Font;
|
|
3080
|
+
|
|
2576
3081
|
// [Label "Emphasized Button Hover Background Color"]
|
|
2577
3082
|
// [Description "The hover state background color of emphasized buttons."]
|
|
2578
3083
|
// [TranslationKey "sapButton_EmpHvrBg"]
|
|
@@ -3888,6 +4393,38 @@
|
|
|
3888
4393
|
// [Type "color"]
|
|
3889
4394
|
@sapButton_TokenBorderColor: @sapDefault_Color;
|
|
3890
4395
|
|
|
4396
|
+
// [Label "Token Border Radius"]
|
|
4397
|
+
// [Description "Defines the corner radius of a token."]
|
|
4398
|
+
// [Tags "Base", "Button", "Protected"]
|
|
4399
|
+
// [Protected "true"]
|
|
4400
|
+
// [Category "Button", "Token"]
|
|
4401
|
+
// [Type "borderRadius"]
|
|
4402
|
+
@sapButton_TokenBorderCornerRadius: @sapDefault_BorderStyle;
|
|
4403
|
+
|
|
4404
|
+
// [Label "Token Border Border Thickness"]
|
|
4405
|
+
// [Description "Defines the thickness of the border of a token."]
|
|
4406
|
+
// [Tags "Base", "Button", "Protected"]
|
|
4407
|
+
// [Protected "true"]
|
|
4408
|
+
// [Category "Button", "Token"]
|
|
4409
|
+
// [Type "borderWidth"]
|
|
4410
|
+
@sapButton_Selected_TokenBorderWidth: @sapDefault_BorderStyle;
|
|
4411
|
+
|
|
4412
|
+
// [Label "Read Only Token Background Color"]
|
|
4413
|
+
// [Description "Defines the background color of a readonly a token."]
|
|
4414
|
+
// [Tags "Base", "Button", "Protected"]
|
|
4415
|
+
// [Protected "true"]
|
|
4416
|
+
// [Category "Button", "Token"]
|
|
4417
|
+
// [Type "color"]
|
|
4418
|
+
@sapButton_ReadOnly_TokenBackground: @sapDefault_Color;
|
|
4419
|
+
|
|
4420
|
+
// [Label "Button Segment Border Corner Radius"]
|
|
4421
|
+
// [Description "The border corner radius inside a group of buttons."]
|
|
4422
|
+
// [Tags "Base", "Button", "Protected"]
|
|
4423
|
+
// [Protected "true"]
|
|
4424
|
+
// [Category "Button", "Standard"]
|
|
4425
|
+
// [Type "borderRadius"]
|
|
4426
|
+
@sapButton_Segment_BorderCornerRadius: @sapDefault_BorderStyle;
|
|
4427
|
+
|
|
3891
4428
|
// [Label "Field Background Color"]
|
|
3892
4429
|
// [Description "The background color of input fields."]
|
|
3893
4430
|
// [Tags "Base", "Field", "Color", "Protected"]
|
|
@@ -4321,6 +4858,123 @@
|
|
|
4321
4858
|
// [Type "boxShadow"]
|
|
4322
4859
|
@sapField_InformationShadow: @sapDefault_Shadow;
|
|
4323
4860
|
|
|
4861
|
+
// [Label "Selector Field Hover Background Color"]
|
|
4862
|
+
// [Description "The hover background color of selector fields (e.g. Checkboxes and Radio Buttons)."]
|
|
4863
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4864
|
+
// [Protected "true"]
|
|
4865
|
+
// [Category "Input", "Standard"]
|
|
4866
|
+
// [Type "color"]
|
|
4867
|
+
@sapField_Selector_Hover_Background: @sapDefault_Color;
|
|
4868
|
+
|
|
4869
|
+
// [Label "Selector Invalid Field Hover Background Color"]
|
|
4870
|
+
// [Description "The background color of selector fields (e.g. Checkboxes) with an invalid value on hover."]
|
|
4871
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4872
|
+
// [Protected "true"]
|
|
4873
|
+
// [Category "Input", "Invalid"]
|
|
4874
|
+
// [Type "color"]
|
|
4875
|
+
@sapField_Selector_Hover_InvalidBackground: @sapDefault_Color;
|
|
4876
|
+
|
|
4877
|
+
// [Label "Selector Warning Field Hover Background Color"]
|
|
4878
|
+
// [Description "The background color of selector fields (e.g. Checkboxes) with an warning value on hover."]
|
|
4879
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4880
|
+
// [Protected "true"]
|
|
4881
|
+
// [Category "Input", "Warning"]
|
|
4882
|
+
// [Type "color"]
|
|
4883
|
+
@sapField_Selector_Hover_WarningBackground: @sapDefault_Color;
|
|
4884
|
+
|
|
4885
|
+
// [Label "Selector Success Field Hover Background Color"]
|
|
4886
|
+
// [Description "The background color of selector fields (e.g. Checkboxes) with an success value on hover."]
|
|
4887
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4888
|
+
// [Protected "true"]
|
|
4889
|
+
// [Category "Input", "Success"]
|
|
4890
|
+
// [Type "color"]
|
|
4891
|
+
@sapField_Selector_Hover_SuccessBackground: @sapDefault_Color;
|
|
4892
|
+
|
|
4893
|
+
// [Label "Selector Information Field Hover Background Color"]
|
|
4894
|
+
// [Description "The background color of selector fields (e.g. Checkboxes) with an information value on hover."]
|
|
4895
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4896
|
+
// [Protected "true"]
|
|
4897
|
+
// [Category "Input", "Information"]
|
|
4898
|
+
// [Type "color"]
|
|
4899
|
+
@sapField_Selector_Hover_InformationBackground: @sapDefault_Color;
|
|
4900
|
+
|
|
4901
|
+
// [Label "Picker Border Color"]
|
|
4902
|
+
// [Description "The border color of content pickers."]
|
|
4903
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4904
|
+
// [Protected "true"]
|
|
4905
|
+
// [Category "Input", "Standard"]
|
|
4906
|
+
// [Type "color"]
|
|
4907
|
+
@sapField_Picker_BorderColor: @sapDefault_Color;
|
|
4908
|
+
|
|
4909
|
+
// [Label "Picker Border Thickness"]
|
|
4910
|
+
// [Description "The border thickness of content pickers."]
|
|
4911
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4912
|
+
// [Protected "true"]
|
|
4913
|
+
// [Category "Input", "Standard"]
|
|
4914
|
+
// [Type "borderWidth"]
|
|
4915
|
+
@sapField_Picker_BorderWidth: @sapDefault_BorderStyle;
|
|
4916
|
+
|
|
4917
|
+
// [Label "Selector Field Border Style"]
|
|
4918
|
+
// [Description "The border style of selector fields (e.g. Checkboxes)."]
|
|
4919
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4920
|
+
// [Protected "true"]
|
|
4921
|
+
// [Category "Input", "Standard"]
|
|
4922
|
+
// [Type "borderStyle"]
|
|
4923
|
+
@sapField_Selector_BorderStyle: @sapDefault_BorderStyle;
|
|
4924
|
+
|
|
4925
|
+
// [Label "Read Only Selector Field Border Style"]
|
|
4926
|
+
// [Description "The border style of read-only selector fields (e.g. Checkboxes)."]
|
|
4927
|
+
// [TranslationKey "sapField_Selector_Ro_BrdSty"]
|
|
4928
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4929
|
+
// [Protected "true"]
|
|
4930
|
+
// [Category "Input", "Readonly"]
|
|
4931
|
+
// [Type "borderStyle"]
|
|
4932
|
+
@sapField_Selector_ReadOnly_BorderStyle: @sapDefault_BorderStyle;
|
|
4933
|
+
|
|
4934
|
+
// [Label "Invalid Selector Field Border Style"]
|
|
4935
|
+
// [Description "The border style of selector fields (e.g. Checkboxes) with an invalid value."]
|
|
4936
|
+
// [TranslationKey "sapField_Selector_InvBrdSty"]
|
|
4937
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4938
|
+
// [Protected "true"]
|
|
4939
|
+
// [Category "Input", "Invalid"]
|
|
4940
|
+
// [Type "borderStyle"]
|
|
4941
|
+
@sapField_Selector_InvalidBorderStyle: @sapDefault_BorderStyle;
|
|
4942
|
+
|
|
4943
|
+
// [Label "Warning Selector Field Border Style"]
|
|
4944
|
+
// [Description "The border style of selector fields (e.g. Checkboxes) indicating a warning."]
|
|
4945
|
+
// [TranslationKey "sapField_Selector_WarnBrdSty"]
|
|
4946
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4947
|
+
// [Protected "true"]
|
|
4948
|
+
// [Category "Input", "Warning"]
|
|
4949
|
+
// [Type "borderStyle"]
|
|
4950
|
+
@sapField_Selector_WarningBorderStyle: @sapDefault_BorderStyle;
|
|
4951
|
+
|
|
4952
|
+
// [Label "Success Selector Field Border Style"]
|
|
4953
|
+
// [Description "The border style of selector fields (e.g. Checkboxes) indicating a successful user action."]
|
|
4954
|
+
// [TranslationKey "sapField_Selector_SucBrdSty"]
|
|
4955
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4956
|
+
// [Protected "true"]
|
|
4957
|
+
// [Category "Input", "Success"]
|
|
4958
|
+
// [Type "borderStyle"]
|
|
4959
|
+
@sapField_Selector_SuccessBorderStyle: @sapDefault_BorderStyle;
|
|
4960
|
+
|
|
4961
|
+
// [Label "Information Selector Field Border Style"]
|
|
4962
|
+
// [Description "The border style of selector fields (e.g. Checkboxes) indicating an information status."]
|
|
4963
|
+
// [TranslationKey "sapField_Selector_InfBrdSty"]
|
|
4964
|
+
// [Tags "Base", "Field", "Protected"]
|
|
4965
|
+
// [Protected "true"]
|
|
4966
|
+
// [Category "Input", "Information"]
|
|
4967
|
+
// [Type "borderStyle"]
|
|
4968
|
+
@sapField_Selector_InformationBorderStyle: @sapDefault_BorderStyle;
|
|
4969
|
+
|
|
4970
|
+
// [Label "Group Title Border Thickness"]
|
|
4971
|
+
// [Description "The thickness of the bottom border of the group header area."]
|
|
4972
|
+
// [Tags "Base", "Group", "Protected"]
|
|
4973
|
+
// [Protected "true"]
|
|
4974
|
+
// [Category "Container"]
|
|
4975
|
+
// [Type "borderWidth"]
|
|
4976
|
+
@sapGroup_TitleBorderWidth: @sapDefault_Dimension;
|
|
4977
|
+
|
|
4324
4978
|
// [Label "Group Title Background Color"]
|
|
4325
4979
|
// [Description "The background color of the group header area."]
|
|
4326
4980
|
// [Tags "Base", "Group", "Color", "Protected"]
|
|
@@ -4606,6 +5260,22 @@
|
|
|
4606
5260
|
// [Type "color"]
|
|
4607
5261
|
@sapList_TableFixedBorderColor: @sapDefault_Color;
|
|
4608
5262
|
|
|
5263
|
+
// [Label "Table Fixed Column Border Thickness"]
|
|
5264
|
+
// [Description "The thickness of the vertical border of fixed columns."]
|
|
5265
|
+
// [Tags "Base", "List", "Protected"]
|
|
5266
|
+
// [Protected "true"]
|
|
5267
|
+
// [Category "List"]
|
|
5268
|
+
// [Type "borderWidth"]
|
|
5269
|
+
@sapList_TableFixedColumnBorderWidth: @sapDefault_Dimension;
|
|
5270
|
+
|
|
5271
|
+
// [Label "Table Fixed Row Border Thickness"]
|
|
5272
|
+
// [Description "The border thickness for fixed border rows."]
|
|
5273
|
+
// [Tags "Base", "List", "Protected"]
|
|
5274
|
+
// [Protected "true"]
|
|
5275
|
+
// [Category "List"]
|
|
5276
|
+
// [Type "borderWidth"]
|
|
5277
|
+
@sapList_TableFixedRowBorderWidth: @sapDefault_Dimension;
|
|
5278
|
+
|
|
4609
5279
|
// [Label "Message Error Border Color"]
|
|
4610
5280
|
// [Description "The error border color of message controls."]
|
|
4611
5281
|
// [Tags "Base", "Message", "Color", "Protected"]
|
|
@@ -5244,6 +5914,14 @@
|
|
|
5244
5914
|
// [Type "color"]
|
|
5245
5915
|
@sapBlockLayer_Background: @sapDefault_Color;
|
|
5246
5916
|
|
|
5917
|
+
// [Label "Block Layer Opacity"]
|
|
5918
|
+
// [Description "The opacity of a block layer background which is e.g. in the back of a dialog."]
|
|
5919
|
+
// [Tags "Base", "Page", "Opacity", "Protected"]
|
|
5920
|
+
// [Protected "true"]
|
|
5921
|
+
// [Category "Container"]
|
|
5922
|
+
// [Type "opacity"]
|
|
5923
|
+
@sapBlockLayer_Opacity: @sapDefault_Dimension;
|
|
5924
|
+
|
|
5247
5925
|
// [Label "Tile Background Color"]
|
|
5248
5926
|
// [Description "The background color of tiles and cards."]
|
|
5249
5927
|
// [Tags "Base", "Tile", "Color", "Protected"]
|
|
@@ -5340,6 +6018,22 @@
|
|
|
5340
6018
|
// [Type "color"]
|
|
5341
6019
|
@sapTile_OverlayForegroundColor: @sapDefault_Color;
|
|
5342
6020
|
|
|
6021
|
+
// [Label "Tile Content Hover Background Color"]
|
|
6022
|
+
// [Description "The hover background color of the content on tiles and cards."]
|
|
6023
|
+
// [Tags "Base", "Tile", "Color", "Protected"]
|
|
6024
|
+
// [Protected "true"]
|
|
6025
|
+
// [Category "Tile"]
|
|
6026
|
+
// [Type "color"]
|
|
6027
|
+
@sapTile_Hover_ContentBackground: @sapDefault_Color;
|
|
6028
|
+
|
|
6029
|
+
// [Label "Tile Content Active Background Color"]
|
|
6030
|
+
// [Description "The active background color of the content on tiles and cards."]
|
|
6031
|
+
// [Tags "Base", "Tile", "Color", "Protected"]
|
|
6032
|
+
// [Protected "true"]
|
|
6033
|
+
// [Category "Tile"]
|
|
6034
|
+
// [Type "color"]
|
|
6035
|
+
@sapTile_Active_ContentBackground: @sapDefault_Color;
|
|
6036
|
+
|
|
5343
6037
|
// [Label "Accent Color 1"]
|
|
5344
6038
|
// [Description "Secondary color to accentuate UI elements."]
|
|
5345
6039
|
// [Tags "Base", "Accent", "Color", "Protected"]
|
|
@@ -5502,7 +6196,7 @@
|
|
|
5502
6196
|
|
|
5503
6197
|
// [Label "Indication Color 1"]
|
|
5504
6198
|
// [Description "The color for elements showing indication 1."]
|
|
5505
|
-
// [Tags "Base", "
|
|
6199
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5506
6200
|
// [Protected "true"]
|
|
5507
6201
|
// [Category "Indication"]
|
|
5508
6202
|
// [Type "color"]
|
|
@@ -5511,7 +6205,7 @@
|
|
|
5511
6205
|
// [Label "Indication Color 1 Background"]
|
|
5512
6206
|
// [Description "The background color for elements showing indication 1."]
|
|
5513
6207
|
// [TranslationKey "sapIndication1Bg"]
|
|
5514
|
-
// [Tags "Base", "
|
|
6208
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5515
6209
|
// [Protected "true"]
|
|
5516
6210
|
// [Category "Indication"]
|
|
5517
6211
|
// [Type "color"]
|
|
@@ -5520,7 +6214,7 @@
|
|
|
5520
6214
|
// [Label "Indication Color 1 Border Color"]
|
|
5521
6215
|
// [Description "The border color for elements showing indication 1."]
|
|
5522
6216
|
// [TranslationKey "sapIndication1Brd"]
|
|
5523
|
-
// [Tags "Base", "
|
|
6217
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5524
6218
|
// [Protected "true"]
|
|
5525
6219
|
// [Category "Indication"]
|
|
5526
6220
|
// [Type "color"]
|
|
@@ -5528,7 +6222,7 @@
|
|
|
5528
6222
|
|
|
5529
6223
|
// [Label "Indication Color 1 Text Color"]
|
|
5530
6224
|
// [Description "The text and icon color for elements showing indication 1."]
|
|
5531
|
-
// [Tags "Base", "
|
|
6225
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
5532
6226
|
// [Protected "true"]
|
|
5533
6227
|
// [Category "Indication"]
|
|
5534
6228
|
// [Type "color"]
|
|
@@ -5537,7 +6231,7 @@
|
|
|
5537
6231
|
// [Label "Indication Color 1 Hover Background"]
|
|
5538
6232
|
// [Description "The hover state background color for elements showing indication 1."]
|
|
5539
6233
|
// [TranslationKey "sapIndication1HvrBg"]
|
|
5540
|
-
// [Tags "Base", "
|
|
6234
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5541
6235
|
// [Protected "true"]
|
|
5542
6236
|
// [Category "Indication"]
|
|
5543
6237
|
// [Type "color"]
|
|
@@ -5546,7 +6240,7 @@
|
|
|
5546
6240
|
// [Label "Indication Color 1 Active Background"]
|
|
5547
6241
|
// [Description "The active (down) state background color for elements showing indication 1."]
|
|
5548
6242
|
// [TranslationKey "sapIndication1ActBg"]
|
|
5549
|
-
// [Tags "Base", "
|
|
6243
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5550
6244
|
// [Protected "true"]
|
|
5551
6245
|
// [Category "Indication"]
|
|
5552
6246
|
// [Type "color"]
|
|
@@ -5555,7 +6249,7 @@
|
|
|
5555
6249
|
// [Label "Indication Color 1 Active Border Color"]
|
|
5556
6250
|
// [Description "The active (down) state border color for elements showing indication 1."]
|
|
5557
6251
|
// [TranslationKey "sapIndication1ActBrd"]
|
|
5558
|
-
// [Tags "Base", "
|
|
6252
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5559
6253
|
// [Protected "true"]
|
|
5560
6254
|
// [Category "Indication"]
|
|
5561
6255
|
// [Type "color"]
|
|
@@ -5564,7 +6258,7 @@
|
|
|
5564
6258
|
// [Label "Indication Color 1 Active Text Color"]
|
|
5565
6259
|
// [Description "The active (down) state text and icon color for elements showing indication 1."]
|
|
5566
6260
|
// [TranslationKey "sapIndication1ActTxt"]
|
|
5567
|
-
// [Tags "Base", "
|
|
6261
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5568
6262
|
// [Protected "true"]
|
|
5569
6263
|
// [Category "Indication"]
|
|
5570
6264
|
// [Type "color"]
|
|
@@ -5573,7 +6267,7 @@
|
|
|
5573
6267
|
// [Label "Indication Color 1 Selected Background"]
|
|
5574
6268
|
// [Description "The selected (toggled) state background color for elements showing indication 1."]
|
|
5575
6269
|
// [TranslationKey "sapIndication1SelBg"]
|
|
5576
|
-
// [Tags "Base", "
|
|
6270
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5577
6271
|
// [Protected "true"]
|
|
5578
6272
|
// [Category "Indication"]
|
|
5579
6273
|
// [Type "color"]
|
|
@@ -5582,7 +6276,7 @@
|
|
|
5582
6276
|
// [Label "Indication Color 1 Selected Border Color"]
|
|
5583
6277
|
// [Description "The selected (toggled) state border color for elements showing indication 1."]
|
|
5584
6278
|
// [TranslationKey "sapIndication1SelBrd"]
|
|
5585
|
-
// [Tags "Base", "
|
|
6279
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5586
6280
|
// [Protected "true"]
|
|
5587
6281
|
// [Category "Indication"]
|
|
5588
6282
|
// [Type "color"]
|
|
@@ -5591,7 +6285,7 @@
|
|
|
5591
6285
|
// [Label "Indication Color 1 Selected Text Color"]
|
|
5592
6286
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 1."]
|
|
5593
6287
|
// [TranslationKey "sapIndication1SelTxt"]
|
|
5594
|
-
// [Tags "Base", "
|
|
6288
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5595
6289
|
// [Protected "true"]
|
|
5596
6290
|
// [Category "Indication"]
|
|
5597
6291
|
// [Type "color"]
|
|
@@ -5600,7 +6294,7 @@
|
|
|
5600
6294
|
// [Label "Indication Color 1b"]
|
|
5601
6295
|
// [Description "The color for elements showing a less prominent shade of indication 1."]
|
|
5602
6296
|
// [TranslationKey "sapIndication1b"]
|
|
5603
|
-
// [Tags "Base", "
|
|
6297
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5604
6298
|
// [Protected "true"]
|
|
5605
6299
|
// [Category "Indication"]
|
|
5606
6300
|
// [Type "color"]
|
|
@@ -5609,7 +6303,7 @@
|
|
|
5609
6303
|
// [Label "Indication Color 1b Border Color"]
|
|
5610
6304
|
// [Description "The border color for elements showing a less prominent shade of indication 1."]
|
|
5611
6305
|
// [TranslationKey "sapIndication1bBrd"]
|
|
5612
|
-
// [Tags "Base", "
|
|
6306
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5613
6307
|
// [Protected "true"]
|
|
5614
6308
|
// [Category "Indication"]
|
|
5615
6309
|
// [Type "color"]
|
|
@@ -5618,7 +6312,7 @@
|
|
|
5618
6312
|
// [Label "Indication Color 1b Hover Background"]
|
|
5619
6313
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 1."]
|
|
5620
6314
|
// [TranslationKey "sapIndication1bHvBg"]
|
|
5621
|
-
// [Tags "Base", "
|
|
6315
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5622
6316
|
// [Protected "true"]
|
|
5623
6317
|
// [Category "Indication"]
|
|
5624
6318
|
// [Type "color"]
|
|
@@ -5626,7 +6320,7 @@
|
|
|
5626
6320
|
|
|
5627
6321
|
// [Label "Indication Color 2"]
|
|
5628
6322
|
// [Description "The color for elements showing indication 2."]
|
|
5629
|
-
// [Tags "Base", "
|
|
6323
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5630
6324
|
// [Protected "true"]
|
|
5631
6325
|
// [Category "Indication"]
|
|
5632
6326
|
// [Type "color"]
|
|
@@ -5635,7 +6329,7 @@
|
|
|
5635
6329
|
// [Label "Indication Color 2 Background"]
|
|
5636
6330
|
// [Description "The background color for elements showing indication 2."]
|
|
5637
6331
|
// [TranslationKey "sapIndication2Bg"]
|
|
5638
|
-
// [Tags "Base", "
|
|
6332
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5639
6333
|
// [Protected "true"]
|
|
5640
6334
|
// [Category "Indication"]
|
|
5641
6335
|
// [Type "color"]
|
|
@@ -5644,7 +6338,7 @@
|
|
|
5644
6338
|
// [Label "Indication Color 2 Border Color"]
|
|
5645
6339
|
// [Description "The border color for elements showing indication 2."]
|
|
5646
6340
|
// [TranslationKey "sapIndication2Brd"]
|
|
5647
|
-
// [Tags "Base", "
|
|
6341
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5648
6342
|
// [Protected "true"]
|
|
5649
6343
|
// [Category "Indication"]
|
|
5650
6344
|
// [Type "color"]
|
|
@@ -5652,7 +6346,7 @@
|
|
|
5652
6346
|
|
|
5653
6347
|
// [Label "Indication Color 2 Text Color"]
|
|
5654
6348
|
// [Description "The text and icon color for elements showing indication 2."]
|
|
5655
|
-
// [Tags "Base", "
|
|
6349
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
5656
6350
|
// [Protected "true"]
|
|
5657
6351
|
// [Category "Indication"]
|
|
5658
6352
|
// [Type "color"]
|
|
@@ -5661,7 +6355,7 @@
|
|
|
5661
6355
|
// [Label "Indication Color 2 Hover Background"]
|
|
5662
6356
|
// [Description "The hover state background color for elements showing indication 2."]
|
|
5663
6357
|
// [TranslationKey "sapIndication2HvrBg"]
|
|
5664
|
-
// [Tags "Base", "
|
|
6358
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5665
6359
|
// [Protected "true"]
|
|
5666
6360
|
// [Category "Indication"]
|
|
5667
6361
|
// [Type "color"]
|
|
@@ -5670,7 +6364,7 @@
|
|
|
5670
6364
|
// [Label "Indication Color 2 Active Background"]
|
|
5671
6365
|
// [Description "The active (down) state background color for elements showing indication 2."]
|
|
5672
6366
|
// [TranslationKey "sapIndication2ActBg"]
|
|
5673
|
-
// [Tags "Base", "
|
|
6367
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5674
6368
|
// [Protected "true"]
|
|
5675
6369
|
// [Category "Indication"]
|
|
5676
6370
|
// [Type "color"]
|
|
@@ -5679,7 +6373,7 @@
|
|
|
5679
6373
|
// [Label "Indication Color 2 Active Border Color"]
|
|
5680
6374
|
// [Description "The active (down) state border color for elements showing indication 2."]
|
|
5681
6375
|
// [TranslationKey "sapIndication2ActBrd"]
|
|
5682
|
-
// [Tags "Base", "
|
|
6376
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5683
6377
|
// [Protected "true"]
|
|
5684
6378
|
// [Category "Indication"]
|
|
5685
6379
|
// [Type "color"]
|
|
@@ -5688,7 +6382,7 @@
|
|
|
5688
6382
|
// [Label "Indication Color 2 Active Text Color"]
|
|
5689
6383
|
// [Description "The active (down) state text and icon color for elements showing indication 2."]
|
|
5690
6384
|
// [TranslationKey "sapIndication2ActTxt"]
|
|
5691
|
-
// [Tags "Base", "
|
|
6385
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5692
6386
|
// [Protected "true"]
|
|
5693
6387
|
// [Category "Indication"]
|
|
5694
6388
|
// [Type "color"]
|
|
@@ -5697,7 +6391,7 @@
|
|
|
5697
6391
|
// [Label "Indication Color 2 Selected Background"]
|
|
5698
6392
|
// [Description "The selected (toggled) state background color for elements showing indication 2."]
|
|
5699
6393
|
// [TranslationKey "sapIndication2SelBg"]
|
|
5700
|
-
// [Tags "Base", "
|
|
6394
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5701
6395
|
// [Protected "true"]
|
|
5702
6396
|
// [Category "Indication"]
|
|
5703
6397
|
// [Type "color"]
|
|
@@ -5706,7 +6400,7 @@
|
|
|
5706
6400
|
// [Label "Indication Color 2 Selected Border Color"]
|
|
5707
6401
|
// [Description "The selected (toggled) state border color for elements showing indication 2."]
|
|
5708
6402
|
// [TranslationKey "sapIndication2SelBrd"]
|
|
5709
|
-
// [Tags "Base", "
|
|
6403
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5710
6404
|
// [Protected "true"]
|
|
5711
6405
|
// [Category "Indication"]
|
|
5712
6406
|
// [Type "color"]
|
|
@@ -5715,7 +6409,7 @@
|
|
|
5715
6409
|
// [Label "Indication Color 2 Selected Text Color"]
|
|
5716
6410
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 2."]
|
|
5717
6411
|
// [TranslationKey "sapIndication2SelTxt"]
|
|
5718
|
-
// [Tags "Base", "
|
|
6412
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5719
6413
|
// [Protected "true"]
|
|
5720
6414
|
// [Category "Indication"]
|
|
5721
6415
|
// [Type "color"]
|
|
@@ -5724,7 +6418,7 @@
|
|
|
5724
6418
|
// [Label "Indication Color 2b"]
|
|
5725
6419
|
// [Description "The color for elements showing a less prominent shade of indication 2."]
|
|
5726
6420
|
// [TranslationKey "sapIndication2b"]
|
|
5727
|
-
// [Tags "Base", "
|
|
6421
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5728
6422
|
// [Protected "true"]
|
|
5729
6423
|
// [Category "Indication"]
|
|
5730
6424
|
// [Type "color"]
|
|
@@ -5733,7 +6427,7 @@
|
|
|
5733
6427
|
// [Label "Indication Color 2b Border Color"]
|
|
5734
6428
|
// [Description "The border color for elements showing a less prominent shade of indication 2."]
|
|
5735
6429
|
// [TranslationKey "sapIndication2bBrd"]
|
|
5736
|
-
// [Tags "Base", "
|
|
6430
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5737
6431
|
// [Protected "true"]
|
|
5738
6432
|
// [Category "Indication"]
|
|
5739
6433
|
// [Type "color"]
|
|
@@ -5742,7 +6436,7 @@
|
|
|
5742
6436
|
// [Label "Indication Color 2b Hover Background"]
|
|
5743
6437
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 2."]
|
|
5744
6438
|
// [TranslationKey "sapIndication2bHvBg"]
|
|
5745
|
-
// [Tags "Base", "
|
|
6439
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5746
6440
|
// [Protected "true"]
|
|
5747
6441
|
// [Category "Indication"]
|
|
5748
6442
|
// [Type "color"]
|
|
@@ -5750,7 +6444,7 @@
|
|
|
5750
6444
|
|
|
5751
6445
|
// [Label "Indication Color 3"]
|
|
5752
6446
|
// [Description "The color for elements showing indication 3."]
|
|
5753
|
-
// [Tags "Base", "
|
|
6447
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5754
6448
|
// [Protected "true"]
|
|
5755
6449
|
// [Category "Indication"]
|
|
5756
6450
|
// [Type "color"]
|
|
@@ -5759,7 +6453,7 @@
|
|
|
5759
6453
|
// [Label "Indication Color 3 Background"]
|
|
5760
6454
|
// [Description "The background color for elements showing indication 3."]
|
|
5761
6455
|
// [TranslationKey "sapIndication3Bg"]
|
|
5762
|
-
// [Tags "Base", "
|
|
6456
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5763
6457
|
// [Protected "true"]
|
|
5764
6458
|
// [Category "Indication"]
|
|
5765
6459
|
// [Type "color"]
|
|
@@ -5768,7 +6462,7 @@
|
|
|
5768
6462
|
// [Label "Indication Color 3 Border Color"]
|
|
5769
6463
|
// [Description "The border color for elements showing indication 3."]
|
|
5770
6464
|
// [TranslationKey "sapIndication3Brd"]
|
|
5771
|
-
// [Tags "Base", "
|
|
6465
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5772
6466
|
// [Protected "true"]
|
|
5773
6467
|
// [Category "Indication"]
|
|
5774
6468
|
// [Type "color"]
|
|
@@ -5776,7 +6470,7 @@
|
|
|
5776
6470
|
|
|
5777
6471
|
// [Label "Indication Color 3 Text Color"]
|
|
5778
6472
|
// [Description "The text and icon color for elements showing indication 3."]
|
|
5779
|
-
// [Tags "Base", "
|
|
6473
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
5780
6474
|
// [Protected "true"]
|
|
5781
6475
|
// [Category "Indication"]
|
|
5782
6476
|
// [Type "color"]
|
|
@@ -5785,7 +6479,7 @@
|
|
|
5785
6479
|
// [Label "Indication Color 3 Hover Background"]
|
|
5786
6480
|
// [Description "The hover state background color for elements showing indication 3."]
|
|
5787
6481
|
// [TranslationKey "sapIndication3HvrBg"]
|
|
5788
|
-
// [Tags "Base", "
|
|
6482
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5789
6483
|
// [Protected "true"]
|
|
5790
6484
|
// [Category "Indication"]
|
|
5791
6485
|
// [Type "color"]
|
|
@@ -5794,7 +6488,7 @@
|
|
|
5794
6488
|
// [Label "Indication Color 3 Active Background"]
|
|
5795
6489
|
// [Description "The active (down) state background color for elements showing indication 3."]
|
|
5796
6490
|
// [TranslationKey "sapIndication3ActBg"]
|
|
5797
|
-
// [Tags "Base", "
|
|
6491
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5798
6492
|
// [Protected "true"]
|
|
5799
6493
|
// [Category "Indication"]
|
|
5800
6494
|
// [Type "color"]
|
|
@@ -5803,7 +6497,7 @@
|
|
|
5803
6497
|
// [Label "Indication Color 3 Active Border Color"]
|
|
5804
6498
|
// [Description "The active (down) state border color for elements showing indication 3."]
|
|
5805
6499
|
// [TranslationKey "sapIndication3ActBrd"]
|
|
5806
|
-
// [Tags "Base", "
|
|
6500
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5807
6501
|
// [Protected "true"]
|
|
5808
6502
|
// [Category "Indication"]
|
|
5809
6503
|
// [Type "color"]
|
|
@@ -5812,7 +6506,7 @@
|
|
|
5812
6506
|
// [Label "Indication Color 3 Active Text Color"]
|
|
5813
6507
|
// [Description "The active (down) state text and icon color for elements showing indication 3."]
|
|
5814
6508
|
// [TranslationKey "sapIndication3ActTxt"]
|
|
5815
|
-
// [Tags "Base", "
|
|
6509
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5816
6510
|
// [Protected "true"]
|
|
5817
6511
|
// [Category "Indication"]
|
|
5818
6512
|
// [Type "color"]
|
|
@@ -5821,7 +6515,7 @@
|
|
|
5821
6515
|
// [Label "Indication Color 3 Selected Background"]
|
|
5822
6516
|
// [Description "The selected (toggled) state background color for elements showing indication 3."]
|
|
5823
6517
|
// [TranslationKey "sapIndication3SelBg"]
|
|
5824
|
-
// [Tags "Base", "
|
|
6518
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5825
6519
|
// [Protected "true"]
|
|
5826
6520
|
// [Category "Indication"]
|
|
5827
6521
|
// [Type "color"]
|
|
@@ -5830,7 +6524,7 @@
|
|
|
5830
6524
|
// [Label "Indication Color 3 Selected Border Color"]
|
|
5831
6525
|
// [Description "The selected (toggled) state border color for elements showing indication 3."]
|
|
5832
6526
|
// [TranslationKey "sapIndication3SelBrd"]
|
|
5833
|
-
// [Tags "Base", "
|
|
6527
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5834
6528
|
// [Protected "true"]
|
|
5835
6529
|
// [Category "Indication"]
|
|
5836
6530
|
// [Type "color"]
|
|
@@ -5839,7 +6533,7 @@
|
|
|
5839
6533
|
// [Label "Indication Color 3 Selected Text Color"]
|
|
5840
6534
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 3."]
|
|
5841
6535
|
// [TranslationKey "sapIndication3SelTxt"]
|
|
5842
|
-
// [Tags "Base", "
|
|
6536
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5843
6537
|
// [Protected "true"]
|
|
5844
6538
|
// [Category "Indication"]
|
|
5845
6539
|
// [Type "color"]
|
|
@@ -5848,7 +6542,7 @@
|
|
|
5848
6542
|
// [Label "Indication Color 3b"]
|
|
5849
6543
|
// [Description "The color for elements showing a less prominent shade of indication 3."]
|
|
5850
6544
|
// [TranslationKey "sapIndication3b"]
|
|
5851
|
-
// [Tags "Base", "
|
|
6545
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5852
6546
|
// [Protected "true"]
|
|
5853
6547
|
// [Category "Indication"]
|
|
5854
6548
|
// [Type "color"]
|
|
@@ -5857,7 +6551,7 @@
|
|
|
5857
6551
|
// [Label "Indication Color 3b Border Color"]
|
|
5858
6552
|
// [Description "The border color for elements showing a less prominent shade of indication 3."]
|
|
5859
6553
|
// [TranslationKey "sapIndication3bBrd"]
|
|
5860
|
-
// [Tags "Base", "
|
|
6554
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5861
6555
|
// [Protected "true"]
|
|
5862
6556
|
// [Category "Indication"]
|
|
5863
6557
|
// [Type "color"]
|
|
@@ -5866,7 +6560,7 @@
|
|
|
5866
6560
|
// [Label "Indication Color 3b Hover Background"]
|
|
5867
6561
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 3."]
|
|
5868
6562
|
// [TranslationKey "sapIndication3bHvBg"]
|
|
5869
|
-
// [Tags "Base", "
|
|
6563
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5870
6564
|
// [Protected "true"]
|
|
5871
6565
|
// [Category "Indication"]
|
|
5872
6566
|
// [Type "color"]
|
|
@@ -5874,7 +6568,7 @@
|
|
|
5874
6568
|
|
|
5875
6569
|
// [Label "Indication Color 4"]
|
|
5876
6570
|
// [Description "The color for elements showing indication 4."]
|
|
5877
|
-
// [Tags "Base", "
|
|
6571
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5878
6572
|
// [Protected "true"]
|
|
5879
6573
|
// [Category "Indication"]
|
|
5880
6574
|
// [Type "color"]
|
|
@@ -5883,7 +6577,7 @@
|
|
|
5883
6577
|
// [Label "Indication Color 4 Background"]
|
|
5884
6578
|
// [Description "The background color for elements showing indication 4."]
|
|
5885
6579
|
// [TranslationKey "sapIndication4Bg"]
|
|
5886
|
-
// [Tags "Base", "
|
|
6580
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5887
6581
|
// [Protected "true"]
|
|
5888
6582
|
// [Category "Indication"]
|
|
5889
6583
|
// [Type "color"]
|
|
@@ -5892,7 +6586,7 @@
|
|
|
5892
6586
|
// [Label "Indication Color 4 Border Color"]
|
|
5893
6587
|
// [Description "The border color for elements showing indication 4."]
|
|
5894
6588
|
// [TranslationKey "sapIndication4Brd"]
|
|
5895
|
-
// [Tags "Base", "
|
|
6589
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5896
6590
|
// [Protected "true"]
|
|
5897
6591
|
// [Category "Indication"]
|
|
5898
6592
|
// [Type "color"]
|
|
@@ -5900,7 +6594,7 @@
|
|
|
5900
6594
|
|
|
5901
6595
|
// [Label "Indication Color 4 Text Color"]
|
|
5902
6596
|
// [Description "The text and icon color for elements showing indication 4."]
|
|
5903
|
-
// [Tags "Base", "
|
|
6597
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
5904
6598
|
// [Protected "true"]
|
|
5905
6599
|
// [Category "Indication"]
|
|
5906
6600
|
// [Type "color"]
|
|
@@ -5909,7 +6603,7 @@
|
|
|
5909
6603
|
// [Label "Indication Color 4 Hover Background"]
|
|
5910
6604
|
// [Description "The hover state background color for elements showing indication 4."]
|
|
5911
6605
|
// [TranslationKey "sapIndication4HvrBg"]
|
|
5912
|
-
// [Tags "Base", "
|
|
6606
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5913
6607
|
// [Protected "true"]
|
|
5914
6608
|
// [Category "Indication"]
|
|
5915
6609
|
// [Type "color"]
|
|
@@ -5918,7 +6612,7 @@
|
|
|
5918
6612
|
// [Label "Indication Color 4 Active Background"]
|
|
5919
6613
|
// [Description "The active (down) state background color for elements showing indication 4."]
|
|
5920
6614
|
// [TranslationKey "sapIndication4ActBg"]
|
|
5921
|
-
// [Tags "Base", "
|
|
6615
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5922
6616
|
// [Protected "true"]
|
|
5923
6617
|
// [Category "Indication"]
|
|
5924
6618
|
// [Type "color"]
|
|
@@ -5927,7 +6621,7 @@
|
|
|
5927
6621
|
// [Label "Indication Color 4 Active Border Color"]
|
|
5928
6622
|
// [Description "The active (down) state border color for elements showing indication 4."]
|
|
5929
6623
|
// [TranslationKey "sapIndication4ActBrd"]
|
|
5930
|
-
// [Tags "Base", "
|
|
6624
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5931
6625
|
// [Protected "true"]
|
|
5932
6626
|
// [Category "Indication"]
|
|
5933
6627
|
// [Type "color"]
|
|
@@ -5936,7 +6630,7 @@
|
|
|
5936
6630
|
// [Label "Indication Color 4 Active Text Color"]
|
|
5937
6631
|
// [Description "The active (down) state text and icon color for elements showing indication 4."]
|
|
5938
6632
|
// [TranslationKey "sapIndication4ActTxt"]
|
|
5939
|
-
// [Tags "Base", "
|
|
6633
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5940
6634
|
// [Protected "true"]
|
|
5941
6635
|
// [Category "Indication"]
|
|
5942
6636
|
// [Type "color"]
|
|
@@ -5945,7 +6639,7 @@
|
|
|
5945
6639
|
// [Label "Indication Color 4 Selected Background"]
|
|
5946
6640
|
// [Description "The selected (toggled) state background color for elements showing indication 4."]
|
|
5947
6641
|
// [TranslationKey "sapIndication4SelBg"]
|
|
5948
|
-
// [Tags "Base", "
|
|
6642
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5949
6643
|
// [Protected "true"]
|
|
5950
6644
|
// [Category "Indication"]
|
|
5951
6645
|
// [Type "color"]
|
|
@@ -5954,7 +6648,7 @@
|
|
|
5954
6648
|
// [Label "Indication Color 4 Selected Border Color"]
|
|
5955
6649
|
// [Description "The selected (toggled) state border color for elements showing indication 4."]
|
|
5956
6650
|
// [TranslationKey "sapIndication4SelBrd"]
|
|
5957
|
-
// [Tags "Base", "
|
|
6651
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5958
6652
|
// [Protected "true"]
|
|
5959
6653
|
// [Category "Indication"]
|
|
5960
6654
|
// [Type "color"]
|
|
@@ -5963,7 +6657,7 @@
|
|
|
5963
6657
|
// [Label "Indication Color 4 Selected Text Color"]
|
|
5964
6658
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 4."]
|
|
5965
6659
|
// [TranslationKey "sapIndication4SelTxt"]
|
|
5966
|
-
// [Tags "Base", "
|
|
6660
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5967
6661
|
// [Protected "true"]
|
|
5968
6662
|
// [Category "Indication"]
|
|
5969
6663
|
// [Type "color"]
|
|
@@ -5972,7 +6666,7 @@
|
|
|
5972
6666
|
// [Label "Indication Color 4b"]
|
|
5973
6667
|
// [Description "The color for elements showing a less prominent shade of indication 4."]
|
|
5974
6668
|
// [TranslationKey "sapIndication4b"]
|
|
5975
|
-
// [Tags "Base", "
|
|
6669
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5976
6670
|
// [Protected "true"]
|
|
5977
6671
|
// [Category "Indication"]
|
|
5978
6672
|
// [Type "color"]
|
|
@@ -5981,7 +6675,7 @@
|
|
|
5981
6675
|
// [Label "Indication Color 4b Border Color"]
|
|
5982
6676
|
// [Description "The border color for elements showing a less prominent shade of indication 4."]
|
|
5983
6677
|
// [TranslationKey "sapIndication4bBrd"]
|
|
5984
|
-
// [Tags "Base", "
|
|
6678
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5985
6679
|
// [Protected "true"]
|
|
5986
6680
|
// [Category "Indication"]
|
|
5987
6681
|
// [Type "color"]
|
|
@@ -5990,7 +6684,7 @@
|
|
|
5990
6684
|
// [Label "Indication Color 4b Hover Background"]
|
|
5991
6685
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 4."]
|
|
5992
6686
|
// [TranslationKey "sapIndication4bHvBg"]
|
|
5993
|
-
// [Tags "Base", "
|
|
6687
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
5994
6688
|
// [Protected "true"]
|
|
5995
6689
|
// [Category "Indication"]
|
|
5996
6690
|
// [Type "color"]
|
|
@@ -5998,7 +6692,7 @@
|
|
|
5998
6692
|
|
|
5999
6693
|
// [Label "Indication Color 5"]
|
|
6000
6694
|
// [Description "The color for elements showing indication 5."]
|
|
6001
|
-
// [Tags "Base", "
|
|
6695
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6002
6696
|
// [Protected "true"]
|
|
6003
6697
|
// [Category "Indication"]
|
|
6004
6698
|
// [Type "color"]
|
|
@@ -6007,7 +6701,7 @@
|
|
|
6007
6701
|
// [Label "Indication Color 5 Background"]
|
|
6008
6702
|
// [Description "The background color for elements showing indication 5."]
|
|
6009
6703
|
// [TranslationKey "sapIndication5Bg"]
|
|
6010
|
-
// [Tags "Base", "
|
|
6704
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6011
6705
|
// [Protected "true"]
|
|
6012
6706
|
// [Category "Indication"]
|
|
6013
6707
|
// [Type "color"]
|
|
@@ -6016,7 +6710,7 @@
|
|
|
6016
6710
|
// [Label "Indication Color 5 Border Color"]
|
|
6017
6711
|
// [Description "The border color for elements showing indication 5."]
|
|
6018
6712
|
// [TranslationKey "sapIndication5Brd"]
|
|
6019
|
-
// [Tags "Base", "
|
|
6713
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6020
6714
|
// [Protected "true"]
|
|
6021
6715
|
// [Category "Indication"]
|
|
6022
6716
|
// [Type "color"]
|
|
@@ -6024,7 +6718,7 @@
|
|
|
6024
6718
|
|
|
6025
6719
|
// [Label "Indication Color 5 Text Color"]
|
|
6026
6720
|
// [Description "The text and icon color for elements showing indication 5."]
|
|
6027
|
-
// [Tags "Base", "
|
|
6721
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
6028
6722
|
// [Protected "true"]
|
|
6029
6723
|
// [Category "Indication"]
|
|
6030
6724
|
// [Type "color"]
|
|
@@ -6033,7 +6727,7 @@
|
|
|
6033
6727
|
// [Label "Indication Color 5 Hover Background"]
|
|
6034
6728
|
// [Description "The hover state background color for elements showing indication 5."]
|
|
6035
6729
|
// [TranslationKey "sapIndication5HvrBg"]
|
|
6036
|
-
// [Tags "Base", "
|
|
6730
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6037
6731
|
// [Protected "true"]
|
|
6038
6732
|
// [Category "Indication"]
|
|
6039
6733
|
// [Type "color"]
|
|
@@ -6042,7 +6736,7 @@
|
|
|
6042
6736
|
// [Label "Indication Color 5 Active Background"]
|
|
6043
6737
|
// [Description "The active (down) state background color for elements showing indication 5."]
|
|
6044
6738
|
// [TranslationKey "sapIndication5ActBg"]
|
|
6045
|
-
// [Tags "Base", "
|
|
6739
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6046
6740
|
// [Protected "true"]
|
|
6047
6741
|
// [Category "Indication"]
|
|
6048
6742
|
// [Type "color"]
|
|
@@ -6051,7 +6745,7 @@
|
|
|
6051
6745
|
// [Label "Indication Color 5 Active Border Color"]
|
|
6052
6746
|
// [Description "The active (down) state border color for elements showing indication 5."]
|
|
6053
6747
|
// [TranslationKey "sapIndication5ActBrd"]
|
|
6054
|
-
// [Tags "Base", "
|
|
6748
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6055
6749
|
// [Protected "true"]
|
|
6056
6750
|
// [Category "Indication"]
|
|
6057
6751
|
// [Type "color"]
|
|
@@ -6060,7 +6754,7 @@
|
|
|
6060
6754
|
// [Label "Indication Color 5 Active Text Color"]
|
|
6061
6755
|
// [Description "The active (down) state text and icon color for elements showing indication 5."]
|
|
6062
6756
|
// [TranslationKey "sapIndication5ActTxt"]
|
|
6063
|
-
// [Tags "Base", "
|
|
6757
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6064
6758
|
// [Protected "true"]
|
|
6065
6759
|
// [Category "Indication"]
|
|
6066
6760
|
// [Type "color"]
|
|
@@ -6069,7 +6763,7 @@
|
|
|
6069
6763
|
// [Label "Indication Color 5 Selected Background"]
|
|
6070
6764
|
// [Description "The selected (toggled) state background color for elements showing indication 5."]
|
|
6071
6765
|
// [TranslationKey "sapIndication5SelBg"]
|
|
6072
|
-
// [Tags "Base", "
|
|
6766
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6073
6767
|
// [Protected "true"]
|
|
6074
6768
|
// [Category "Indication"]
|
|
6075
6769
|
// [Type "color"]
|
|
@@ -6078,7 +6772,7 @@
|
|
|
6078
6772
|
// [Label "Indication Color 5 Selected Border Color"]
|
|
6079
6773
|
// [Description "The selected (toggled) state border color for elements showing indication 5."]
|
|
6080
6774
|
// [TranslationKey "sapIndication5SelBrd"]
|
|
6081
|
-
// [Tags "Base", "
|
|
6775
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6082
6776
|
// [Protected "true"]
|
|
6083
6777
|
// [Category "Indication"]
|
|
6084
6778
|
// [Type "color"]
|
|
@@ -6087,7 +6781,7 @@
|
|
|
6087
6781
|
// [Label "Indication Color 5 Selected Text Color"]
|
|
6088
6782
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 5."]
|
|
6089
6783
|
// [TranslationKey "sapIndication5SelTxt"]
|
|
6090
|
-
// [Tags "Base", "
|
|
6784
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6091
6785
|
// [Protected "true"]
|
|
6092
6786
|
// [Category "Indication"]
|
|
6093
6787
|
// [Type "color"]
|
|
@@ -6096,7 +6790,7 @@
|
|
|
6096
6790
|
// [Label "Indication Color 5b"]
|
|
6097
6791
|
// [Description "The color for elements showing a less prominent shade of indication 5."]
|
|
6098
6792
|
// [TranslationKey "sapIndication5b"]
|
|
6099
|
-
// [Tags "Base", "
|
|
6793
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6100
6794
|
// [Protected "true"]
|
|
6101
6795
|
// [Category "Indication"]
|
|
6102
6796
|
// [Type "color"]
|
|
@@ -6105,7 +6799,7 @@
|
|
|
6105
6799
|
// [Label "Indication Color 5b Border Color"]
|
|
6106
6800
|
// [Description "The border color for elements showing a less prominent shade of indication 5."]
|
|
6107
6801
|
// [TranslationKey "sapIndication5bBrd"]
|
|
6108
|
-
// [Tags "Base", "
|
|
6802
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6109
6803
|
// [Protected "true"]
|
|
6110
6804
|
// [Category "Indication"]
|
|
6111
6805
|
// [Type "color"]
|
|
@@ -6114,7 +6808,7 @@
|
|
|
6114
6808
|
// [Label "Indication Color 5b Hover Background"]
|
|
6115
6809
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 5."]
|
|
6116
6810
|
// [TranslationKey "sapIndication5bHvBg"]
|
|
6117
|
-
// [Tags "Base", "
|
|
6811
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6118
6812
|
// [Protected "true"]
|
|
6119
6813
|
// [Category "Indication"]
|
|
6120
6814
|
// [Type "color"]
|
|
@@ -6122,7 +6816,7 @@
|
|
|
6122
6816
|
|
|
6123
6817
|
// [Label "Indication Color 6"]
|
|
6124
6818
|
// [Description "The color for elements showing indication 6."]
|
|
6125
|
-
// [Tags "Base", "
|
|
6819
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6126
6820
|
// [Protected "true"]
|
|
6127
6821
|
// [Category "Indication"]
|
|
6128
6822
|
// [Type "color"]
|
|
@@ -6131,7 +6825,7 @@
|
|
|
6131
6825
|
// [Label "Indication Color 6 Background"]
|
|
6132
6826
|
// [Description "The background color for elements showing indication 6."]
|
|
6133
6827
|
// [TranslationKey "sapIndication6Bg"]
|
|
6134
|
-
// [Tags "Base", "
|
|
6828
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6135
6829
|
// [Protected "true"]
|
|
6136
6830
|
// [Category "Indication"]
|
|
6137
6831
|
// [Type "color"]
|
|
@@ -6140,7 +6834,7 @@
|
|
|
6140
6834
|
// [Label "Indication Color 6 Border Color"]
|
|
6141
6835
|
// [Description "The border color for elements showing indication 6."]
|
|
6142
6836
|
// [TranslationKey "sapIndication6Brd"]
|
|
6143
|
-
// [Tags "Base", "
|
|
6837
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6144
6838
|
// [Protected "true"]
|
|
6145
6839
|
// [Category "Indication"]
|
|
6146
6840
|
// [Type "color"]
|
|
@@ -6148,7 +6842,7 @@
|
|
|
6148
6842
|
|
|
6149
6843
|
// [Label "Indication Color 6 Text Color"]
|
|
6150
6844
|
// [Description "The text and icon color for elements showing indication 6."]
|
|
6151
|
-
// [Tags "Base", "
|
|
6845
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
6152
6846
|
// [Protected "true"]
|
|
6153
6847
|
// [Category "Indication"]
|
|
6154
6848
|
// [Type "color"]
|
|
@@ -6157,7 +6851,7 @@
|
|
|
6157
6851
|
// [Label "Indication Color 6 Hover Background"]
|
|
6158
6852
|
// [Description "The hover state background color for elements showing indication 6."]
|
|
6159
6853
|
// [TranslationKey "sapIndication6HvrBg"]
|
|
6160
|
-
// [Tags "Base", "
|
|
6854
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6161
6855
|
// [Protected "true"]
|
|
6162
6856
|
// [Category "Indication"]
|
|
6163
6857
|
// [Type "color"]
|
|
@@ -6166,7 +6860,7 @@
|
|
|
6166
6860
|
// [Label "Indication Color 6 Active Background"]
|
|
6167
6861
|
// [Description "The active (down) state background color for elements showing indication 6."]
|
|
6168
6862
|
// [TranslationKey "sapIndication6ActBg"]
|
|
6169
|
-
// [Tags "Base", "
|
|
6863
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6170
6864
|
// [Protected "true"]
|
|
6171
6865
|
// [Category "Indication"]
|
|
6172
6866
|
// [Type "color"]
|
|
@@ -6175,7 +6869,7 @@
|
|
|
6175
6869
|
// [Label "Indication Color 6 Active Border Color"]
|
|
6176
6870
|
// [Description "The active (down) state border color for elements showing indication 6."]
|
|
6177
6871
|
// [TranslationKey "sapIndication6ActBrd"]
|
|
6178
|
-
// [Tags "Base", "
|
|
6872
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6179
6873
|
// [Protected "true"]
|
|
6180
6874
|
// [Category "Indication"]
|
|
6181
6875
|
// [Type "color"]
|
|
@@ -6184,7 +6878,7 @@
|
|
|
6184
6878
|
// [Label "Indication Color 6 Active Text Color"]
|
|
6185
6879
|
// [Description "The active (down) state text and icon color for elements showing indication 6."]
|
|
6186
6880
|
// [TranslationKey "sapIndication6ActTxt"]
|
|
6187
|
-
// [Tags "Base", "
|
|
6881
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6188
6882
|
// [Protected "true"]
|
|
6189
6883
|
// [Category "Indication"]
|
|
6190
6884
|
// [Type "color"]
|
|
@@ -6193,7 +6887,7 @@
|
|
|
6193
6887
|
// [Label "Indication Color 6 Selected Background"]
|
|
6194
6888
|
// [Description "The selected (toggled) state background color for elements showing indication 6."]
|
|
6195
6889
|
// [TranslationKey "sapIndication6SelBg"]
|
|
6196
|
-
// [Tags "Base", "
|
|
6890
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6197
6891
|
// [Protected "true"]
|
|
6198
6892
|
// [Category "Indication"]
|
|
6199
6893
|
// [Type "color"]
|
|
@@ -6202,7 +6896,7 @@
|
|
|
6202
6896
|
// [Label "Indication Color 6 Selected Border Color"]
|
|
6203
6897
|
// [Description "The selected (toggled) state border color for elements showing indication 6."]
|
|
6204
6898
|
// [TranslationKey "sapIndication6SelBrd"]
|
|
6205
|
-
// [Tags "Base", "
|
|
6899
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6206
6900
|
// [Protected "true"]
|
|
6207
6901
|
// [Category "Indication"]
|
|
6208
6902
|
// [Type "color"]
|
|
@@ -6211,7 +6905,7 @@
|
|
|
6211
6905
|
// [Label "Indication Color 6 Selected Text Color"]
|
|
6212
6906
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 6."]
|
|
6213
6907
|
// [TranslationKey "sapIndication6SelTxt"]
|
|
6214
|
-
// [Tags "Base", "
|
|
6908
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6215
6909
|
// [Protected "true"]
|
|
6216
6910
|
// [Category "Indication"]
|
|
6217
6911
|
// [Type "color"]
|
|
@@ -6220,7 +6914,7 @@
|
|
|
6220
6914
|
// [Label "Indication Color 6b"]
|
|
6221
6915
|
// [Description "The color for elements showing a less prominent shade of indication 6."]
|
|
6222
6916
|
// [TranslationKey "sapIndication6b"]
|
|
6223
|
-
// [Tags "Base", "
|
|
6917
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6224
6918
|
// [Protected "true"]
|
|
6225
6919
|
// [Category "Indication"]
|
|
6226
6920
|
// [Type "color"]
|
|
@@ -6229,7 +6923,7 @@
|
|
|
6229
6923
|
// [Label "Indication Color 6b Border Color"]
|
|
6230
6924
|
// [Description "The border color for elements showing a less prominent shade of indication 6."]
|
|
6231
6925
|
// [TranslationKey "sapIndication6bBrd"]
|
|
6232
|
-
// [Tags "Base", "
|
|
6926
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6233
6927
|
// [Protected "true"]
|
|
6234
6928
|
// [Category "Indication"]
|
|
6235
6929
|
// [Type "color"]
|
|
@@ -6238,7 +6932,7 @@
|
|
|
6238
6932
|
// [Label "Indication Color 6b Hover Background"]
|
|
6239
6933
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 6."]
|
|
6240
6934
|
// [TranslationKey "sapIndication6bHvBg"]
|
|
6241
|
-
// [Tags "Base", "
|
|
6935
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6242
6936
|
// [Protected "true"]
|
|
6243
6937
|
// [Category "Indication"]
|
|
6244
6938
|
// [Type "color"]
|
|
@@ -6246,7 +6940,7 @@
|
|
|
6246
6940
|
|
|
6247
6941
|
// [Label "Indication Color 7"]
|
|
6248
6942
|
// [Description "The color for elements showing indication 7."]
|
|
6249
|
-
// [Tags "Base", "
|
|
6943
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6250
6944
|
// [Protected "true"]
|
|
6251
6945
|
// [Category "Indication"]
|
|
6252
6946
|
// [Type "color"]
|
|
@@ -6255,7 +6949,7 @@
|
|
|
6255
6949
|
// [Label "Indication Color 7 Background"]
|
|
6256
6950
|
// [Description "The background color for elements showing indication 7."]
|
|
6257
6951
|
// [TranslationKey "sapIndication7Bg"]
|
|
6258
|
-
// [Tags "Base", "
|
|
6952
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6259
6953
|
// [Protected "true"]
|
|
6260
6954
|
// [Category "Indication"]
|
|
6261
6955
|
// [Type "color"]
|
|
@@ -6264,7 +6958,7 @@
|
|
|
6264
6958
|
// [Label "Indication Color 7 Border Color"]
|
|
6265
6959
|
// [Description "The border color for elements showing indication 7."]
|
|
6266
6960
|
// [TranslationKey "sapIndication7Brd"]
|
|
6267
|
-
// [Tags "Base", "
|
|
6961
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6268
6962
|
// [Protected "true"]
|
|
6269
6963
|
// [Category "Indication"]
|
|
6270
6964
|
// [Type "color"]
|
|
@@ -6272,7 +6966,7 @@
|
|
|
6272
6966
|
|
|
6273
6967
|
// [Label "Indication Color 7 Text Color"]
|
|
6274
6968
|
// [Description "The text and icon color for elements showing indication 7."]
|
|
6275
|
-
// [Tags "Base", "
|
|
6969
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
6276
6970
|
// [Protected "true"]
|
|
6277
6971
|
// [Category "Indication"]
|
|
6278
6972
|
// [Type "color"]
|
|
@@ -6281,7 +6975,7 @@
|
|
|
6281
6975
|
// [Label "Indication Color 7 Hover Background"]
|
|
6282
6976
|
// [Description "The hover state background color for elements showing indication 7."]
|
|
6283
6977
|
// [TranslationKey "sapIndication7HvrBg"]
|
|
6284
|
-
// [Tags "Base", "
|
|
6978
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6285
6979
|
// [Protected "true"]
|
|
6286
6980
|
// [Category "Indication"]
|
|
6287
6981
|
// [Type "color"]
|
|
@@ -6290,7 +6984,7 @@
|
|
|
6290
6984
|
// [Label "Indication Color 7 Active Background"]
|
|
6291
6985
|
// [Description "The active (down) state background color for elements showing indication 7."]
|
|
6292
6986
|
// [TranslationKey "sapIndication7ActBg"]
|
|
6293
|
-
// [Tags "Base", "
|
|
6987
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6294
6988
|
// [Protected "true"]
|
|
6295
6989
|
// [Category "Indication"]
|
|
6296
6990
|
// [Type "color"]
|
|
@@ -6299,7 +6993,7 @@
|
|
|
6299
6993
|
// [Label "Indication Color 7 Active Border Color"]
|
|
6300
6994
|
// [Description "The active (down) state border color for elements showing indication 7."]
|
|
6301
6995
|
// [TranslationKey "sapIndication7ActBrd"]
|
|
6302
|
-
// [Tags "Base", "
|
|
6996
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6303
6997
|
// [Protected "true"]
|
|
6304
6998
|
// [Category "Indication"]
|
|
6305
6999
|
// [Type "color"]
|
|
@@ -6308,7 +7002,7 @@
|
|
|
6308
7002
|
// [Label "Indication Color 7 Active Text Color"]
|
|
6309
7003
|
// [Description "The active (down) state text and icon color for elements showing indication 7."]
|
|
6310
7004
|
// [TranslationKey "sapIndication7ActTxt"]
|
|
6311
|
-
// [Tags "Base", "
|
|
7005
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6312
7006
|
// [Protected "true"]
|
|
6313
7007
|
// [Category "Indication"]
|
|
6314
7008
|
// [Type "color"]
|
|
@@ -6317,7 +7011,7 @@
|
|
|
6317
7011
|
// [Label "Indication Color 7 Selected Background"]
|
|
6318
7012
|
// [Description "The selected (toggled) state background color for elements showing indication 7."]
|
|
6319
7013
|
// [TranslationKey "sapIndication7SelBg"]
|
|
6320
|
-
// [Tags "Base", "
|
|
7014
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6321
7015
|
// [Protected "true"]
|
|
6322
7016
|
// [Category "Indication"]
|
|
6323
7017
|
// [Type "color"]
|
|
@@ -6326,7 +7020,7 @@
|
|
|
6326
7020
|
// [Label "Indication Color 7 Selected Border Color"]
|
|
6327
7021
|
// [Description "The selected (toggled) state border color for elements showing indication 7."]
|
|
6328
7022
|
// [TranslationKey "sapIndication7SelBrd"]
|
|
6329
|
-
// [Tags "Base", "
|
|
7023
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6330
7024
|
// [Protected "true"]
|
|
6331
7025
|
// [Category "Indication"]
|
|
6332
7026
|
// [Type "color"]
|
|
@@ -6335,7 +7029,7 @@
|
|
|
6335
7029
|
// [Label "Indication Color 7 Selected Text Color"]
|
|
6336
7030
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 7."]
|
|
6337
7031
|
// [TranslationKey "sapIndication7SelTxt"]
|
|
6338
|
-
// [Tags "Base", "
|
|
7032
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6339
7033
|
// [Protected "true"]
|
|
6340
7034
|
// [Category "Indication"]
|
|
6341
7035
|
// [Type "color"]
|
|
@@ -6344,7 +7038,7 @@
|
|
|
6344
7038
|
// [Label "Indication Color 7b"]
|
|
6345
7039
|
// [Description "The color for elements showing a less prominent shade of indication 7."]
|
|
6346
7040
|
// [TranslationKey "sapIndication7b"]
|
|
6347
|
-
// [Tags "Base", "
|
|
7041
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6348
7042
|
// [Protected "true"]
|
|
6349
7043
|
// [Category "Indication"]
|
|
6350
7044
|
// [Type "color"]
|
|
@@ -6353,7 +7047,7 @@
|
|
|
6353
7047
|
// [Label "Indication Color 7b Border Color"]
|
|
6354
7048
|
// [Description "The border color for elements showing a less prominent shade of indication 7."]
|
|
6355
7049
|
// [TranslationKey "sapIndication7bBrd"]
|
|
6356
|
-
// [Tags "Base", "
|
|
7050
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6357
7051
|
// [Protected "true"]
|
|
6358
7052
|
// [Category "Indication"]
|
|
6359
7053
|
// [Type "color"]
|
|
@@ -6362,7 +7056,7 @@
|
|
|
6362
7056
|
// [Label "Indication Color 7b Hover Background"]
|
|
6363
7057
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 7."]
|
|
6364
7058
|
// [TranslationKey "sapIndication7bHvBg"]
|
|
6365
|
-
// [Tags "Base", "
|
|
7059
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6366
7060
|
// [Protected "true"]
|
|
6367
7061
|
// [Category "Indication"]
|
|
6368
7062
|
// [Type "color"]
|
|
@@ -6370,7 +7064,7 @@
|
|
|
6370
7064
|
|
|
6371
7065
|
// [Label "Indication Color 8"]
|
|
6372
7066
|
// [Description "The color for elements showing indication 8."]
|
|
6373
|
-
// [Tags "Base", "
|
|
7067
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6374
7068
|
// [Protected "true"]
|
|
6375
7069
|
// [Category "Indication"]
|
|
6376
7070
|
// [Type "color"]
|
|
@@ -6379,7 +7073,7 @@
|
|
|
6379
7073
|
// [Label "Indication Color 8 Background"]
|
|
6380
7074
|
// [Description "The background color for elements showing indication 8."]
|
|
6381
7075
|
// [TranslationKey "sapIndication8Bg"]
|
|
6382
|
-
// [Tags "Base", "
|
|
7076
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6383
7077
|
// [Protected "true"]
|
|
6384
7078
|
// [Category "Indication"]
|
|
6385
7079
|
// [Type "color"]
|
|
@@ -6388,7 +7082,7 @@
|
|
|
6388
7082
|
// [Label "Indication Color 8 Border Color"]
|
|
6389
7083
|
// [Description "The border color for elements showing indication 8."]
|
|
6390
7084
|
// [TranslationKey "sapIndication8Brd"]
|
|
6391
|
-
// [Tags "Base", "
|
|
7085
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6392
7086
|
// [Protected "true"]
|
|
6393
7087
|
// [Category "Indication"]
|
|
6394
7088
|
// [Type "color"]
|
|
@@ -6396,7 +7090,7 @@
|
|
|
6396
7090
|
|
|
6397
7091
|
// [Label "Indication Color 8 Text Color"]
|
|
6398
7092
|
// [Description "The text and icon color for elements showing indication 8."]
|
|
6399
|
-
// [Tags "Base", "
|
|
7093
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
6400
7094
|
// [Protected "true"]
|
|
6401
7095
|
// [Category "Indication"]
|
|
6402
7096
|
// [Type "color"]
|
|
@@ -6405,7 +7099,7 @@
|
|
|
6405
7099
|
// [Label "Indication Color 8 Hover Background"]
|
|
6406
7100
|
// [Description "The hover state background color for elements showing indication 8."]
|
|
6407
7101
|
// [TranslationKey "sapIndication8HvrBg"]
|
|
6408
|
-
// [Tags "Base", "
|
|
7102
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6409
7103
|
// [Protected "true"]
|
|
6410
7104
|
// [Category "Indication"]
|
|
6411
7105
|
// [Type "color"]
|
|
@@ -6414,7 +7108,7 @@
|
|
|
6414
7108
|
// [Label "Indication Color 8 Active Background"]
|
|
6415
7109
|
// [Description "The active (down) state background color for elements showing indication 8."]
|
|
6416
7110
|
// [TranslationKey "sapIndication8ActBg"]
|
|
6417
|
-
// [Tags "Base", "
|
|
7111
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6418
7112
|
// [Protected "true"]
|
|
6419
7113
|
// [Category "Indication"]
|
|
6420
7114
|
// [Type "color"]
|
|
@@ -6423,7 +7117,7 @@
|
|
|
6423
7117
|
// [Label "Indication Color 8 Active Border Color"]
|
|
6424
7118
|
// [Description "The active (down) state border color for elements showing indication 8."]
|
|
6425
7119
|
// [TranslationKey "sapIndication8ActBrd"]
|
|
6426
|
-
// [Tags "Base", "
|
|
7120
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6427
7121
|
// [Protected "true"]
|
|
6428
7122
|
// [Category "Indication"]
|
|
6429
7123
|
// [Type "color"]
|
|
@@ -6432,7 +7126,7 @@
|
|
|
6432
7126
|
// [Label "Indication Color 8 Active Text Color"]
|
|
6433
7127
|
// [Description "The active (down) state text and icon color for elements showing indication 8."]
|
|
6434
7128
|
// [TranslationKey "sapIndication8ActTxt"]
|
|
6435
|
-
// [Tags "Base", "
|
|
7129
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6436
7130
|
// [Protected "true"]
|
|
6437
7131
|
// [Category "Indication"]
|
|
6438
7132
|
// [Type "color"]
|
|
@@ -6441,7 +7135,7 @@
|
|
|
6441
7135
|
// [Label "Indication Color 8 Selected Background"]
|
|
6442
7136
|
// [Description "The selected (toggled) state background color for elements showing indication 8."]
|
|
6443
7137
|
// [TranslationKey "sapIndication8SelBg"]
|
|
6444
|
-
// [Tags "Base", "
|
|
7138
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6445
7139
|
// [Protected "true"]
|
|
6446
7140
|
// [Category "Indication"]
|
|
6447
7141
|
// [Type "color"]
|
|
@@ -6450,7 +7144,7 @@
|
|
|
6450
7144
|
// [Label "Indication Color 8 Selected Border Color"]
|
|
6451
7145
|
// [Description "The selected (toggled) state border color for elements showing indication 8."]
|
|
6452
7146
|
// [TranslationKey "sapIndication8SelBrd"]
|
|
6453
|
-
// [Tags "Base", "
|
|
7147
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6454
7148
|
// [Protected "true"]
|
|
6455
7149
|
// [Category "Indication"]
|
|
6456
7150
|
// [Type "color"]
|
|
@@ -6459,7 +7153,7 @@
|
|
|
6459
7153
|
// [Label "Indication Color 8 Selected Text Color"]
|
|
6460
7154
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 8."]
|
|
6461
7155
|
// [TranslationKey "sapIndication8SelTxt"]
|
|
6462
|
-
// [Tags "Base", "
|
|
7156
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6463
7157
|
// [Protected "true"]
|
|
6464
7158
|
// [Category "Indication"]
|
|
6465
7159
|
// [Type "color"]
|
|
@@ -6468,7 +7162,7 @@
|
|
|
6468
7162
|
// [Label "Indication Color 8b"]
|
|
6469
7163
|
// [Description "The color for elements showing a less prominent shade of indication 8."]
|
|
6470
7164
|
// [TranslationKey "sapIndication8b"]
|
|
6471
|
-
// [Tags "Base", "
|
|
7165
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6472
7166
|
// [Protected "true"]
|
|
6473
7167
|
// [Category "Indication"]
|
|
6474
7168
|
// [Type "color"]
|
|
@@ -6477,7 +7171,7 @@
|
|
|
6477
7171
|
// [Label "Indication Color 8b Border Color"]
|
|
6478
7172
|
// [Description "The border color for elements showing a less prominent shade of indication 8."]
|
|
6479
7173
|
// [TranslationKey "sapIndication8bBrd"]
|
|
6480
|
-
// [Tags "Base", "
|
|
7174
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6481
7175
|
// [Protected "true"]
|
|
6482
7176
|
// [Category "Indication"]
|
|
6483
7177
|
// [Type "color"]
|
|
@@ -6486,7 +7180,7 @@
|
|
|
6486
7180
|
// [Label "Indication Color 8b Hover Background"]
|
|
6487
7181
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 8."]
|
|
6488
7182
|
// [TranslationKey "sapIndication8bHvBg"]
|
|
6489
|
-
// [Tags "Base", "
|
|
7183
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6490
7184
|
// [Protected "true"]
|
|
6491
7185
|
// [Category "Indication"]
|
|
6492
7186
|
// [Type "color"]
|
|
@@ -6494,7 +7188,7 @@
|
|
|
6494
7188
|
|
|
6495
7189
|
// [Label "Indication Color 9"]
|
|
6496
7190
|
// [Description "The color for elements showing indication 9."]
|
|
6497
|
-
// [Tags "Base", "
|
|
7191
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6498
7192
|
// [Protected "true"]
|
|
6499
7193
|
// [Category "Indication"]
|
|
6500
7194
|
// [Type "color"]
|
|
@@ -6503,7 +7197,7 @@
|
|
|
6503
7197
|
// [Label "Indication Color 9 Background"]
|
|
6504
7198
|
// [Description "The background color for elements showing indication 9."]
|
|
6505
7199
|
// [TranslationKey "sapIndication9Bg"]
|
|
6506
|
-
// [Tags "Base", "
|
|
7200
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6507
7201
|
// [Protected "true"]
|
|
6508
7202
|
// [Category "Indication"]
|
|
6509
7203
|
// [Type "color"]
|
|
@@ -6512,7 +7206,7 @@
|
|
|
6512
7206
|
// [Label "Indication Color 9 Border Color"]
|
|
6513
7207
|
// [Description "The border color for elements showing indication 9."]
|
|
6514
7208
|
// [TranslationKey "sapIndication9Brd"]
|
|
6515
|
-
// [Tags "Base", "
|
|
7209
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6516
7210
|
// [Protected "true"]
|
|
6517
7211
|
// [Category "Indication"]
|
|
6518
7212
|
// [Type "color"]
|
|
@@ -6520,7 +7214,7 @@
|
|
|
6520
7214
|
|
|
6521
7215
|
// [Label "Indication Color 9 Text Color"]
|
|
6522
7216
|
// [Description "The text and icon color for elements showing indication 9."]
|
|
6523
|
-
// [Tags "Base", "
|
|
7217
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
6524
7218
|
// [Protected "true"]
|
|
6525
7219
|
// [Category "Indication"]
|
|
6526
7220
|
// [Type "color"]
|
|
@@ -6529,7 +7223,7 @@
|
|
|
6529
7223
|
// [Label "Indication Color 9 Hover Background"]
|
|
6530
7224
|
// [Description "The hover state background color for elements showing indication 9."]
|
|
6531
7225
|
// [TranslationKey "sapIndication9HvrBg"]
|
|
6532
|
-
// [Tags "Base", "
|
|
7226
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6533
7227
|
// [Protected "true"]
|
|
6534
7228
|
// [Category "Indication"]
|
|
6535
7229
|
// [Type "color"]
|
|
@@ -6538,7 +7232,7 @@
|
|
|
6538
7232
|
// [Label "Indication Color 9 Active Background"]
|
|
6539
7233
|
// [Description "The active (down) state background color for elements showing indication 9."]
|
|
6540
7234
|
// [TranslationKey "sapIndication9ActBg"]
|
|
6541
|
-
// [Tags "Base", "
|
|
7235
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6542
7236
|
// [Protected "true"]
|
|
6543
7237
|
// [Category "Indication"]
|
|
6544
7238
|
// [Type "color"]
|
|
@@ -6547,7 +7241,7 @@
|
|
|
6547
7241
|
// [Label "Indication Color 9 Active Border Color"]
|
|
6548
7242
|
// [Description "The active (down) state border color for elements showing indication 9."]
|
|
6549
7243
|
// [TranslationKey "sapIndication9ActBrd"]
|
|
6550
|
-
// [Tags "Base", "
|
|
7244
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6551
7245
|
// [Protected "true"]
|
|
6552
7246
|
// [Category "Indication"]
|
|
6553
7247
|
// [Type "color"]
|
|
@@ -6556,7 +7250,7 @@
|
|
|
6556
7250
|
// [Label "Indication Color 9 Active Text Color"]
|
|
6557
7251
|
// [Description "The active (down) state text and icon color for elements showing indication 9."]
|
|
6558
7252
|
// [TranslationKey "sapIndication9ActTxt"]
|
|
6559
|
-
// [Tags "Base", "
|
|
7253
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6560
7254
|
// [Protected "true"]
|
|
6561
7255
|
// [Category "Indication"]
|
|
6562
7256
|
// [Type "color"]
|
|
@@ -6565,7 +7259,7 @@
|
|
|
6565
7259
|
// [Label "Indication Color 9 Selected Background"]
|
|
6566
7260
|
// [Description "The selected (toggled) state background color for elements showing indication 9."]
|
|
6567
7261
|
// [TranslationKey "sapIndication9SelBg"]
|
|
6568
|
-
// [Tags "Base", "
|
|
7262
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6569
7263
|
// [Protected "true"]
|
|
6570
7264
|
// [Category "Indication"]
|
|
6571
7265
|
// [Type "color"]
|
|
@@ -6574,7 +7268,7 @@
|
|
|
6574
7268
|
// [Label "Indication Color 9 Selected Border Color"]
|
|
6575
7269
|
// [Description "The selected (toggled) state border color for elements showing indication 9."]
|
|
6576
7270
|
// [TranslationKey "sapIndication9SelBrd"]
|
|
6577
|
-
// [Tags "Base", "
|
|
7271
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6578
7272
|
// [Protected "true"]
|
|
6579
7273
|
// [Category "Indication"]
|
|
6580
7274
|
// [Type "color"]
|
|
@@ -6583,7 +7277,7 @@
|
|
|
6583
7277
|
// [Label "Indication Color 9 Selected Text Color"]
|
|
6584
7278
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 9."]
|
|
6585
7279
|
// [TranslationKey "sapIndication9SelTxt"]
|
|
6586
|
-
// [Tags "Base", "
|
|
7280
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6587
7281
|
// [Protected "true"]
|
|
6588
7282
|
// [Category "Indication"]
|
|
6589
7283
|
// [Type "color"]
|
|
@@ -6592,7 +7286,7 @@
|
|
|
6592
7286
|
// [Label "Indication Color 9b"]
|
|
6593
7287
|
// [Description "The color for elements showing a less prominent shade of indication 9."]
|
|
6594
7288
|
// [TranslationKey "sapIndication9b"]
|
|
6595
|
-
// [Tags "Base", "
|
|
7289
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6596
7290
|
// [Protected "true"]
|
|
6597
7291
|
// [Category "Indication"]
|
|
6598
7292
|
// [Type "color"]
|
|
@@ -6601,7 +7295,7 @@
|
|
|
6601
7295
|
// [Label "Indication Color 9b Border Color"]
|
|
6602
7296
|
// [Description "The border color for elements showing a less prominent shade of indication 9."]
|
|
6603
7297
|
// [TranslationKey "sapIndication9bBrd"]
|
|
6604
|
-
// [Tags "Base", "
|
|
7298
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6605
7299
|
// [Protected "true"]
|
|
6606
7300
|
// [Category "Indication"]
|
|
6607
7301
|
// [Type "color"]
|
|
@@ -6610,7 +7304,7 @@
|
|
|
6610
7304
|
// [Label "Indication Color 9b Hover Background"]
|
|
6611
7305
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 9."]
|
|
6612
7306
|
// [TranslationKey "sapIndication9bHvBg"]
|
|
6613
|
-
// [Tags "Base", "
|
|
7307
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6614
7308
|
// [Protected "true"]
|
|
6615
7309
|
// [Category "Indication"]
|
|
6616
7310
|
// [Type "color"]
|
|
@@ -6618,7 +7312,7 @@
|
|
|
6618
7312
|
|
|
6619
7313
|
// [Label "Indication Color 10"]
|
|
6620
7314
|
// [Description "The color for elements showing indication 10."]
|
|
6621
|
-
// [Tags "Base", "
|
|
7315
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6622
7316
|
// [Protected "true"]
|
|
6623
7317
|
// [Category "Indication"]
|
|
6624
7318
|
// [Type "color"]
|
|
@@ -6627,7 +7321,7 @@
|
|
|
6627
7321
|
// [Label "Indication Color 10 Background"]
|
|
6628
7322
|
// [Description "The background color for elements showing indication 10."]
|
|
6629
7323
|
// [TranslationKey "sapIndication10Bg"]
|
|
6630
|
-
// [Tags "Base", "
|
|
7324
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6631
7325
|
// [Protected "true"]
|
|
6632
7326
|
// [Category "Indication"]
|
|
6633
7327
|
// [Type "color"]
|
|
@@ -6636,7 +7330,7 @@
|
|
|
6636
7330
|
// [Label "Indication Color 10 Border Color"]
|
|
6637
7331
|
// [Description "The border color for elements showing indication 10."]
|
|
6638
7332
|
// [TranslationKey "sapIndication10Brd"]
|
|
6639
|
-
// [Tags "Base", "
|
|
7333
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6640
7334
|
// [Protected "true"]
|
|
6641
7335
|
// [Category "Indication"]
|
|
6642
7336
|
// [Type "color"]
|
|
@@ -6644,7 +7338,7 @@
|
|
|
6644
7338
|
|
|
6645
7339
|
// [Label "Indication Color 10 Text Color"]
|
|
6646
7340
|
// [Description "The text and icon color for elements showing indication 10."]
|
|
6647
|
-
// [Tags "Base", "
|
|
7341
|
+
// [Tags "Base", "Color", "Font", "Indication", "Protected"]
|
|
6648
7342
|
// [Protected "true"]
|
|
6649
7343
|
// [Category "Indication"]
|
|
6650
7344
|
// [Type "color"]
|
|
@@ -6653,7 +7347,7 @@
|
|
|
6653
7347
|
// [Label "Indication Color 10 Hover Background"]
|
|
6654
7348
|
// [Description "The hover state background color for elements showing indication 10."]
|
|
6655
7349
|
// [TranslationKey "sapIndication10HvrBg"]
|
|
6656
|
-
// [Tags "Base", "
|
|
7350
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6657
7351
|
// [Protected "true"]
|
|
6658
7352
|
// [Category "Indication"]
|
|
6659
7353
|
// [Type "color"]
|
|
@@ -6662,7 +7356,7 @@
|
|
|
6662
7356
|
// [Label "Indication Color 10 Active Background"]
|
|
6663
7357
|
// [Description "The active (down) state background color for elements showing indication 10."]
|
|
6664
7358
|
// [TranslationKey "sapIndication10ActBg"]
|
|
6665
|
-
// [Tags "Base", "
|
|
7359
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6666
7360
|
// [Protected "true"]
|
|
6667
7361
|
// [Category "Indication"]
|
|
6668
7362
|
// [Type "color"]
|
|
@@ -6671,7 +7365,7 @@
|
|
|
6671
7365
|
// [Label "Indication Color 10 Active Border Color"]
|
|
6672
7366
|
// [Description "The active (down) state border color for elements showing indication 10."]
|
|
6673
7367
|
// [TranslationKey "sapIndication10ActBrd"]
|
|
6674
|
-
// [Tags "Base", "
|
|
7368
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6675
7369
|
// [Protected "true"]
|
|
6676
7370
|
// [Category "Indication"]
|
|
6677
7371
|
// [Type "color"]
|
|
@@ -6680,7 +7374,7 @@
|
|
|
6680
7374
|
// [Label "Indication Color 10 Active Text Color"]
|
|
6681
7375
|
// [Description "The active (down) state text and icon color for elements showing indication 10."]
|
|
6682
7376
|
// [TranslationKey "sapIndication10ActTxt"]
|
|
6683
|
-
// [Tags "Base", "
|
|
7377
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6684
7378
|
// [Protected "true"]
|
|
6685
7379
|
// [Category "Indication"]
|
|
6686
7380
|
// [Type "color"]
|
|
@@ -6689,7 +7383,7 @@
|
|
|
6689
7383
|
// [Label "Indication Color 10 Selected Background"]
|
|
6690
7384
|
// [Description "The selected (toggled) state background color for elements showing indication 10."]
|
|
6691
7385
|
// [TranslationKey "sapIndication10SelBg"]
|
|
6692
|
-
// [Tags "Base", "
|
|
7386
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6693
7387
|
// [Protected "true"]
|
|
6694
7388
|
// [Category "Indication"]
|
|
6695
7389
|
// [Type "color"]
|
|
@@ -6698,7 +7392,7 @@
|
|
|
6698
7392
|
// [Label "Indication Color 10 Selected Border Color"]
|
|
6699
7393
|
// [Description "The selected (toggled) state border color for elements showing indication 10."]
|
|
6700
7394
|
// [TranslationKey "sapIndication10SelBrd"]
|
|
6701
|
-
// [Tags "Base", "
|
|
7395
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6702
7396
|
// [Protected "true"]
|
|
6703
7397
|
// [Category "Indication"]
|
|
6704
7398
|
// [Type "color"]
|
|
@@ -6707,7 +7401,7 @@
|
|
|
6707
7401
|
// [Label "Indication Color 10 Selected Text Color"]
|
|
6708
7402
|
// [Description "The selected (toggled) state text and icon color for elements showing indication 10."]
|
|
6709
7403
|
// [TranslationKey "sapIndication10SelTxt"]
|
|
6710
|
-
// [Tags "Base", "
|
|
7404
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6711
7405
|
// [Protected "true"]
|
|
6712
7406
|
// [Category "Indication"]
|
|
6713
7407
|
// [Type "color"]
|
|
@@ -6716,7 +7410,7 @@
|
|
|
6716
7410
|
// [Label "Indication Color 10b"]
|
|
6717
7411
|
// [Description "The color for elements showing a less prominent shade of indication 10."]
|
|
6718
7412
|
// [TranslationKey "sapIndication10b"]
|
|
6719
|
-
// [Tags "Base", "
|
|
7413
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6720
7414
|
// [Protected "true"]
|
|
6721
7415
|
// [Category "Indication"]
|
|
6722
7416
|
// [Type "color"]
|
|
@@ -6725,7 +7419,7 @@
|
|
|
6725
7419
|
// [Label "Indication Color 10b Border Color"]
|
|
6726
7420
|
// [Description "The border color for elements showing a less prominent shade of indication 10."]
|
|
6727
7421
|
// [TranslationKey "sapIndication10bBrd"]
|
|
6728
|
-
// [Tags "Base", "
|
|
7422
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6729
7423
|
// [Protected "true"]
|
|
6730
7424
|
// [Category "Indication"]
|
|
6731
7425
|
// [Type "color"]
|
|
@@ -6734,7 +7428,7 @@
|
|
|
6734
7428
|
// [Label "Indication Color 10b Hover Background"]
|
|
6735
7429
|
// [Description "The hover state background color for elements showing a less prominent shade of indication 10."]
|
|
6736
7430
|
// [TranslationKey "sapIndication10bHvBg"]
|
|
6737
|
-
// [Tags "Base", "
|
|
7431
|
+
// [Tags "Base", "Color", "Indication", "Protected"]
|
|
6738
7432
|
// [Protected "true"]
|
|
6739
7433
|
// [Category "Indication"]
|
|
6740
7434
|
// [Type "color"]
|
|
@@ -11448,7 +12142,41 @@
|
|
|
11448
12142
|
// [Category "Internal"]
|
|
11449
12143
|
// [Type "string"]
|
|
11450
12144
|
@sapToBeDefined: ~"To Be Defined";
|
|
12145
|
+
|
|
12146
|
+
// [Label "Breakpoint S Minimum"]
|
|
12147
|
+
// [Description "Minimal width of small devices."]
|
|
12148
|
+
// [Tags "Base", "Protected"]
|
|
12149
|
+
// [Protected "true"]
|
|
12150
|
+
// [Category "Internal"]
|
|
12151
|
+
// [Type "sizing"]
|
|
12152
|
+
@sapBreakpoint_S_Min: @sapDefault_Dimension;
|
|
12153
|
+
|
|
12154
|
+
// [Label "Breakpoint M Minimum"]
|
|
12155
|
+
// [Description "Minimal width of medium devices."]
|
|
12156
|
+
// [Tags "Base", "Protected"]
|
|
12157
|
+
// [Protected "true"]
|
|
12158
|
+
// [Category "Internal"]
|
|
12159
|
+
// [Type "sizing"]
|
|
12160
|
+
@sapBreakpoint_M_Min: @sapDefault_Dimension;
|
|
12161
|
+
|
|
12162
|
+
// [Label "Breakpoint L Minimum"]
|
|
12163
|
+
// [Description "Minimal width of large devices."]
|
|
12164
|
+
// [Tags "Base", "Protected"]
|
|
12165
|
+
// [Protected "true"]
|
|
12166
|
+
// [Category "Internal"]
|
|
12167
|
+
// [Type "sizing"]
|
|
12168
|
+
@sapBreakpoint_L_Min: @sapDefault_Dimension;
|
|
12169
|
+
|
|
12170
|
+
// [Label "Breakpoint XL Minimum"]
|
|
12171
|
+
// [Description "Minimal width of extra large devices."]
|
|
12172
|
+
// [Tags "Base", "Protected"]
|
|
12173
|
+
// [Protected "true"]
|
|
12174
|
+
// [Category "Internal"]
|
|
12175
|
+
// [Type "sizing"]
|
|
12176
|
+
@sapBreakpoint_XL_Min: @sapDefault_Dimension;
|
|
11451
12177
|
@sapCss_SAP-icons: false;
|
|
12178
|
+
@sapCss_SAP-icons-TNT: false;
|
|
12179
|
+
@sapCss_SAP-icons-Business-Suite: false;
|
|
11452
12180
|
@sapCss_72: false;
|
|
11453
12181
|
@sapCss_72full: @sapCss_72;
|
|
11454
12182
|
@sapCss_72Bold: @sapCss_72;
|
|
@@ -11487,6 +12215,24 @@ font-style: normal;
|
|
|
11487
12215
|
}
|
|
11488
12216
|
}
|
|
11489
12217
|
.sapCss_SAP-icons();
|
|
12218
|
+
.sapCss_SAP-icons-TNT() when (@sapCss_SAP-icons-TNT) {
|
|
12219
|
+
@font-face {
|
|
12220
|
+
font-family: 'SAP-icons-TNT';
|
|
12221
|
+
src: @sapFontUrl_SAP-icons-TNT_woff2 format('woff2'), @sapFontUrl_SAP-icons-TNT_woff format('woff'), @sapFontUrl_SAP-icons-TNT_ttf format('truetype'), local('SAP-icons-TNT');
|
|
12222
|
+
font-weight: normal;
|
|
12223
|
+
font-style: normal;
|
|
12224
|
+
}
|
|
12225
|
+
}
|
|
12226
|
+
.sapCss_SAP-icons-TNT();
|
|
12227
|
+
.sapCss_SAP-icons-Business-Suite() when (@sapCss_SAP-icons-Business-Suite) {
|
|
12228
|
+
@font-face {
|
|
12229
|
+
font-family: 'SAP-icons-Business-Suite';
|
|
12230
|
+
src: @sapFontUrl_SAP-icons-Business-Suite_woff2 format('woff2'), @sapFontUrl_SAP-icons-Business-Suite_woff format('woff'), @sapFontUrl_SAP-icons-Business-Suite_ttf format('truetype'), local('SAP-icons-Business-Suite_woff2');
|
|
12231
|
+
font-weight: normal;
|
|
12232
|
+
font-style: normal;
|
|
12233
|
+
}
|
|
12234
|
+
}
|
|
12235
|
+
.sapCss_SAP-icons-Business-Suite();
|
|
11490
12236
|
.sapCss_72() when (@sapCss_72) {
|
|
11491
12237
|
@font-face {
|
|
11492
12238
|
font-family: '72';
|
|
@@ -11790,12 +12536,12 @@ fill: @sapBaseColor !important;
|
|
|
11790
12536
|
.sapCss_SvgIconBase();
|
|
11791
12537
|
/*</SAP_FREETEXT_LESS>*/// /**
|
|
11792
12538
|
// * Copyright (c) 2012-2024 SAP SE or an SAP affiliate company and Theming Base Content contributors. Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
11793
|
-
// * Theming Engine 14.
|
|
11794
|
-
// * data:{"sModified":"2024-
|
|
12539
|
+
// * Theming Engine 14.1.4
|
|
12540
|
+
// * data:{"sModified":"2024-11-04T10:14:03Z"}
|
|
11795
12541
|
// */
|
|
11796
12542
|
|
|
11797
12543
|
|
|
11798
|
-
/******************* FILE /Base/baseLib/sap_belize_hcw/base.less (Version 11.
|
|
12544
|
+
/******************* FILE /Base/baseLib/sap_belize_hcw/base.less (Version 11.22.0) *******************/
|
|
11799
12545
|
|
|
11800
12546
|
|
|
11801
12547
|
// [Tags "SapInternal", "Base", "Dimension", "Protected"]
|
|
@@ -12123,316 +12869,452 @@ fill: @sapBaseColor !important;
|
|
|
12123
12869
|
// [Protected "true"]
|
|
12124
12870
|
@sapElement_Condensed_LineHeight: 1.5 * @sapContent_GridSize;
|
|
12125
12871
|
|
|
12126
|
-
// [Tags "Protected"]
|
|
12127
|
-
// [Protected "true"]
|
|
12128
|
-
@sapElement_Condensed_Height: 1.375 * @sapContent_GridSize;
|
|
12872
|
+
// [Tags "Protected"]
|
|
12873
|
+
// [Protected "true"]
|
|
12874
|
+
@sapElement_Condensed_Height: 1.375 * @sapContent_GridSize;
|
|
12875
|
+
|
|
12876
|
+
// [Tags "!Protected"]
|
|
12877
|
+
// [Protected "!true"]
|
|
12878
|
+
@sapContent_LineHeight: 1.4;
|
|
12879
|
+
|
|
12880
|
+
// [Tags "!Protected"]
|
|
12881
|
+
// [Protected "!true"]
|
|
12882
|
+
@sapContent_IconHeight: @sapContent_GridSize;
|
|
12883
|
+
|
|
12884
|
+
// [Tags "!Protected"]
|
|
12885
|
+
// [Protected "!true"]
|
|
12886
|
+
@sapContent_IconColor: @sapHC_StandardForeground;
|
|
12887
|
+
|
|
12888
|
+
// [Tags "!Protected"]
|
|
12889
|
+
// [Protected "!true"]
|
|
12890
|
+
@sapContent_ContrastIconColor: @sapContent_IconColor;
|
|
12891
|
+
|
|
12892
|
+
// [Tags "!Protected"]
|
|
12893
|
+
// [Protected "!true"]
|
|
12894
|
+
@sapContent_NonInteractiveIconColor: @sapContent_IconColor;
|
|
12895
|
+
|
|
12896
|
+
// [Tags "!Protected"]
|
|
12897
|
+
// [Protected "!true"]
|
|
12898
|
+
@sapContent_MarkerIconColor: @sapContent_IconColor;
|
|
12899
|
+
|
|
12900
|
+
// [Tags "!Protected"]
|
|
12901
|
+
// [Protected "!true"]
|
|
12902
|
+
@sapContent_MarkerTextColor: @sapTextColor;
|
|
12903
|
+
|
|
12904
|
+
// [#Tags "!Protected"]
|
|
12905
|
+
@sapContent_MeasureIndicatorColor: @sapField_BorderColor;
|
|
12906
|
+
|
|
12907
|
+
// [Tags "!Protected"]
|
|
12908
|
+
// [Protected "!true"]
|
|
12909
|
+
@sapContent_Selected_MeasureIndicatorColor: @sapField_BorderColor;
|
|
12910
|
+
|
|
12911
|
+
// [Tags "!Protected"]
|
|
12912
|
+
// [Protected "!true"]
|
|
12913
|
+
@sapContent_Placeholderloading_Background: @sapHC_ReducedForeground;
|
|
12914
|
+
|
|
12915
|
+
// [Tags "!Protected"]
|
|
12916
|
+
// [Protected "!true"]
|
|
12917
|
+
@sapContent_Placeholderloading_Gradient: linear-gradient(to right, @sapHC_ReducedForeground 0%, @sapHC_ReducedForeground 35%, @sapHC_ReducedAltForeground 50%, @sapHC_ReducedForeground 65%, @sapHC_ReducedForeground 100%);
|
|
12918
|
+
|
|
12919
|
+
// [Tags "!Protected"]
|
|
12920
|
+
// [Protected "!true"]
|
|
12921
|
+
@sapContent_ImagePlaceholderBackground: @sapBackgroundColor;
|
|
12922
|
+
|
|
12923
|
+
// [Tags "!Protected"]
|
|
12924
|
+
// [Protected "!true"]
|
|
12925
|
+
@sapContent_ImagePlaceholderForegroundColor: @sapContent_IconColor;
|
|
12926
|
+
|
|
12927
|
+
// [Tags "!Protected"]
|
|
12928
|
+
// [Protected "!true"]
|
|
12929
|
+
@sapContent_RatedColor: @sapContent_IconColor;
|
|
12930
|
+
|
|
12931
|
+
// [Tags "!Protected"]
|
|
12932
|
+
// [Protected "!true"]
|
|
12933
|
+
@sapContent_UnratedColor: @sapHC_ReducedAltForeground;
|
|
12934
|
+
|
|
12935
|
+
// [Tags "!Protected"]
|
|
12936
|
+
// [Protected "!true"]
|
|
12937
|
+
@sapContent_BusyColor: @sapContent_IconColor;
|
|
12938
|
+
|
|
12939
|
+
// [Tags "!Protected"]
|
|
12940
|
+
// [Protected "!true"]
|
|
12941
|
+
@sapContent_FocusColor: @sapHC_StandardForeground;
|
|
12942
|
+
|
|
12943
|
+
// [Tags "!Protected"]
|
|
12944
|
+
// [Protected "!true"]
|
|
12945
|
+
@sapContent_FocusStyle: dotted;
|
|
12946
|
+
|
|
12947
|
+
// [Tags "!Protected"]
|
|
12948
|
+
// [Protected "!true"]
|
|
12949
|
+
@sapContent_FocusWidth: 0.125 * @sapContent_GridSize;
|
|
12950
|
+
|
|
12951
|
+
// [Tags "!Protected"]
|
|
12952
|
+
// [Protected "!true"]
|
|
12953
|
+
@sapContent_ContrastFocusColor: @sapContent_FocusColor;
|
|
12954
|
+
|
|
12955
|
+
// [Tags "!Protected"]
|
|
12956
|
+
// [Protected "!true"]
|
|
12957
|
+
@sapContent_ShadowColor: @sapHC_StandardForeground;
|
|
12958
|
+
|
|
12959
|
+
// [Tags "!Protected"]
|
|
12960
|
+
// [Protected "!true"]
|
|
12961
|
+
@sapContent_ContrastShadowColor: @sapContent_ShadowColor;
|
|
12962
|
+
|
|
12963
|
+
// [Tags "!Protected"]
|
|
12964
|
+
// [Protected "!true"]
|
|
12965
|
+
@sapContent_Shadow0: 0 0 0 0.0625rem @sapContent_ShadowColor;
|
|
12966
|
+
|
|
12967
|
+
// [Tags "!Protected"]
|
|
12968
|
+
// [Protected "!true"]
|
|
12969
|
+
@sapContent_Shadow1: 0 0 1rem 0 fade(@sapContent_ContrastShadowColor, 50), 0 0 0 0.125rem @sapContent_ShadowColor;
|
|
12970
|
+
|
|
12971
|
+
// [Tags "!Protected"]
|
|
12972
|
+
// [Protected "!true"]
|
|
12973
|
+
@sapContent_Shadow2: 0 0.25rem 2rem 0 fade(@sapContent_ContrastShadowColor, 60), 0 0 0 0.125rem @sapContent_ShadowColor;
|
|
12974
|
+
|
|
12975
|
+
// [Tags "!Protected"]
|
|
12976
|
+
// [Protected "!true"]
|
|
12977
|
+
@sapContent_Shadow3: 0 0.625rem 4rem 0 fade(@sapContent_ContrastShadowColor, 80), 0 0 0 0.125rem @sapContent_ShadowColor;
|
|
12978
|
+
|
|
12979
|
+
// [Tags "!Protected"]
|
|
12980
|
+
// [Protected "!true"]
|
|
12981
|
+
@sapContent_TextShadow: -1px 0 @sapHC_StandardBackground, 0 1px @sapHC_StandardBackground, 1px 0 @sapHC_StandardBackground, 0 -1px @sapHC_StandardBackground;
|
|
12982
|
+
|
|
12983
|
+
// [Tags "!Protected"]
|
|
12984
|
+
// [Protected "!true"]
|
|
12985
|
+
@sapContent_ContrastTextShadow: none;
|
|
12986
|
+
|
|
12987
|
+
// [Tags "!Protected"]
|
|
12988
|
+
// [Protected "!true"]
|
|
12989
|
+
@sapContent_HeaderShadow: inset 0 -0.125rem @sapObjectHeader_BorderColor;
|
|
12990
|
+
|
|
12991
|
+
// [Tags "!Protected"]
|
|
12992
|
+
// [Protected "!true"]
|
|
12993
|
+
@sapContent_Interaction_Shadow: none;
|
|
12994
|
+
|
|
12995
|
+
// [Tags "!Protected"]
|
|
12996
|
+
// [Protected "!true"]
|
|
12997
|
+
@sapContent_Selected_Shadow: none;
|
|
12998
|
+
|
|
12999
|
+
// [Tags "!Protected"]
|
|
13000
|
+
// [Protected "!true"]
|
|
13001
|
+
@sapContent_Negative_Shadow: none;
|
|
13002
|
+
|
|
13003
|
+
// [Tags "!Protected"]
|
|
13004
|
+
// [Protected "!true"]
|
|
13005
|
+
@sapContent_Critical_Shadow: none;
|
|
13006
|
+
|
|
13007
|
+
// [Tags "!Protected"]
|
|
13008
|
+
// [Protected "!true"]
|
|
13009
|
+
@sapContent_Positive_Shadow: none;
|
|
12129
13010
|
|
|
12130
13011
|
// [Tags "!Protected"]
|
|
12131
13012
|
// [Protected "!true"]
|
|
12132
|
-
@
|
|
13013
|
+
@sapContent_Informative_Shadow: none;
|
|
12133
13014
|
|
|
12134
13015
|
// [Tags "!Protected"]
|
|
12135
13016
|
// [Protected "!true"]
|
|
12136
|
-
@
|
|
13017
|
+
@sapContent_Neutral_Shadow: none;
|
|
12137
13018
|
|
|
12138
13019
|
// [Tags "!Protected"]
|
|
12139
13020
|
// [Protected "!true"]
|
|
12140
|
-
@
|
|
13021
|
+
@sapContent_SearchHighlightColor: @sapHighlightColor;
|
|
12141
13022
|
|
|
12142
13023
|
// [Tags "!Protected"]
|
|
12143
13024
|
// [Protected "!true"]
|
|
12144
|
-
@
|
|
13025
|
+
@sapContent_HelpColor: @sapHC_EnhancedForeground;
|
|
12145
13026
|
|
|
12146
13027
|
// [Tags "!Protected"]
|
|
12147
13028
|
// [Protected "!true"]
|
|
12148
|
-
@
|
|
13029
|
+
@sapContent_LabelColor: @sapTextColor;
|
|
12149
13030
|
|
|
12150
13031
|
// [Tags "!Protected"]
|
|
12151
13032
|
// [Protected "!true"]
|
|
12152
|
-
@
|
|
13033
|
+
@sapContent_MonospaceFontFamily: "72Mono", "72Monofull", lucida console, monospace;
|
|
12153
13034
|
|
|
12154
13035
|
// [Tags "!Protected"]
|
|
12155
13036
|
// [Protected "!true"]
|
|
12156
|
-
@
|
|
13037
|
+
@sapContent_MonospaceBoldFontFamily: "72Mono-Bold", "72Mono-Boldfull", lucida console, monospace;
|
|
12157
13038
|
|
|
12158
|
-
// [
|
|
12159
|
-
|
|
13039
|
+
// [Tags "!Protected"]
|
|
13040
|
+
// [Protected "!true"]
|
|
13041
|
+
@sapContent_IconFontFamily: "SAP-icons";
|
|
12160
13042
|
|
|
12161
13043
|
// [Tags "!Protected"]
|
|
12162
13044
|
// [Protected "!true"]
|
|
12163
|
-
@
|
|
13045
|
+
@sapContent_DisabledTextColor: @sapHC_ReducedForeground;
|
|
12164
13046
|
|
|
12165
13047
|
// [Tags "!Protected"]
|
|
12166
13048
|
// [Protected "!true"]
|
|
12167
|
-
@
|
|
13049
|
+
@sapContent_DisabledOpacity: 0.4;
|
|
12168
13050
|
|
|
12169
13051
|
// [Tags "!Protected"]
|
|
12170
13052
|
// [Protected "!true"]
|
|
12171
|
-
@
|
|
13053
|
+
@sapContent_ContrastTextThreshold: 0.65;
|
|
12172
13054
|
|
|
12173
13055
|
// [Tags "!Protected"]
|
|
12174
13056
|
// [Protected "!true"]
|
|
12175
|
-
@
|
|
13057
|
+
@sapContent_ContrastTextColor: @sapTextColor;
|
|
12176
13058
|
|
|
12177
13059
|
// [Tags "!Protected"]
|
|
12178
13060
|
// [Protected "!true"]
|
|
12179
|
-
@
|
|
13061
|
+
@sapContent_ForegroundColor: @sapBackgroundColor;
|
|
12180
13062
|
|
|
12181
13063
|
// [Tags "!Protected"]
|
|
12182
13064
|
// [Protected "!true"]
|
|
12183
|
-
@
|
|
13065
|
+
@sapContent_ForegroundBorderColor: @sapHC_StandardForeground;
|
|
12184
13066
|
|
|
12185
13067
|
// [Tags "!Protected"]
|
|
12186
13068
|
// [Protected "!true"]
|
|
12187
|
-
@
|
|
13069
|
+
@sapContent_ForegroundTextColor: contrast(@sapContent_ForegroundColor, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12188
13070
|
|
|
12189
13071
|
// [Tags "!Protected"]
|
|
12190
13072
|
// [Protected "!true"]
|
|
12191
|
-
@
|
|
13073
|
+
@sapContent_BadgeBackground: @sapHC_StandardForeground;
|
|
12192
13074
|
|
|
12193
13075
|
// [Tags "!Protected"]
|
|
12194
13076
|
// [Protected "!true"]
|
|
12195
|
-
@
|
|
13077
|
+
@sapContent_BadgeTextColor: contrast(@sapContent_BadgeBackground, @sapTextColor, @sapBaseColor, @sapContent_ContrastTextThreshold);
|
|
12196
13078
|
|
|
12197
13079
|
// [Tags "!Protected"]
|
|
12198
13080
|
// [Protected "!true"]
|
|
12199
|
-
@
|
|
13081
|
+
@sapContent_BadgeBorderColor: @sapBaseColor;
|
|
12200
13082
|
|
|
12201
13083
|
// [Tags "!Protected"]
|
|
12202
13084
|
// [Protected "!true"]
|
|
12203
|
-
@
|
|
13085
|
+
@sapContent_DragAndDropActiveColor: @sapContent_HelpColor;
|
|
12204
13086
|
|
|
12205
13087
|
// [Tags "!Protected"]
|
|
12206
13088
|
// [Protected "!true"]
|
|
12207
|
-
@
|
|
13089
|
+
@sapContent_Selected_TextColor: contrast(@sapContent_Selected_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12208
13090
|
|
|
12209
13091
|
// [Tags "!Protected"]
|
|
12210
13092
|
// [Protected "!true"]
|
|
12211
|
-
@
|
|
13093
|
+
@sapContent_Selected_Background: @sapSelectedColor;
|
|
12212
13094
|
|
|
12213
13095
|
// [Tags "!Protected"]
|
|
12214
13096
|
// [Protected "!true"]
|
|
12215
|
-
@
|
|
13097
|
+
@sapContent_Selected_Hover_Background: @sapHighlightColor;
|
|
12216
13098
|
|
|
12217
13099
|
// [Tags "!Protected"]
|
|
12218
13100
|
// [Protected "!true"]
|
|
12219
|
-
@
|
|
13101
|
+
@sapContent_Selected_ForegroundColor: @sapHC_StandardForeground;
|
|
12220
13102
|
|
|
12221
13103
|
// [Tags "!Protected"]
|
|
12222
13104
|
// [Protected "!true"]
|
|
12223
|
-
@
|
|
13105
|
+
@sapContent_ForcedColorAdjust: none;
|
|
12224
13106
|
|
|
12225
13107
|
// [Tags "!Protected"]
|
|
12226
13108
|
// [Protected "!true"]
|
|
12227
|
-
@
|
|
13109
|
+
@sapContent_Lite_Shadow: @sapContent_Shadow1;
|
|
12228
13110
|
|
|
12229
13111
|
// [Tags "!Protected"]
|
|
12230
13112
|
// [Protected "!true"]
|
|
12231
|
-
@
|
|
13113
|
+
@sapContent_Illustrative_Color1: #9b015d;
|
|
12232
13114
|
|
|
12233
13115
|
// [Tags "!Protected"]
|
|
12234
13116
|
// [Protected "!true"]
|
|
12235
|
-
@
|
|
13117
|
+
@sapContent_Illustrative_Color2: #56bdff;
|
|
12236
13118
|
|
|
12237
13119
|
// [Tags "!Protected"]
|
|
12238
13120
|
// [Protected "!true"]
|
|
12239
|
-
@
|
|
13121
|
+
@sapContent_Illustrative_Color3: #ff7f4c;
|
|
12240
13122
|
|
|
12241
13123
|
// [Tags "!Protected"]
|
|
12242
13124
|
// [Protected "!true"]
|
|
12243
|
-
@
|
|
13125
|
+
@sapContent_Illustrative_Color4: #00144a;
|
|
12244
13126
|
|
|
12245
13127
|
// [Tags "!Protected"]
|
|
12246
13128
|
// [Protected "!true"]
|
|
12247
|
-
@
|
|
13129
|
+
@sapContent_Illustrative_Color5: #a9b4be;
|
|
12248
13130
|
|
|
12249
13131
|
// [Tags "!Protected"]
|
|
12250
13132
|
// [Protected "!true"]
|
|
12251
|
-
@
|
|
13133
|
+
@sapContent_Illustrative_Color6: #d5dadd;
|
|
12252
13134
|
|
|
12253
13135
|
// [Tags "!Protected"]
|
|
12254
13136
|
// [Protected "!true"]
|
|
12255
|
-
@
|
|
13137
|
+
@sapContent_Illustrative_Color7: lighten(@sapContent_Illustrative_Color20, 16);
|
|
12256
13138
|
|
|
12257
13139
|
// [Tags "!Protected"]
|
|
12258
13140
|
// [Protected "!true"]
|
|
12259
|
-
@
|
|
13141
|
+
@sapContent_Illustrative_Color8: #fff;
|
|
12260
13142
|
|
|
12261
13143
|
// [Tags "!Protected"]
|
|
12262
13144
|
// [Protected "!true"]
|
|
12263
|
-
@
|
|
13145
|
+
@sapContent_Illustrative_Color9: #0899a7;
|
|
12264
13146
|
|
|
12265
13147
|
// [Tags "!Protected"]
|
|
12266
13148
|
// [Protected "!true"]
|
|
12267
|
-
@
|
|
13149
|
+
@sapContent_Illustrative_Color10: lighten(@sapContent_Illustrative_Color20, 16);
|
|
12268
13150
|
|
|
12269
13151
|
// [Tags "!Protected"]
|
|
12270
13152
|
// [Protected "!true"]
|
|
12271
|
-
@
|
|
13153
|
+
@sapContent_Illustrative_Color11: #df1278;
|
|
12272
13154
|
|
|
12273
13155
|
// [Tags "!Protected"]
|
|
12274
13156
|
// [Protected "!true"]
|
|
12275
|
-
@
|
|
13157
|
+
@sapContent_Illustrative_Color12: #00a800;
|
|
12276
13158
|
|
|
12277
13159
|
// [Tags "!Protected"]
|
|
12278
13160
|
// [Protected "!true"]
|
|
12279
|
-
@
|
|
13161
|
+
@sapContent_Illustrative_Color13: #0070f2;
|
|
12280
13162
|
|
|
12281
13163
|
// [Tags "!Protected"]
|
|
12282
13164
|
// [Protected "!true"]
|
|
12283
|
-
@
|
|
13165
|
+
@sapContent_Illustrative_Color14: #0040b0;
|
|
12284
13166
|
|
|
12285
13167
|
// [Tags "!Protected"]
|
|
12286
13168
|
// [Protected "!true"]
|
|
12287
|
-
@
|
|
13169
|
+
@sapContent_Illustrative_Color15: #c35500;
|
|
12288
13170
|
|
|
12289
13171
|
// [Tags "!Protected"]
|
|
12290
13172
|
// [Protected "!true"]
|
|
12291
|
-
@
|
|
13173
|
+
@sapContent_Illustrative_Color16: #8d2a00;
|
|
12292
13174
|
|
|
12293
13175
|
// [Tags "!Protected"]
|
|
12294
13176
|
// [Protected "!true"]
|
|
12295
|
-
@
|
|
13177
|
+
@sapContent_Illustrative_Color17: #046c7c;
|
|
12296
13178
|
|
|
12297
13179
|
// [Tags "!Protected"]
|
|
12298
13180
|
// [Protected "!true"]
|
|
12299
|
-
@
|
|
13181
|
+
@sapContent_Illustrative_Color18: lighten(@sapContent_Illustrative_Color20, 10);
|
|
12300
13182
|
|
|
12301
13183
|
// [Tags "!Protected"]
|
|
12302
13184
|
// [Protected "!true"]
|
|
12303
|
-
@
|
|
13185
|
+
@sapContent_Illustrative_Color19: lighten(@sapContent_Illustrative_Color20, 5);
|
|
12304
13186
|
|
|
12305
13187
|
// [Tags "!Protected"]
|
|
12306
13188
|
// [Protected "!true"]
|
|
12307
|
-
@
|
|
13189
|
+
@sapContent_Illustrative_Color20: #89d1ff;
|
|
12308
13190
|
|
|
12309
13191
|
// [Tags "!Protected"]
|
|
12310
13192
|
// [Protected "!true"]
|
|
12311
|
-
@
|
|
13193
|
+
@sapContent_Illustrative_Color21: #1b90ff;
|
|
12312
13194
|
|
|
12313
13195
|
// [Tags "!Protected"]
|
|
12314
13196
|
// [Protected "!true"]
|
|
12315
|
-
@
|
|
13197
|
+
@sapContent_Illustrative_Color22: #00144a;
|
|
12316
13198
|
|
|
12317
13199
|
// [Tags "!Protected"]
|
|
12318
13200
|
// [Protected "!true"]
|
|
12319
|
-
@
|
|
13201
|
+
@sapContent_Illustrative_Color23: #d20a0a;
|
|
12320
13202
|
|
|
12321
13203
|
// [Tags "!Protected"]
|
|
12322
13204
|
// [Protected "!true"]
|
|
12323
|
-
@
|
|
13205
|
+
@sapContent_Illustrative_Color24: #ffb2d2;
|
|
12324
13206
|
|
|
12325
13207
|
// [Tags "!Protected"]
|
|
12326
13208
|
// [Protected "!true"]
|
|
12327
|
-
@
|
|
13209
|
+
@sapContent_Illustrative_Color25: #ffeaf4;
|
|
12328
13210
|
|
|
12329
13211
|
// [Tags "!Protected"]
|
|
12330
13212
|
// [Protected "!true"]
|
|
12331
|
-
@
|
|
13213
|
+
@sapContent_Illustrative_Color26: #ffdf72;
|
|
12332
13214
|
|
|
12333
13215
|
// [Tags "!Protected"]
|
|
12334
13216
|
// [Protected "!true"]
|
|
12335
|
-
@
|
|
13217
|
+
@sapContent_Illustrative_Color27: #fff8d6;
|
|
12336
13218
|
|
|
12337
13219
|
// [Tags "!Protected"]
|
|
12338
13220
|
// [Protected "!true"]
|
|
12339
|
-
@
|
|
13221
|
+
@sapContent_Illustrative_Color28: #a93e00;
|
|
12340
13222
|
|
|
12341
13223
|
// [Tags "!Protected"]
|
|
12342
13224
|
// [Protected "!true"]
|
|
12343
|
-
@
|
|
13225
|
+
@sapContent_Illustrative_Color29: #450b00;
|
|
12344
13226
|
|
|
12345
13227
|
// [Tags "!Protected"]
|
|
12346
13228
|
// [Protected "!true"]
|
|
12347
|
-
@
|
|
13229
|
+
@sapContent_Illustrative_Color30: #340800;
|
|
12348
13230
|
|
|
12349
13231
|
// [Tags "!Protected"]
|
|
12350
13232
|
// [Protected "!true"]
|
|
12351
|
-
@
|
|
13233
|
+
@sapContent_Illustrative_Color31: #ffab92;
|
|
12352
13234
|
|
|
12353
13235
|
// [Tags "!Protected"]
|
|
12354
13236
|
// [Protected "!true"]
|
|
12355
|
-
@
|
|
13237
|
+
@sapContent_Space_S: 1rem;
|
|
12356
13238
|
|
|
12357
13239
|
// [Tags "!Protected"]
|
|
12358
13240
|
// [Protected "!true"]
|
|
12359
|
-
@
|
|
13241
|
+
@sapContent_Space_M: 2rem;
|
|
12360
13242
|
|
|
12361
13243
|
// [Tags "!Protected"]
|
|
12362
13244
|
// [Protected "!true"]
|
|
12363
|
-
@
|
|
13245
|
+
@sapContent_Space_L: 2rem;
|
|
12364
13246
|
|
|
12365
13247
|
// [Tags "!Protected"]
|
|
12366
13248
|
// [Protected "!true"]
|
|
12367
|
-
@
|
|
13249
|
+
@sapContent_Space_XL: 3rem;
|
|
12368
13250
|
|
|
12369
13251
|
// [Tags "!Protected"]
|
|
12370
13252
|
// [Protected "!true"]
|
|
12371
|
-
@
|
|
13253
|
+
@sapContent_Space_Tiny: 2rem;
|
|
12372
13254
|
|
|
12373
13255
|
// [Tags "!Protected"]
|
|
12374
13256
|
// [Protected "!true"]
|
|
12375
|
-
@
|
|
13257
|
+
@sapContent_Space_Small: 1rem;
|
|
12376
13258
|
|
|
12377
13259
|
// [Tags "!Protected"]
|
|
12378
13260
|
// [Protected "!true"]
|
|
12379
|
-
@
|
|
13261
|
+
@sapContent_Space_Medium: 2rem;
|
|
12380
13262
|
|
|
12381
13263
|
// [Tags "!Protected"]
|
|
12382
13264
|
// [Protected "!true"]
|
|
12383
|
-
@
|
|
13265
|
+
@sapContent_Space_Large: 3rem;
|
|
12384
13266
|
|
|
12385
13267
|
// [Tags "!Protected"]
|
|
12386
13268
|
// [Protected "!true"]
|
|
12387
|
-
@
|
|
13269
|
+
@sapContent_Margin_Tiny: 0 0 1rem;
|
|
12388
13270
|
|
|
12389
13271
|
// [Tags "!Protected"]
|
|
12390
13272
|
// [Protected "!true"]
|
|
12391
|
-
@
|
|
13273
|
+
@sapContent_Margin_Small: 1rem;
|
|
12392
13274
|
|
|
12393
13275
|
// [Tags "!Protected"]
|
|
12394
13276
|
// [Protected "!true"]
|
|
12395
|
-
@
|
|
13277
|
+
@sapContent_Margin_Medium: 1rem 2rem;
|
|
12396
13278
|
|
|
12397
13279
|
// [Tags "!Protected"]
|
|
12398
13280
|
// [Protected "!true"]
|
|
12399
|
-
@
|
|
13281
|
+
@sapContent_Margin_Large: 1rem 3rem;
|
|
12400
13282
|
|
|
12401
13283
|
// [Tags "!Protected"]
|
|
12402
13284
|
// [Protected "!true"]
|
|
12403
|
-
@
|
|
13285
|
+
@sapContent_Gap: 1rem;
|
|
12404
13286
|
|
|
12405
13287
|
// [Tags "!Protected"]
|
|
12406
13288
|
// [Protected "!true"]
|
|
12407
|
-
@
|
|
13289
|
+
@sapContent_Padding_S: 0rem;
|
|
12408
13290
|
|
|
12409
13291
|
// [Tags "!Protected"]
|
|
12410
13292
|
// [Protected "!true"]
|
|
12411
|
-
@
|
|
13293
|
+
@sapContent_Padding_M: 2rem;
|
|
12412
13294
|
|
|
12413
13295
|
// [Tags "!Protected"]
|
|
12414
13296
|
// [Protected "!true"]
|
|
12415
|
-
@
|
|
13297
|
+
@sapContent_Padding_L: 2rem;
|
|
12416
13298
|
|
|
12417
13299
|
// [Tags "!Protected"]
|
|
12418
13300
|
// [Protected "!true"]
|
|
12419
|
-
@
|
|
13301
|
+
@sapContent_Padding_XL: 3rem;
|
|
12420
13302
|
|
|
12421
13303
|
// [Tags "!Protected"]
|
|
12422
13304
|
// [Protected "!true"]
|
|
12423
|
-
@
|
|
13305
|
+
@sapContent_Success_HeaderShadow: inset 0 -0.125rem @sapSuccessBorderColor;
|
|
12424
13306
|
|
|
12425
13307
|
// [Tags "!Protected"]
|
|
12426
13308
|
// [Protected "!true"]
|
|
12427
|
-
@
|
|
13309
|
+
@sapContent_Warning_HeaderShadow: inset 0 -0.125rem @sapWarningBorderColor;
|
|
12428
13310
|
|
|
12429
13311
|
// [Tags "!Protected"]
|
|
12430
13312
|
// [Protected "!true"]
|
|
12431
|
-
@
|
|
13313
|
+
@sapContent_Error_HeaderShadow: inset 0 -0.125rem @sapErrorBorderColor;
|
|
12432
13314
|
|
|
12433
13315
|
// [Tags "!Protected"]
|
|
12434
13316
|
// [Protected "!true"]
|
|
12435
|
-
@
|
|
13317
|
+
@sapContent_Information_HeaderShadow: inset 0 -0.125rem @sapInformationBorderColor;
|
|
12436
13318
|
|
|
12437
13319
|
// [Tags "!Protected"]
|
|
12438
13320
|
// [Protected "!true"]
|
|
@@ -12640,6 +13522,10 @@ fill: @sapBaseColor !important;
|
|
|
12640
13522
|
// [Tags "!Protected"]
|
|
12641
13523
|
// [Protected "!true"]
|
|
12642
13524
|
@sapShell_Assistant_ForegroundColor: @sapShell_Selected_TextColor;
|
|
13525
|
+
|
|
13526
|
+
// [Tags "!Protected"]
|
|
13527
|
+
// [Protected "!true"]
|
|
13528
|
+
@sapShell_SubBrand_TextColor: contrast(@sapShellColor, @sapTextColor,@sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12643
13529
|
@sapShell_Category_1_Background: @sapHC_StandardBackground;
|
|
12644
13530
|
|
|
12645
13531
|
// [Tags "!Protected"]
|
|
@@ -12753,6 +13639,54 @@ fill: @sapBaseColor !important;
|
|
|
12753
13639
|
@sapShell_Category_16_TextColor: contrast(@sapShell_Category_16_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12754
13640
|
@sapShell_Category_16_TextShadow: none;
|
|
12755
13641
|
|
|
13642
|
+
// [Tags "!Protected"]
|
|
13643
|
+
// [Protected "!true"]
|
|
13644
|
+
@sapShell_Space_S: 0.5rem;
|
|
13645
|
+
|
|
13646
|
+
// [Tags "!Protected"]
|
|
13647
|
+
// [Protected "!true"]
|
|
13648
|
+
@sapShell_Space_M: 2rem;
|
|
13649
|
+
|
|
13650
|
+
// [Tags "!Protected"]
|
|
13651
|
+
// [Protected "!true"]
|
|
13652
|
+
@sapShell_Space_L: 2rem;
|
|
13653
|
+
|
|
13654
|
+
// [Tags "!Protected"]
|
|
13655
|
+
// [Protected "!true"]
|
|
13656
|
+
@sapShell_Space_XL: 3rem;
|
|
13657
|
+
|
|
13658
|
+
// [Tags "!Protected"]
|
|
13659
|
+
// [Protected "!true"]
|
|
13660
|
+
@sapShell_Gap_S: 0.5rem;
|
|
13661
|
+
|
|
13662
|
+
// [Tags "!Protected"]
|
|
13663
|
+
// [Protected "!true"]
|
|
13664
|
+
@sapShell_Gap_M: 1rem;
|
|
13665
|
+
|
|
13666
|
+
// [Tags "!Protected"]
|
|
13667
|
+
// [Protected "!true"]
|
|
13668
|
+
@sapShell_Gap_L: 1rem;
|
|
13669
|
+
|
|
13670
|
+
// [Tags "!Protected"]
|
|
13671
|
+
// [Protected "!true"]
|
|
13672
|
+
@sapShell_Gap_XL: 1rem;
|
|
13673
|
+
|
|
13674
|
+
// [Tags "!Protected"]
|
|
13675
|
+
// [Protected "!true"]
|
|
13676
|
+
@sapShell_GroupGap_S: 2rem;
|
|
13677
|
+
|
|
13678
|
+
// [Tags "!Protected"]
|
|
13679
|
+
// [Protected "!true"]
|
|
13680
|
+
@sapShell_GroupGap_M: 3rem;
|
|
13681
|
+
|
|
13682
|
+
// [Tags "!Protected"]
|
|
13683
|
+
// [Protected "!true"]
|
|
13684
|
+
@sapShell_GroupGap_L: 3rem;
|
|
13685
|
+
|
|
13686
|
+
// [Tags "!Protected"]
|
|
13687
|
+
// [Protected "!true"]
|
|
13688
|
+
@sapShell_GroupGap_XL: 3rem;
|
|
13689
|
+
|
|
12756
13690
|
// [Tags "!Protected"]
|
|
12757
13691
|
// [Protected "!true"]
|
|
12758
13692
|
@sapAssistant_Color1: @sapHC_StandardForeground;
|
|
@@ -12837,6 +13771,10 @@ fill: @sapBaseColor !important;
|
|
|
12837
13771
|
// [Protected "!true"]
|
|
12838
13772
|
@sapAvatar_1_TextColor: contrast(@sapAvatar_1_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12839
13773
|
|
|
13774
|
+
// [Tags "!Protected"]
|
|
13775
|
+
// [Protected "!true"]
|
|
13776
|
+
@sapAvatar_1_Hover_Background: @sapHoverColor;
|
|
13777
|
+
|
|
12840
13778
|
// [Tags "!Protected"]
|
|
12841
13779
|
// [Protected "!true"]
|
|
12842
13780
|
@sapAvatar_2_Background: @sapBackgroundColor;
|
|
@@ -12849,6 +13787,10 @@ fill: @sapBaseColor !important;
|
|
|
12849
13787
|
// [Protected "!true"]
|
|
12850
13788
|
@sapAvatar_2_TextColor: contrast(@sapAvatar_2_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12851
13789
|
|
|
13790
|
+
// [Tags "!Protected"]
|
|
13791
|
+
// [Protected "!true"]
|
|
13792
|
+
@sapAvatar_2_Hover_Background: @sapHoverColor;
|
|
13793
|
+
|
|
12852
13794
|
// [Tags "!Protected"]
|
|
12853
13795
|
// [Protected "!true"]
|
|
12854
13796
|
@sapAvatar_3_Background: @sapBackgroundColor;
|
|
@@ -12861,6 +13803,10 @@ fill: @sapBaseColor !important;
|
|
|
12861
13803
|
// [Protected "!true"]
|
|
12862
13804
|
@sapAvatar_3_TextColor: contrast(@sapAvatar_3_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12863
13805
|
|
|
13806
|
+
// [Tags "!Protected"]
|
|
13807
|
+
// [Protected "!true"]
|
|
13808
|
+
@sapAvatar_3_Hover_Background: @sapHoverColor;
|
|
13809
|
+
|
|
12864
13810
|
// [Tags "!Protected"]
|
|
12865
13811
|
// [Protected "!true"]
|
|
12866
13812
|
@sapAvatar_4_Background: @sapBackgroundColor;
|
|
@@ -12873,6 +13819,10 @@ fill: @sapBaseColor !important;
|
|
|
12873
13819
|
// [Protected "!true"]
|
|
12874
13820
|
@sapAvatar_4_TextColor: contrast(@sapAvatar_4_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12875
13821
|
|
|
13822
|
+
// [Tags "!Protected"]
|
|
13823
|
+
// [Protected "!true"]
|
|
13824
|
+
@sapAvatar_4_Hover_Background: @sapHoverColor;
|
|
13825
|
+
|
|
12876
13826
|
// [Tags "!Protected"]
|
|
12877
13827
|
// [Protected "!true"]
|
|
12878
13828
|
@sapAvatar_5_Background: @sapBackgroundColor;
|
|
@@ -12885,6 +13835,10 @@ fill: @sapBaseColor !important;
|
|
|
12885
13835
|
// [Protected "!true"]
|
|
12886
13836
|
@sapAvatar_5_TextColor: contrast(@sapAvatar_5_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12887
13837
|
|
|
13838
|
+
// [Tags "!Protected"]
|
|
13839
|
+
// [Protected "!true"]
|
|
13840
|
+
@sapAvatar_5_Hover_Background: @sapHoverColor;
|
|
13841
|
+
|
|
12888
13842
|
// [Tags "!Protected"]
|
|
12889
13843
|
// [Protected "!true"]
|
|
12890
13844
|
@sapAvatar_6_Background: @sapBackgroundColor;
|
|
@@ -12897,6 +13851,10 @@ fill: @sapBaseColor !important;
|
|
|
12897
13851
|
// [Protected "!true"]
|
|
12898
13852
|
@sapAvatar_6_TextColor: contrast(@sapAvatar_6_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12899
13853
|
|
|
13854
|
+
// [Tags "!Protected"]
|
|
13855
|
+
// [Protected "!true"]
|
|
13856
|
+
@sapAvatar_6_Hover_Background: @sapHoverColor;
|
|
13857
|
+
|
|
12900
13858
|
// [Tags "!Protected"]
|
|
12901
13859
|
// [Protected "!true"]
|
|
12902
13860
|
@sapAvatar_7_Background: @sapBackgroundColor;
|
|
@@ -12909,6 +13867,10 @@ fill: @sapBaseColor !important;
|
|
|
12909
13867
|
// [Protected "!true"]
|
|
12910
13868
|
@sapAvatar_7_TextColor: contrast(@sapAvatar_7_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12911
13869
|
|
|
13870
|
+
// [Tags "!Protected"]
|
|
13871
|
+
// [Protected "!true"]
|
|
13872
|
+
@sapAvatar_7_Hover_Background: @sapHoverColor;
|
|
13873
|
+
|
|
12912
13874
|
// [Tags "!Protected"]
|
|
12913
13875
|
// [Protected "!true"]
|
|
12914
13876
|
@sapAvatar_8_Background: @sapBackgroundColor;
|
|
@@ -12921,6 +13883,10 @@ fill: @sapBaseColor !important;
|
|
|
12921
13883
|
// [Protected "!true"]
|
|
12922
13884
|
@sapAvatar_8_TextColor: contrast(@sapAvatar_8_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12923
13885
|
|
|
13886
|
+
// [Tags "!Protected"]
|
|
13887
|
+
// [Protected "!true"]
|
|
13888
|
+
@sapAvatar_8_Hover_Background: @sapHoverColor;
|
|
13889
|
+
|
|
12924
13890
|
// [Tags "!Protected"]
|
|
12925
13891
|
// [Protected "!true"]
|
|
12926
13892
|
@sapAvatar_9_Background: @sapBackgroundColor;
|
|
@@ -12933,6 +13899,10 @@ fill: @sapBaseColor !important;
|
|
|
12933
13899
|
// [Protected "!true"]
|
|
12934
13900
|
@sapAvatar_9_TextColor: contrast(@sapAvatar_9_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12935
13901
|
|
|
13902
|
+
// [Tags "!Protected"]
|
|
13903
|
+
// [Protected "!true"]
|
|
13904
|
+
@sapAvatar_9_Hover_Background: @sapHoverColor;
|
|
13905
|
+
|
|
12936
13906
|
// [Tags "!Protected"]
|
|
12937
13907
|
// [Protected "!true"]
|
|
12938
13908
|
@sapAvatar_10_Background: @sapBackgroundColor;
|
|
@@ -12945,6 +13915,22 @@ fill: @sapBaseColor !important;
|
|
|
12945
13915
|
// [Protected "!true"]
|
|
12946
13916
|
@sapAvatar_10_TextColor: contrast(@sapAvatar_10_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12947
13917
|
|
|
13918
|
+
// [Tags "!Protected"]
|
|
13919
|
+
// [Protected "!true"]
|
|
13920
|
+
@sapAvatar_10_Hover_Background: @sapHoverColor;
|
|
13921
|
+
|
|
13922
|
+
// [Tags "!Protected"]
|
|
13923
|
+
// [Protected "!true"]
|
|
13924
|
+
@sapAvatar_Lite_BorderColor: @sapGroup_ContentBorderColor;
|
|
13925
|
+
|
|
13926
|
+
// [Tags "!Protected"]
|
|
13927
|
+
// [Protected "!true"]
|
|
13928
|
+
@sapAvatar_Lite_Background: @sapBackgroundColor;
|
|
13929
|
+
|
|
13930
|
+
// [Tags "!Protected"]
|
|
13931
|
+
// [Protected "!true"]
|
|
13932
|
+
@sapAvatar_Hover_BorderColor: @sapField_BorderColor;
|
|
13933
|
+
|
|
12948
13934
|
// [Tags "!Protected"]
|
|
12949
13935
|
// [Protected "!true"]
|
|
12950
13936
|
@sapButton_Background: @sapBackgroundColor;
|
|
@@ -12965,6 +13951,10 @@ fill: @sapBaseColor !important;
|
|
|
12965
13951
|
// [Protected "!true"]
|
|
12966
13952
|
@sapButton_TextColor: contrast(@sapButton_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
12967
13953
|
|
|
13954
|
+
// [Tags "!Protected"]
|
|
13955
|
+
// [Protected "!true"]
|
|
13956
|
+
@sapButton_FontFamily: @sapFontFamily;
|
|
13957
|
+
|
|
12968
13958
|
// [Tags "!Protected"]
|
|
12969
13959
|
// [Protected "!true"]
|
|
12970
13960
|
@sapButton_Hover_Background: @sapHighlightColor;
|
|
@@ -13001,10 +13991,18 @@ fill: @sapBaseColor !important;
|
|
|
13001
13991
|
// [Protected "!true"]
|
|
13002
13992
|
@sapButton_Emphasized_BorderColor: @sapButton_BorderColor;
|
|
13003
13993
|
|
|
13994
|
+
// [Tags "!Protected"]
|
|
13995
|
+
// [Protected "!true"]
|
|
13996
|
+
@sapButton_Emphasized_BorderWidth: .125 * @sapContent_GridSize;
|
|
13997
|
+
|
|
13004
13998
|
// [Tags "!Protected"]
|
|
13005
13999
|
// [Protected "!true"]
|
|
13006
14000
|
@sapButton_Emphasized_TextColor: contrast(@sapButton_Emphasized_Background, @sapTextColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
13007
14001
|
|
|
14002
|
+
// [Tags "!Protected"]
|
|
14003
|
+
// [Protected "!true"]
|
|
14004
|
+
@sapButton_Emphasized_FontFamily: @sapFontBoldFamily;
|
|
14005
|
+
|
|
13008
14006
|
// [Tags "!Protected"]
|
|
13009
14007
|
// [Protected "!true"]
|
|
13010
14008
|
@sapButton_Emphasized_Hover_Background: @sapButton_Hover_Background;
|
|
@@ -13605,6 +14603,22 @@ fill: @sapBaseColor !important;
|
|
|
13605
14603
|
// [Protected "!true"]
|
|
13606
14604
|
@sapButton_TokenBorderColor: @sapButton_BorderColor;
|
|
13607
14605
|
|
|
14606
|
+
// [Tags "!Protected"]
|
|
14607
|
+
// [Protected "!true"]
|
|
14608
|
+
@sapButton_TokenBorderCornerRadius: 0.25 * @sapContent_GridSize;
|
|
14609
|
+
|
|
14610
|
+
// [Tags "!Protected"]
|
|
14611
|
+
// [Protected "!true"]
|
|
14612
|
+
@sapButton_Selected_TokenBorderWidth: 0;
|
|
14613
|
+
|
|
14614
|
+
// [Tags "!Protected"]
|
|
14615
|
+
// [Protected "!true"]
|
|
14616
|
+
@sapButton_ReadOnly_TokenBackground: @sapField_ReadOnly_Background;
|
|
14617
|
+
|
|
14618
|
+
// [Tags "!Protected"]
|
|
14619
|
+
// [Protected "!true"]
|
|
14620
|
+
@sapButton_Segment_BorderCornerRadius: 0;
|
|
14621
|
+
|
|
13608
14622
|
// [Tags "!Protected"]
|
|
13609
14623
|
// [Protected "!true"]
|
|
13610
14624
|
@sapField_Background: @sapBackgroundColor;
|
|
@@ -13787,6 +14801,62 @@ fill: @sapBaseColor !important;
|
|
|
13787
14801
|
@sapField_InformationBorderStyle: dashed;
|
|
13788
14802
|
@sapField_InformationShadow: none;
|
|
13789
14803
|
|
|
14804
|
+
// [Tags "!Protected"]
|
|
14805
|
+
// [Protected "!true"]
|
|
14806
|
+
@sapField_Selector_Hover_Background: @sapHC_HighlightAltBackground;
|
|
14807
|
+
|
|
14808
|
+
// [Tags "!Protected"]
|
|
14809
|
+
// [Protected "!true"]
|
|
14810
|
+
@sapField_Selector_Hover_InvalidBackground: sapField_InvalidBackground;
|
|
14811
|
+
|
|
14812
|
+
// [Tags "!Protected"]
|
|
14813
|
+
// [Protected "!true"]
|
|
14814
|
+
@sapField_Selector_Hover_WarningBackground: @sapField_Hover_Background;
|
|
14815
|
+
|
|
14816
|
+
// [Tags "!Protected"]
|
|
14817
|
+
// [Protected "!true"]
|
|
14818
|
+
@sapField_Selector_Hover_SuccessBackground: @sapField_Hover_Background;
|
|
14819
|
+
|
|
14820
|
+
// [Tags "!Protected"]
|
|
14821
|
+
// [Protected "!true"]
|
|
14822
|
+
@sapField_Selector_Hover_InformationBackground: @sapField_Hover_Background;
|
|
14823
|
+
|
|
14824
|
+
// [Tags "!Protected"]
|
|
14825
|
+
// [Protected "!true"]
|
|
14826
|
+
@sapField_Picker_BorderColor: @sapContent_ForegroundColor;
|
|
14827
|
+
|
|
14828
|
+
// [Tags "!Protected"]
|
|
14829
|
+
// [Protected "!true"]
|
|
14830
|
+
@sapField_Picker_BorderWidth: 0.125 * @sapContent_GridSize;
|
|
14831
|
+
|
|
14832
|
+
// [Tags "!Protected"]
|
|
14833
|
+
// [Protected "!true"]
|
|
14834
|
+
@sapField_Selector_BorderStyle: solid;
|
|
14835
|
+
|
|
14836
|
+
// [Tags "!Protected"]
|
|
14837
|
+
// [Protected "!true"]
|
|
14838
|
+
@sapField_Selector_ReadOnly_BorderStyle: solid;
|
|
14839
|
+
|
|
14840
|
+
// [Tags "!Protected"]
|
|
14841
|
+
// [Protected "!true"]
|
|
14842
|
+
@sapField_Selector_InvalidBorderStyle: dashed;
|
|
14843
|
+
|
|
14844
|
+
// [Tags "!Protected"]
|
|
14845
|
+
// [Protected "!true"]
|
|
14846
|
+
@sapField_Selector_WarningBorderStyle: dashed;
|
|
14847
|
+
|
|
14848
|
+
// [Tags "!Protected"]
|
|
14849
|
+
// [Protected "!true"]
|
|
14850
|
+
@sapField_Selector_SuccessBorderStyle: solid;
|
|
14851
|
+
|
|
14852
|
+
// [Tags "!Protected"]
|
|
14853
|
+
// [Protected "!true"]
|
|
14854
|
+
@sapField_Selector_InformationBorderStyle: dashed;
|
|
14855
|
+
|
|
14856
|
+
// [Tags "!Protected"]
|
|
14857
|
+
// [Protected "!true"]
|
|
14858
|
+
@sapGroup_TitleBorderWidth: 0.125 * @sapContent_GridSize;
|
|
14859
|
+
|
|
13790
14860
|
// [Tags "!Protected"]
|
|
13791
14861
|
// [Protected "!true"]
|
|
13792
14862
|
@sapGroup_TitleBackground: @sapBackgroundColor;
|
|
@@ -13927,6 +14997,14 @@ fill: @sapBaseColor !important;
|
|
|
13927
14997
|
// [Protected "!true"]
|
|
13928
14998
|
@sapList_TableFixedBorderColor: @sapHC_StandardForeground;
|
|
13929
14999
|
|
|
15000
|
+
// [Tags "!Protected"]
|
|
15001
|
+
// [Protected "!true"]
|
|
15002
|
+
@sapList_TableFixedColumnBorderWidth: 0.1875 * @sapContent_GridSize;
|
|
15003
|
+
|
|
15004
|
+
// [Tags "!Protected"]
|
|
15005
|
+
// [Protected "!true"]
|
|
15006
|
+
@sapList_TableFixedRowBorderWidth: 0.1875 * @sapContent_GridSize;
|
|
15007
|
+
|
|
13930
15008
|
// [Tags "!Protected"]
|
|
13931
15009
|
// [Protected "!true"]
|
|
13932
15010
|
@sapMessage_ErrorBorderColor: @sapErrorBorderColor;
|
|
@@ -14227,6 +15305,10 @@ fill: @sapBaseColor !important;
|
|
|
14227
15305
|
// [Protected "!true"]
|
|
14228
15306
|
@sapBlockLayer_Background: @sapBackgroundColor;
|
|
14229
15307
|
|
|
15308
|
+
// [Tags "!Protected"]
|
|
15309
|
+
// [Protected "!true"]
|
|
15310
|
+
@sapBlockLayer_Opacity: 0.3;
|
|
15311
|
+
|
|
14230
15312
|
// [Tags "!Protected"]
|
|
14231
15313
|
// [Protected "!true"]
|
|
14232
15314
|
@sapTile_Background: @sapBackgroundColor;
|
|
@@ -14275,6 +15357,14 @@ fill: @sapBaseColor !important;
|
|
|
14275
15357
|
// [Protected "!true"]
|
|
14276
15358
|
@sapTile_OverlayForegroundColor: contrast(@sapTile_OverlayBackground, @sapTitleColor, @sapContent_ContrastTextColor, @sapContent_ContrastTextThreshold);
|
|
14277
15359
|
|
|
15360
|
+
// [Tags "!Protected"]
|
|
15361
|
+
// [Protected "!true"]
|
|
15362
|
+
@sapTile_Hover_ContentBackground: @sapTile_Hover_Background;
|
|
15363
|
+
|
|
15364
|
+
// [Tags "!Protected"]
|
|
15365
|
+
// [Protected "!true"]
|
|
15366
|
+
@sapTile_Active_ContentBackground: @sapTile_Active_Background;
|
|
15367
|
+
|
|
14278
15368
|
// [Tags "!Protected"]
|
|
14279
15369
|
// [Protected "!true"]
|
|
14280
15370
|
@sapAccentColor1: #5f5800;
|
|
@@ -15490,3 +16580,19 @@ fill: @sapBaseColor !important;
|
|
|
15490
16580
|
@sapList_HighlightColor: @sapHighlightColor;
|
|
15491
16581
|
@sapContent_ElementHeight: 1.37em;
|
|
15492
16582
|
@sapContent_ElementHeight_PX: 22px;
|
|
16583
|
+
|
|
16584
|
+
// [Tags "!Protected"]
|
|
16585
|
+
// [Protected "!true"]
|
|
16586
|
+
@sapBreakpoint_S_Min: 0;
|
|
16587
|
+
|
|
16588
|
+
// [Tags "!Protected"]
|
|
16589
|
+
// [Protected "!true"]
|
|
16590
|
+
@sapBreakpoint_M_Min: 600px;
|
|
16591
|
+
|
|
16592
|
+
// [Tags "!Protected"]
|
|
16593
|
+
// [Protected "!true"]
|
|
16594
|
+
@sapBreakpoint_L_Min: 1024px;
|
|
16595
|
+
|
|
16596
|
+
// [Tags "!Protected"]
|
|
16597
|
+
// [Protected "!true"]
|
|
16598
|
+
@sapBreakpoint_XL_Min: 1440px;
|