@openui5/sap.ui.integration 1.124.2 → 1.126.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.reuse/dep5 +9 -4
- package/THIRDPARTY.txt +13 -6
- package/package.json +7 -7
- package/src/sap/ui/integration/.library +3 -3
- package/src/sap/ui/integration/ActionDefinition.js +1 -1
- package/src/sap/ui/integration/Designtime.js +1 -1
- package/src/sap/ui/integration/Extension.js +1 -1
- package/src/sap/ui/integration/Host.js +9 -1
- package/src/sap/ui/integration/cards/AdaptiveContent.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticalContent.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +136 -207
- package/src/sap/ui/integration/cards/BaseContent.js +2 -1
- package/src/sap/ui/integration/cards/BaseListContent.js +1 -1
- package/src/sap/ui/integration/cards/CalendarContent.js +1 -1
- package/src/sap/ui/integration/cards/ComponentContent.js +1 -1
- package/src/sap/ui/integration/cards/Footer.js +1 -1
- package/src/sap/ui/integration/cards/Header.js +1 -1
- package/src/sap/ui/integration/cards/ListContent.js +2 -7
- package/src/sap/ui/integration/cards/NumericHeader.js +7 -1
- package/src/sap/ui/integration/cards/ObjectContent.js +1 -1
- package/src/sap/ui/integration/cards/TableContent.js +2 -2
- package/src/sap/ui/integration/cards/TimelineContent.js +33 -3
- package/src/sap/ui/integration/cards/WebPageContent.js +39 -14
- package/src/sap/ui/integration/cards/WebPageContentRenderer.js +15 -3
- package/src/sap/ui/integration/cards/actions/CardActions.js +1 -1
- package/src/sap/ui/integration/cards/actions/ShowCardAction.js +4 -0
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
- package/src/sap/ui/integration/cards/filters/BaseFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/ComboBoxFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/FilterBar.js +1 -1
- package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +1 -1
- package/src/sap/ui/integration/cards/filters/SearchFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +1 -1
- package/src/sap/ui/integration/cards/list/MicrochartsResizeHelper.js +1 -1
- package/src/sap/ui/integration/controls/ActionsStrip.js +2 -1
- package/src/sap/ui/integration/controls/ActionsToolbar.js +9 -1
- package/src/sap/ui/integration/controls/BlockingMessage.js +35 -1
- package/src/sap/ui/integration/controls/ImageWithOverlay.js +1 -1
- package/src/sap/ui/integration/controls/LinkWithIcon.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +23 -6
- package/src/sap/ui/integration/controls/Microchart.js +3 -2
- package/src/sap/ui/integration/controls/MicrochartLegend.js +1 -1
- package/src/sap/ui/integration/controls/ObjectStatus.js +1 -1
- package/src/sap/ui/integration/controls/Paginator.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_sh.properties +17 -17
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor.js +18 -5
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/objectArrayEditor/ObjectArrayEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/EvalUtils.js +42 -0
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sh.properties +30 -30
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +1 -1
- package/src/sap/ui/integration/designtime/editor/Card.js +3 -1
- package/src/sap/ui/integration/designtime/editor/CardEditor.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +35 -1
- package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +27 -1
- package/src/sap/ui/integration/editor/Editor.js +8 -4
- package/src/sap/ui/integration/editor/EditorResourceBundles.js +1 -1
- package/src/sap/ui/integration/editor/Extension.js +1 -1
- package/src/sap/ui/integration/editor/Manifest.js +1 -1
- package/src/sap/ui/integration/editor/Settings.js +1 -1
- package/src/sap/ui/integration/editor/fields/BaseField.js +1 -1
- package/src/sap/ui/integration/editor/fields/BooleanField.js +1 -1
- package/src/sap/ui/integration/editor/fields/DateField.js +1 -1
- package/src/sap/ui/integration/editor/fields/DateTimeField.js +1 -1
- package/src/sap/ui/integration/editor/fields/DestinationField.js +1 -1
- package/src/sap/ui/integration/editor/fields/GroupField.js +1 -1
- package/src/sap/ui/integration/editor/fields/IntegerField.js +1 -1
- package/src/sap/ui/integration/editor/fields/NumberField.js +1 -1
- package/src/sap/ui/integration/editor/fields/ObjectField.js +1 -1
- package/src/sap/ui/integration/editor/fields/ObjectListField.js +1 -1
- package/src/sap/ui/integration/editor/fields/StringField.js +1 -1
- package/src/sap/ui/integration/editor/fields/StringListField.js +1 -1
- package/src/sap/ui/integration/editor/fields/fragment/Controller.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/ImageSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/VizBase.js +1 -1
- package/src/sap/ui/integration/extensions/OAuth3LO.js +2 -1
- package/src/sap/ui/integration/library.js +27 -2
- package/src/sap/ui/integration/messagebundle.properties +6 -0
- package/src/sap/ui/integration/messagebundle_ar.properties +5 -1
- package/src/sap/ui/integration/messagebundle_bg.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ca.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cnr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cs.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cy.properties +5 -1
- package/src/sap/ui/integration/messagebundle_da.properties +4 -0
- package/src/sap/ui/integration/messagebundle_de.properties +4 -0
- package/src/sap/ui/integration/messagebundle_el.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_GB.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es_MX.properties +4 -0
- package/src/sap/ui/integration/messagebundle_et.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr_CA.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hu.properties +4 -0
- package/src/sap/ui/integration/messagebundle_id.properties +4 -0
- package/src/sap/ui/integration/messagebundle_it.properties +4 -0
- package/src/sap/ui/integration/messagebundle_iw.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ja.properties +4 -0
- package/src/sap/ui/integration/messagebundle_kk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ko.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lv.properties +5 -1
- package/src/sap/ui/integration/messagebundle_mk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ms.properties +4 -0
- package/src/sap/ui/integration/messagebundle_nl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_no.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt_PT.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ro.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ru.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sh.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sv.properties +4 -0
- package/src/sap/ui/integration/messagebundle_th.properties +4 -0
- package/src/sap/ui/integration/messagebundle_tr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_uk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_vi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_CN.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_TW.properties +4 -0
- package/src/sap/ui/integration/model/ContextModel.js +1 -1
- package/src/sap/ui/integration/model/ObservableModel.js +1 -1
- package/src/sap/ui/integration/model/PagingModelListBinding.js +1 -1
- package/src/sap/ui/integration/schemas/sap-card.json +59 -28
- package/src/sap/ui/integration/themes/base/AnalyticsCloudContent.less +11 -85
- package/src/sap/ui/integration/themes/base/Card.less +43 -0
- package/src/sap/ui/integration/themes/base/CardVariants.less +246 -0
- package/src/sap/ui/integration/themes/base/library.source.less +1 -1
- package/src/sap/ui/integration/themes/sap_hcb/base_ActionsStrip.less +26 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_AdaptiveCard.less +8 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_AnalyticsCloudContent.less +21 -0
- package/src/sap/ui/integration/themes/sap_hcb/{ListContentItem.less → base_BlockingMessage.less} +7 -2
- package/src/sap/ui/integration/themes/sap_hcb/base_CalendarContent.less +247 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_Card.less +77 -0
- package/src/sap/ui/integration/themes/{base/CardTileVariant.less → sap_hcb/base_CardVariants.less} +84 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_CustomElementBase.less +14 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_CustomElementCard.less +10 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_Footer.less +10 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_ImageWithOverlay.less +69 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_LinkWithIcon.less +11 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_ListContentItem.less +164 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_Microchart.less +62 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_MicrochartLegend.less +52 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_ObjectContent.less +181 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_ObjectStatus.less +58 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_Paginator.less +125 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_WebPageContent.less +16 -0
- package/src/sap/ui/integration/themes/sap_hcb/library.source.less +31 -1
- package/src/sap/ui/integration/util/AnalyticsCloudHelper.js +103 -0
- package/src/sap/ui/integration/util/BaseFactory.js +1 -1
- package/src/sap/ui/integration/util/BindingHelper.js +1 -1
- package/src/sap/ui/integration/util/BindingResolver.js +1 -1
- package/src/sap/ui/integration/util/CardMerger.js +16 -1
- package/src/sap/ui/integration/util/CardObserver.js +1 -1
- package/src/sap/ui/integration/util/ComboBoxHelper.js +1 -1
- package/src/sap/ui/integration/util/ContentFactory.js +4 -1
- package/src/sap/ui/integration/util/CsrfTokenHandler.js +1 -1
- package/src/sap/ui/integration/util/DataProvider.js +1 -1
- package/src/sap/ui/integration/util/DataProviderFactory.js +1 -1
- package/src/sap/ui/integration/util/Destinations.js +1 -1
- package/src/sap/ui/integration/util/DisplayVariants.js +132 -0
- package/src/sap/ui/integration/util/ErrorHandler.js +1 -1
- package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
- package/src/sap/ui/integration/util/Form.js +1 -1
- package/src/sap/ui/integration/util/HeaderFactory.js +46 -3
- package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
- package/src/sap/ui/integration/util/LoadingProvider.js +1 -1
- package/src/sap/ui/integration/util/Manifest.js +1 -1
- package/src/sap/ui/integration/util/OAuth3LOHelper.js +1 -1
- package/src/sap/ui/integration/util/RequestDataProvider.js +1 -1
- package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
- package/src/sap/ui/integration/util/ServiceManager.js +1 -1
- package/src/sap/ui/integration/util/SkeletonCard.js +1 -1
- package/src/sap/ui/integration/util/Utils.js +22 -3
- package/src/sap/ui/integration/util/Validators.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +85 -10
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
/* =========================================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.controls/ListContentItem */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* =========================================================== */
|
|
5
|
+
|
|
6
|
+
@_sap_ui_integration_ListContentItem_BottomBorderHeight: 1px;
|
|
7
|
+
@_sap_ui_integration_ListContentItem_TextShadow: 0 0 @sapUiListTextColor;
|
|
8
|
+
|
|
9
|
+
.sapUiIntLCI {
|
|
10
|
+
padding: unset;
|
|
11
|
+
|
|
12
|
+
// apply the padding to the contents, to prevent clipping when buttons are hovered for example, due to overflow
|
|
13
|
+
.sapUiIntLCIContent > * {
|
|
14
|
+
padding: 0 1rem;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.sapUiIntLCIOneLine .sapUiIntLCIIconAndLines {
|
|
18
|
+
height: calc(2.75rem ~"-" @_sap_ui_integration_ListContentItem_BottomBorderHeight);
|
|
19
|
+
align-items: center
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.sapUiIntLCIOneLine.sapUiIntLCIWithActionsStrip .sapUiIntLCIIconAndLines {
|
|
23
|
+
height: 2.75rem;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.sapUiIntLCITwoLines .sapUiIntLCIIconAndLines,
|
|
27
|
+
&.sapUiIntLCIOneLine.sapUiIntLCIThumbnail .sapUiIntLCIIconAndLines {
|
|
28
|
+
height: calc(5rem ~"-" @_sap_ui_integration_ListContentItem_BottomBorderHeight);
|
|
29
|
+
align-items: center
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&.sapUiIntLCITwoLines.sapUiIntLCIWithActionsStrip .sapUiIntLCIIconAndLines,
|
|
33
|
+
&.sapUiIntLCIOneLine.sapUiIntLCIThumbnail.sapUiIntLCIWithActionsStrip .sapUiIntLCIIconAndLines {
|
|
34
|
+
height: 5rem;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&.sapUiIntLCIMultipleLines {
|
|
38
|
+
padding-top: 1rem;
|
|
39
|
+
padding-bottom: calc(1rem ~"-" @_sap_ui_integration_ListContentItem_BottomBorderHeight);
|
|
40
|
+
|
|
41
|
+
.sapUiIntActionsStrip {
|
|
42
|
+
margin-top: 0.5rem;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&.sapUiIntLCITwoLines,
|
|
47
|
+
&.sapUiIntLCIMultipleLines {
|
|
48
|
+
.sapUiIntLCITitleWrapper {
|
|
49
|
+
margin-bottom: 0.25rem;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
&.sapUiIntLCIWithActionsStrip {
|
|
55
|
+
padding-bottom: calc(0.5rem ~"-" @_sap_ui_integration_ListContentItem_BottomBorderHeight);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.sapUiIntLCIIconAndLines {
|
|
59
|
+
display: flex;
|
|
60
|
+
|
|
61
|
+
> .sapFCardIcon {
|
|
62
|
+
flex-shrink: 0;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.sapUiIntLCILines {
|
|
66
|
+
flex: 1;
|
|
67
|
+
overflow: hidden;
|
|
68
|
+
display: flex;
|
|
69
|
+
flex-direction: column;
|
|
70
|
+
row-gap: 0.5rem;
|
|
71
|
+
justify-content: center;
|
|
72
|
+
|
|
73
|
+
.sapUiIntLCIAttrRow {
|
|
74
|
+
display: flex;
|
|
75
|
+
align-items: center;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.sapUiIntLCIAttrSecondCell {
|
|
79
|
+
justify-content: flex-end;
|
|
80
|
+
|
|
81
|
+
.sapMObjStatus {
|
|
82
|
+
text-align: end;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.sapUiIntLCIAttrCell {
|
|
87
|
+
flex: 1;
|
|
88
|
+
display: flex;
|
|
89
|
+
align-items: center;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.sapMObjStatusNone .sapMObjStatusText {
|
|
93
|
+
color: @sapUiContentLabelColor;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.sapUiIntLCITitleWrapper,
|
|
99
|
+
.sapUiIntLCIDescriptionWrapper {
|
|
100
|
+
display: flex;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
&.sapMLIBShowSeparator:last-child {
|
|
104
|
+
border-bottom: 1px solid transparent;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.sapUiIntLCITitle {
|
|
109
|
+
color: @sapUiListTextColor;
|
|
110
|
+
text-shadow: @_sap_ui_integration_ListContentItem_TextShadow;
|
|
111
|
+
font-size: @sapMFontMediumSize;
|
|
112
|
+
flex: 1;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.sapUiIntLCIDescription {
|
|
116
|
+
color: @sapUiContentLabelColor;
|
|
117
|
+
font-size: @sapMFontMediumSize;
|
|
118
|
+
flex: 1;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.sapUiIntLCIInfo {
|
|
122
|
+
display: flex;
|
|
123
|
+
font-size: @sapMFontMediumSize;
|
|
124
|
+
text-align: right;
|
|
125
|
+
margin-left: 1rem;
|
|
126
|
+
max-width: 40%;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.sapUiIntLCITitle,
|
|
130
|
+
.sapUiIntLCIDescription,
|
|
131
|
+
.sapUiIntLCIInfo {
|
|
132
|
+
line-height: 1rem;
|
|
133
|
+
font-family: @sapUiFontFamily;
|
|
134
|
+
white-space: nowrap;
|
|
135
|
+
overflow: hidden;
|
|
136
|
+
text-overflow: ellipsis;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.sapUiIntLCIContent .sapUiIntLCIInfo {
|
|
140
|
+
white-space: normal;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// Interactive states
|
|
144
|
+
.sapUiIntLCI.sapMLIBActive {
|
|
145
|
+
.sapFCardIcon.sapFAvatar .sapUiIcon,
|
|
146
|
+
.sapUiIntLCIInfo {
|
|
147
|
+
color: @sapUiListActiveTextColor;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// Styles for compact mode only
|
|
152
|
+
.sapUiSizeCompact .sapUiIntLCI {
|
|
153
|
+
&.sapUiIntLCIOneLine .sapUiIntLCIIconAndLines {
|
|
154
|
+
height: calc(2rem ~"-" @_sap_ui_integration_ListContentItem_BottomBorderHeight);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
&.sapUiIntLCIOneLine.sapUiIntLCIWithActionsStrip .sapUiIntLCIIconAndLines {
|
|
158
|
+
height: 2rem;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
&.sapUiIntLCIOneLine.sapUiIntLCIThumbnail .sapUiIntLCIIconAndLines {
|
|
162
|
+
height: 5rem;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/* ====================================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.controls/Microchart */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ====================================================== */
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
.sapUiIntMicrochartValue {
|
|
8
|
+
&Neutral {
|
|
9
|
+
color: @sapUiNeutralText;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&Good {
|
|
13
|
+
color: @sapUiPositiveText;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&Error {
|
|
17
|
+
color: @sapUiNegativeText;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&Critical {
|
|
21
|
+
color: @sapUiCriticalText;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.sapUiIntMicrochartChartWrapper {
|
|
26
|
+
min-height: 1rem;
|
|
27
|
+
max-height: 3rem;
|
|
28
|
+
display: flex;
|
|
29
|
+
align-items: center;
|
|
30
|
+
justify-content: space-between;
|
|
31
|
+
|
|
32
|
+
.sapUiIntMicrochartChart {
|
|
33
|
+
flex-grow: 1;
|
|
34
|
+
.sapUiIntMicrochartChartInner {
|
|
35
|
+
height: 100%;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.sapUiIntMicrochartInHeader.sapUiIntMicrochartChartWrapper {
|
|
41
|
+
flex-grow: 1;
|
|
42
|
+
margin-top: 0.5rem;
|
|
43
|
+
max-width: 8.5rem;
|
|
44
|
+
min-width: 5rem;
|
|
45
|
+
|
|
46
|
+
&:has(.sapUiIntMicrochartSizeS) {
|
|
47
|
+
max-height: 3.5rem;
|
|
48
|
+
margin-top: 0.25rem;
|
|
49
|
+
max-width: 8.25rem;
|
|
50
|
+
|
|
51
|
+
&:has(.sapMSLIInfo) {
|
|
52
|
+
max-width: 13rem;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
.sapUiIntMicrochartSizeS {
|
|
56
|
+
height: 3.5rem;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&:only-child {
|
|
60
|
+
max-width: 100%;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/* ============================================================ */
|
|
2
|
+
/* CSS for control sap.ui.integration.controls/MicrochartLegend */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ============================================================ */
|
|
5
|
+
|
|
6
|
+
.sapUiIntMicrochartLegend {
|
|
7
|
+
padding-top: 0.5rem;
|
|
8
|
+
padding-left: 1rem;
|
|
9
|
+
|
|
10
|
+
.sapUiIntMicrochartLegendItem {
|
|
11
|
+
display: inline-flex;
|
|
12
|
+
margin-right: 3rem;
|
|
13
|
+
margin-bottom: 0.5rem;
|
|
14
|
+
max-width: 100%;
|
|
15
|
+
|
|
16
|
+
// color segment
|
|
17
|
+
:first-child {
|
|
18
|
+
flex-shrink: 0;
|
|
19
|
+
width: 0.75rem;
|
|
20
|
+
height: 0.75rem;
|
|
21
|
+
margin-right: 0.5rem;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// title
|
|
25
|
+
:nth-child(2) {
|
|
26
|
+
height: 0.75rem;
|
|
27
|
+
font-size: 0.75rem;
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
white-space: nowrap;
|
|
30
|
+
text-overflow: ellipsis;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.sapUiIntMicrochartLegendItem {
|
|
37
|
+
&Neutral {
|
|
38
|
+
background: @sapUiChartPaletteSemanticNeutral;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&Good {
|
|
42
|
+
background: @sapUiChartPaletteSemanticGood;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&Error {
|
|
46
|
+
background: @sapUiChartPaletteSemanticBad;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&Critical {
|
|
50
|
+
background: @sapUiChartPaletteSemanticCritical;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
/* ====================================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.cards/ObjectContent */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ====================================================== */
|
|
5
|
+
|
|
6
|
+
.sapFCardObjectContent {
|
|
7
|
+
padding: 1rem;
|
|
8
|
+
|
|
9
|
+
&.sapFCardObjectContentWithOverlay {
|
|
10
|
+
.sapMFlexBox.sapUiIntImgWithOverlayLayout,
|
|
11
|
+
.sapMFlexBox.sapFCardObjectGroup:has( > .sapUiIntImageWithOverlay:only-child ),
|
|
12
|
+
> .sapMFlexBox,
|
|
13
|
+
.sapUiIntImageWithOverlay:only-child {
|
|
14
|
+
height: 100%;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.sapUiIntCardWithFooter .sapFCardObjectContent {
|
|
20
|
+
padding-bottom: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.sapFCardObjectGroup {
|
|
24
|
+
|
|
25
|
+
.sapFCardObjectItemTitle {
|
|
26
|
+
margin-bottom: 0.5rem;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
> .sapFCardObjectItemLabel {
|
|
30
|
+
margin-top: 1rem;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:not(.sapFCardObjectGroupLastInColumn) {
|
|
34
|
+
padding-bottom: 1.75rem;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&:not(.sapFCardObjectGroupWithTitle) {
|
|
38
|
+
|
|
39
|
+
/* Don't apply margin to the first label when there is no title */
|
|
40
|
+
> .sapFCardObjectItemLabel {
|
|
41
|
+
margin-top: 0;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/* Apply margin to the rest of the labels */
|
|
45
|
+
> .sapFCardObjectItemLabel ~ .sapFCardObjectItemLabel {
|
|
46
|
+
margin-top: 1rem;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// Don't add margin top to the value if it's the first element in the group (not labeled)
|
|
51
|
+
.sapFCardObjectItemValue:not(:first-child) {
|
|
52
|
+
margin-top: 0.25rem;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.sapFCardObjectItemPairContainer {
|
|
56
|
+
min-width: 0; // prevent overflow of the flex container
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.sapFCardObjectItemAvatar {
|
|
60
|
+
margin-right: 0.5rem;
|
|
61
|
+
flex-shrink: 0;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
// Rating Indicator
|
|
65
|
+
.sapMRI {
|
|
66
|
+
margin-bottom: 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// Image
|
|
70
|
+
|
|
71
|
+
> .sapFCardObjectImage:not(:first-child) {
|
|
72
|
+
margin-top: 1rem;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.sapUiIntImageWithOverlay.sapFCardObjectImageFullWidth:first-child,
|
|
76
|
+
.sapMImg.sapFCardObjectImageFullWidth:first-child {
|
|
77
|
+
top: -16px;
|
|
78
|
+
margin-top: 0;
|
|
79
|
+
height: ~"calc(100% + 16px)";
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.sapUiIntImageWithOverlay.sapFCardObjectImageFullWidth:last-child,
|
|
83
|
+
.sapMImg.sapFCardObjectImageFullWidth:last-child {
|
|
84
|
+
margin-bottom: -16px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.sapUiIntImageWithOverlay.sapFCardObjectImageFullWidth:only-child,
|
|
88
|
+
.sapMImg.sapFCardObjectImageFullWidth:only-child {
|
|
89
|
+
margin-bottom: -32px;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.sapUiIntImageWithOverlay.sapFCardObjectImageFullWidth,
|
|
93
|
+
.sapMImg.sapFCardObjectImageFullWidth {
|
|
94
|
+
width: ~"calc(100% + 32px)";
|
|
95
|
+
left: -16px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.sapFCardObjectImage {
|
|
99
|
+
position: relative;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.sapFCardObjectSpaceBetweenGroup {
|
|
104
|
+
margin-right: 2rem;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.sapFCard .sapFCardContent {
|
|
108
|
+
.sapFCardObjectContent .sapUiAFLayout .sapUiAFLayoutItem.sapFCardInvisibleContent {
|
|
109
|
+
display: none;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// Removing top space of NumericIndicators
|
|
114
|
+
.sapUiIntOCNumericIndicators {
|
|
115
|
+
// size L
|
|
116
|
+
&:not(.sapMTileSmallPhone) {
|
|
117
|
+
// number
|
|
118
|
+
.sapMNCValue >:first-child {
|
|
119
|
+
padding-top: 0;
|
|
120
|
+
height: 2.5rem;
|
|
121
|
+
line-height: 2rem;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// trend and unit
|
|
125
|
+
.sapMNCValue :nth-child(2) {
|
|
126
|
+
padding-top: 0;
|
|
127
|
+
height: 2rem;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// size S
|
|
132
|
+
&.sapMTileSmallPhone {
|
|
133
|
+
.sapMNC {
|
|
134
|
+
width: auto;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// number
|
|
138
|
+
.sapMNCValue :first-child {
|
|
139
|
+
padding-top: 0.25rem;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// trend and unit
|
|
143
|
+
.sapMNCValue .sapMNCIndScale {
|
|
144
|
+
padding-top: 0px;
|
|
145
|
+
|
|
146
|
+
.sapMNCScale,
|
|
147
|
+
.sapMNCIndIcon {
|
|
148
|
+
padding-top: 0;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.sapUiIntOCNumericIndicators .sapUiIntOCNumericIndicatorsDetails {
|
|
155
|
+
color: @sapUiTileTextColor;
|
|
156
|
+
height: 1rem;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.sapFCardObjectContent {
|
|
160
|
+
|
|
161
|
+
.sapFAvatarGroupInactive {
|
|
162
|
+
pointer-events: none;
|
|
163
|
+
|
|
164
|
+
&.sapFAvatarGroupIndividual .sapFAvatarGroupItem {
|
|
165
|
+
pointer-events: none;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.sapFAvatarGroupMoreButton.sapMBtnDisabled {
|
|
170
|
+
cursor: default;
|
|
171
|
+
opacity: 1;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.sapUiIntCardObjectButtonGroup {
|
|
175
|
+
padding-left: 0;
|
|
176
|
+
|
|
177
|
+
.sapMBarChild:first-child {
|
|
178
|
+
margin-left: 0;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/* ============================================================ */
|
|
2
|
+
/* CSS for control sap.ui.integration.controls/ObjectStatus */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ============================================================ */
|
|
5
|
+
|
|
6
|
+
.sapUiIntObjStatus .sapMObjStatusWrapper {
|
|
7
|
+
display: inline;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.sapUiIntCard .sapMObjStatus {
|
|
11
|
+
&.sapMObjStatusShowIcon {
|
|
12
|
+
&::before {
|
|
13
|
+
display: inline;
|
|
14
|
+
font-size: 1rem;
|
|
15
|
+
line-height: 1;
|
|
16
|
+
font-family: 'SAP-icons';
|
|
17
|
+
padding-inline-end: 0.25rem;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.sapMObjStatusText {
|
|
21
|
+
display: inline;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&.sapMObjStatusError::before {
|
|
25
|
+
color: @sapUiNegativeElement;
|
|
26
|
+
content: "\e1ec";
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
&.sapMObjStatusWarning::before {
|
|
30
|
+
color: @sapUiCriticalElement;
|
|
31
|
+
content: "\e053";
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&.sapMObjStatusSuccess::before {
|
|
35
|
+
color: @sapUiPositiveElement;
|
|
36
|
+
content: "\e1c1";
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.sapMObjStatusInformation::before {
|
|
40
|
+
color: @sapUiInformativeElement;
|
|
41
|
+
content: "\e289";
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&:not(.sapMObjStatusShowCustomIcon) .sapMObjStatusIcon {
|
|
46
|
+
display: none
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&.sapMObjStatusShowCustomIcon {
|
|
50
|
+
.sapMObjStatusIcon {
|
|
51
|
+
display: inline;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.sapMObjStatusText {
|
|
55
|
+
display: inline;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
/* ====================================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.controls/Paginator */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ====================================================== */
|
|
5
|
+
|
|
6
|
+
@_sap_ui_integration_Paginator_IconOutlineOffset: -3px;
|
|
7
|
+
@_sap_ui_integration_Paginator_BulletActiveBackground: @sapUiSelected;
|
|
8
|
+
@_sap_ui_integration_Paginator_BulletActiveBorder: @_sap_ui_integration_Paginator_BulletActiveBackground;
|
|
9
|
+
|
|
10
|
+
@_sap_ui_integration_Paginator_BulletInactiveBackground: @sapUiContentNonInteractiveIconColor;
|
|
11
|
+
@_sap_ui_integration_Paginator_BulletInactiveBorderColor: @sapUiContentNonInteractiveIconColor;
|
|
12
|
+
@_sap_ui_integration_Paginator_BulletInactiveHoverBackground: none;
|
|
13
|
+
|
|
14
|
+
@_sap_ui_integration_Paginator_BulletInactiveWidth: 0.25rem;
|
|
15
|
+
@_sap_ui_integration_Paginator_BulletInactivePadding: 0.375rem;
|
|
16
|
+
|
|
17
|
+
.sapUiIntPaginator {
|
|
18
|
+
.sapMCrslControls {
|
|
19
|
+
.sapMCrslControlsContainer {
|
|
20
|
+
margin: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.sapMCrslPrev,
|
|
24
|
+
.sapMCrslNext {
|
|
25
|
+
background: none;
|
|
26
|
+
border: none;
|
|
27
|
+
transition: opacity 0.25s ease-out;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.sapUiIcon {
|
|
31
|
+
pointer-events: auto;
|
|
32
|
+
border-radius: 50%;
|
|
33
|
+
background-color: @sapUiButtonBackground;
|
|
34
|
+
border: 1px solid @sapUiButtonBorderColor;
|
|
35
|
+
|
|
36
|
+
outline-offset: @_sap_ui_integration_Paginator_IconOutlineOffset;
|
|
37
|
+
|
|
38
|
+
&:focus {
|
|
39
|
+
outline: @sapUiContentFocusWidth @sapUiContentFocusStyle @sapUiContentFocusColor;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.sapUiIcon:hover {
|
|
44
|
+
background: @sapUiButtonHoverBackground;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.sapUiIcon:active {
|
|
48
|
+
background: @sapUiButtonActiveBackground;
|
|
49
|
+
color: @sapUiButtonActiveTextColor;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.sap-desktop & {
|
|
53
|
+
.sapMCrslPrev,
|
|
54
|
+
.sapMCrslNext {
|
|
55
|
+
opacity: 0;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.sap-desktop &:hover,
|
|
60
|
+
.sap-desktop &:focus-within {
|
|
61
|
+
.sapMCrslPrev,
|
|
62
|
+
.sapMCrslNext {
|
|
63
|
+
opacity: 1;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.sapMCrslBulleted > span {
|
|
68
|
+
transition: margin 0.2s, padding 0.2s, width 0.2s, height 0.2s;
|
|
69
|
+
content: "";
|
|
70
|
+
box-sizing: border-box;
|
|
71
|
+
display: block;
|
|
72
|
+
width: @_sap_ui_integration_Paginator_BulletInactiveWidth;
|
|
73
|
+
height: @_sap_ui_integration_Paginator_BulletInactiveWidth;
|
|
74
|
+
border-radius: 50%;
|
|
75
|
+
background-color: @_sap_ui_integration_Paginator_BulletInactiveBackground;
|
|
76
|
+
border: 1px solid @_sap_ui_integration_Paginator_BulletInactiveBorderColor;
|
|
77
|
+
|
|
78
|
+
&.sapMCrslActive {
|
|
79
|
+
padding: 0.1875rem;
|
|
80
|
+
width: 0.5rem;
|
|
81
|
+
height: 0.5rem;
|
|
82
|
+
background-color: @_sap_ui_integration_Paginator_BulletActiveBackground;
|
|
83
|
+
border: 1px solid @_sap_ui_integration_Paginator_BulletActiveBorder;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&:not(.sapMCrslActive) {
|
|
87
|
+
cursor: pointer;
|
|
88
|
+
|
|
89
|
+
&:hover {
|
|
90
|
+
padding: 0.1875rem;
|
|
91
|
+
margin: 0 0.25rem;
|
|
92
|
+
background-color: @_sap_ui_integration_Paginator_BulletInactiveHoverBackground;
|
|
93
|
+
width: 0.5rem;
|
|
94
|
+
height: 0.5rem;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.sapUiIntCard {
|
|
102
|
+
.sapFCardContentCloned {
|
|
103
|
+
position: absolute;
|
|
104
|
+
left: 0;
|
|
105
|
+
right: 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.sapFCardContentTransition {
|
|
109
|
+
transition: transform 0.4s linear;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.sapFCardContentOriginal,
|
|
113
|
+
.sapFCardContentCloned.sapFCardContentTransition.sapFCardContentReverseAnim {
|
|
114
|
+
transform: translate(0, 100%);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.sapFCardContentOriginal.sapFCardContentReverseAnim,
|
|
118
|
+
.sapFCardContentCloned.sapFCardContentTransition {
|
|
119
|
+
transform: translate(0, -100%);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.sapFCardContentOriginal.sapFCardContentTransition {
|
|
123
|
+
transform: translate(0, 0);
|
|
124
|
+
}
|
|
125
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/* ======================================================= */
|
|
2
|
+
/* CSS for control sap.ui.integration.cards/WebPageContent */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ======================================================= */
|
|
5
|
+
|
|
6
|
+
.sapFCardWebPageContent {
|
|
7
|
+
padding: 1px;
|
|
8
|
+
|
|
9
|
+
.sapUiIntWPCFrame {
|
|
10
|
+
display: block;
|
|
11
|
+
box-sizing: border-box;
|
|
12
|
+
border: none;
|
|
13
|
+
width: 100%;
|
|
14
|
+
min-height: 100%;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -4,5 +4,35 @@
|
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
/* ============================================================================== */
|
|
8
|
+
/* Due to deprecation of sap_hcb with SAPUI5 version 1.46 the library.source.less */
|
|
9
|
+
/* file of base is resolved: Imports to base.less and global.less of */
|
|
10
|
+
/* base are added to this library.source.less file (sap_hcb) and the */
|
|
11
|
+
/* respective control css files of base are added to the sap_hcb theme folder. */
|
|
12
|
+
/* This decoupling of the base theme is introduced with SAPUI5 version 1.126. */
|
|
13
|
+
/* ============================================================================== */
|
|
14
|
+
|
|
15
|
+
@import "../../../core/themes/base/base.less";
|
|
16
|
+
@import "../../../core/themes/base/global.less";
|
|
17
|
+
|
|
18
|
+
@import "base_ActionsStrip.less";
|
|
19
|
+
@import "base_AdaptiveCard.less";
|
|
20
|
+
@import "base_AnalyticsCloudContent.less";
|
|
21
|
+
@import "base_BlockingMessage.less";
|
|
22
|
+
@import "base_CalendarContent.less";
|
|
23
|
+
@import "base_Card.less";
|
|
24
|
+
@import "base_CardVariants.less";
|
|
25
|
+
@import "base_CustomElementBase.less";
|
|
26
|
+
@import "base_CustomElementCard.less";
|
|
27
|
+
@import "base_Paginator.less";
|
|
28
|
+
@import "base_Footer.less";
|
|
29
|
+
@import "base_ImageWithOverlay.less";
|
|
30
|
+
@import "base_LinkWithIcon.less";
|
|
31
|
+
@import "base_ListContentItem.less";
|
|
32
|
+
@import "base_Microchart.less";
|
|
33
|
+
@import "base_MicrochartLegend.less";
|
|
34
|
+
@import "base_ObjectContent.less";
|
|
35
|
+
@import "base_ObjectStatus.less";
|
|
36
|
+
@import "base_WebPageContent.less";
|
|
37
|
+
|
|
8
38
|
@import "../../../../../sap/ui/core/themes/sap_hcb/global.less";
|