@openui5/sap.ui.integration 1.125.0 → 1.126.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/.reuse/dep5 +4 -4
- package/THIRDPARTY.txt +6 -6
- package/package.json +7 -7
- package/src/sap/ui/integration/.library +1 -1
- 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 +1 -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 +111 -35
- package/src/sap/ui/integration/cards/BaseContent.js +1 -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 +1 -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/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/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 +6 -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 +1 -1
- package/src/sap/ui/integration/library.js +27 -2
- 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 +57 -1
- package/src/sap/ui/integration/themes/base/AnalyticsCloudContent.less +4 -5
- package/src/sap/ui/integration/themes/base/Card.less +31 -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 +2 -2
- 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 +14 -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 +1 -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 +1 -1
- package/src/sap/ui/integration/util/Validators.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +81 -9
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
/* =========================================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.controls/CalendarContent */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* =========================================================== */
|
|
5
|
+
|
|
6
|
+
.sapFCardCalendarContent .sapFCalCard {
|
|
7
|
+
padding: 1rem;
|
|
8
|
+
.sapUiCal:not(.sapUiCalInt) {
|
|
9
|
+
width: 100%;
|
|
10
|
+
padding: 0;
|
|
11
|
+
min-height: 16.5rem;
|
|
12
|
+
min-width: 16.5rem;
|
|
13
|
+
}
|
|
14
|
+
.sapUiCalMonthPicker,
|
|
15
|
+
.sapUiCalYearPicker {
|
|
16
|
+
left: 0;
|
|
17
|
+
margin-left: 0;
|
|
18
|
+
}
|
|
19
|
+
.sapUiCal .sapUiCalMonthView {
|
|
20
|
+
padding: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.sapUiCalendarAppContainer {
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
26
|
+
justify-content: flex-start;
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
padding-right: 0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.sapFCalCardLineSeparator {
|
|
32
|
+
border-top: 0.0625rem solid @sapUiGroupContentBorderColor;
|
|
33
|
+
margin-bottom: 1rem;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.sapUiCalendarAppContainer > .sapUiCalendarAppContainerLeft {
|
|
37
|
+
padding: 0;
|
|
38
|
+
width: 15%;
|
|
39
|
+
margin: 0 0.75rem 0 0;
|
|
40
|
+
.sapUiCalendarAppStart {
|
|
41
|
+
font-size: @sapMFontMediumSize;
|
|
42
|
+
color: @sapUiBaseText;
|
|
43
|
+
text-align: right;
|
|
44
|
+
}
|
|
45
|
+
.sapUiCalendarAppEnd {
|
|
46
|
+
font-size: @sapMFontSmallSize;
|
|
47
|
+
color: @sapUiContentLabelColor;
|
|
48
|
+
margin-top: 0.25rem;
|
|
49
|
+
text-align: right;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
.sapUiCalendarAppContainer > .sapUiCalendarAppContainerRight {
|
|
53
|
+
flex: 1 1 auto;
|
|
54
|
+
margin-right: 0;
|
|
55
|
+
width: 70%;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.sapFCalCardRightSide {
|
|
59
|
+
display: flex;
|
|
60
|
+
flex-direction: column;
|
|
61
|
+
.sapFCalCardAppList{
|
|
62
|
+
width: 100%
|
|
63
|
+
}
|
|
64
|
+
.sapMBtn {
|
|
65
|
+
align-self: center;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.sapUiCalendarAppContainer.sapUiCalendarAppCurrent > .sapUiCalendarAppContainerRight {
|
|
70
|
+
position: relative;
|
|
71
|
+
|
|
72
|
+
&::after {
|
|
73
|
+
content: '';
|
|
74
|
+
display: block;
|
|
75
|
+
position: absolute;
|
|
76
|
+
border: 2px solid @sapUiLegendCurrentDateTime;
|
|
77
|
+
border-radius: 4px;
|
|
78
|
+
top: -4px;
|
|
79
|
+
left: -4px;
|
|
80
|
+
bottom: -4px;
|
|
81
|
+
right: -4px;
|
|
82
|
+
pointer-events: none;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.sapUiCalendarAppContainer > .sapUiCalendarAppContainerRight > .sapUiCalendarApp {
|
|
87
|
+
margin: 0;
|
|
88
|
+
}
|
|
89
|
+
.sapUiCalLegMoreText {
|
|
90
|
+
font-size: @sapMFontMediumSize;
|
|
91
|
+
color: @sapUiLinkActive;
|
|
92
|
+
margin-left: 0.25rem;
|
|
93
|
+
&>.sapUiUnifiedLegendSquare {
|
|
94
|
+
display: none;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.sapFCalCardNoItemsText {
|
|
99
|
+
line-height: 2rem;
|
|
100
|
+
text-align: center;
|
|
101
|
+
font-size: 0.9rem;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.sapUiUnifiedLegend {
|
|
105
|
+
padding: 1rem 0.5rem;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.sapUiCalendarAppContainer > .sapUiCalendarAppContainerRight > .sapUiCalendarApp:not(.sapUiCalendarAppDisabled):active {
|
|
109
|
+
.sapUiCalendarAppCont {
|
|
110
|
+
.sapUiCalendarAppIcon:before,
|
|
111
|
+
.sapUiCalendarAppTitleWrapper .sapUiCalendarAppTitle,
|
|
112
|
+
.sapUiCalendarAppTitleWrapper .sapUiCalendarAppText{
|
|
113
|
+
color: @sapUiContentSelectedTextColor;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.sapUiCalendarApp.sapUiCalendarAppDisabled.sapUiCalendarAppSel,
|
|
119
|
+
.sapUiCalendarApp.sapUiCalendarAppDisabled:active,
|
|
120
|
+
.sapUiCalendarApp.sapUiCalendarAppDisabled.sapUiCalendarAppSel:active{
|
|
121
|
+
color: transparent;
|
|
122
|
+
background-color: transparent;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.sapUiCalendarApp.sapUiCalendarAppDisabled {
|
|
126
|
+
cursor: auto;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.sapUiSizeCompact {
|
|
131
|
+
.sapFCardCalendarContent .sapFCalCard {
|
|
132
|
+
.sapUiCalMonthPicker,
|
|
133
|
+
.sapUiCalYearPicker {
|
|
134
|
+
left: 0;
|
|
135
|
+
margin-left: 0;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.sapFCalCard .sapMTBStandard {
|
|
141
|
+
border-bottom: none;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.sapFCalCard .sapUiCalendarAppCont {
|
|
145
|
+
height: 100%;
|
|
146
|
+
display: flex;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
// center vertically if it is title-only or text-only appointment
|
|
150
|
+
.sapFCalCard .sapUiCalendarAppOneLine {
|
|
151
|
+
.sapUiCalendarAppIcon,
|
|
152
|
+
.sapUiCalendarAppTitle,
|
|
153
|
+
.sapUiCalendarAppText {
|
|
154
|
+
height: 3rem;
|
|
155
|
+
line-height: 3rem;
|
|
156
|
+
padding-top: 0;
|
|
157
|
+
padding-bottom: 0;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.sapUiCalendarAppIcon {
|
|
161
|
+
top: 0;
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
/* ======================================= */
|
|
166
|
+
/* Two columns */
|
|
167
|
+
/* ======================================= */
|
|
168
|
+
|
|
169
|
+
.sapFCardCalendarContent.sapMPCInCardTwoColumns {
|
|
170
|
+
.sapFCalCardLayout {
|
|
171
|
+
display: flex;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.sapFCalCardLineSeparator {
|
|
175
|
+
display: none;
|
|
176
|
+
}
|
|
177
|
+
.sapFCalCardLeftSide,
|
|
178
|
+
.sapFCalCardRightSide {
|
|
179
|
+
width: 50%;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.sapFCalCardRightSide {
|
|
183
|
+
display: flex;
|
|
184
|
+
flex-direction: column;
|
|
185
|
+
.sapFCalCardAppList{
|
|
186
|
+
width: 100%
|
|
187
|
+
}
|
|
188
|
+
.sapMBtn {
|
|
189
|
+
align-self: center;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// visualize the start and end on top of the appointment content
|
|
194
|
+
.sapUiCalendarAppContainer {
|
|
195
|
+
flex-direction: column;
|
|
196
|
+
|
|
197
|
+
.sapUiCalendarAppContainerLeft {
|
|
198
|
+
width: 100%;
|
|
199
|
+
margin: 0;
|
|
200
|
+
padding: 0 0 0.0625rem 0;
|
|
201
|
+
|
|
202
|
+
.sapUiCalendarAppStart,
|
|
203
|
+
.sapUiCalendarAppEnd {
|
|
204
|
+
display: inline-block;
|
|
205
|
+
margin: 0;
|
|
206
|
+
padding: 0;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.sapUiCalendarAppEnd {
|
|
210
|
+
margin-left: 0.25rem;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.sapUiCalendarAppContainerRight {
|
|
215
|
+
width: 100%;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
// adjust calendar card on small screen sizes (phone) or higner zoom factor
|
|
221
|
+
html.sapUiMedia-Std-Phone,
|
|
222
|
+
html.sapUiMedia-StdExt-Phone {
|
|
223
|
+
.sapFCardCalendarContent .sapFCalCard {
|
|
224
|
+
padding: 1rem 0.375rem;
|
|
225
|
+
.sapMIBar.sapMTB .sapMBarChild ~ .sapMBarChild {
|
|
226
|
+
margin-left: 0.125rem;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
html.sapUiMedia-Std-Tablet,
|
|
232
|
+
html.sapUiMedia-StdExt-Tablet {
|
|
233
|
+
.sapFCardCalendarContent .sapFCalCard {
|
|
234
|
+
.sapMIBar.sapMTB .sapMBarChild ~ .sapMBarChild {
|
|
235
|
+
margin-left: 0.25rem;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.sapFCardCalendarContent .sapFCalCard {
|
|
241
|
+
.sapUiCalMonthPicker,
|
|
242
|
+
.sapUiCalYearPicker {
|
|
243
|
+
width: auto;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/* =============================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.widgets/Card */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ================================================*/
|
|
5
|
+
|
|
6
|
+
.sapUiIntCard {
|
|
7
|
+
min-height: 5rem;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.sapUiIntCardDialog {
|
|
11
|
+
.sapMDialogSection,
|
|
12
|
+
.sapMDialogScroll,
|
|
13
|
+
.sapMDialogScrollCont,
|
|
14
|
+
.sapUiIntCard {
|
|
15
|
+
/* allows scrolling inside the card content instead of dialog content */
|
|
16
|
+
max-height: inherit;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.sapUiIntCard {
|
|
20
|
+
border-radius: @sapUiElementBorderCornerRadius;
|
|
21
|
+
|
|
22
|
+
.sapFCardHeader {
|
|
23
|
+
box-shadow: @sapUiContentHeaderShadow;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:has(.sapFCardFilterBar) .sapFCardHeader {
|
|
27
|
+
box-shadow: unset;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.sapFCardFilterBar {
|
|
31
|
+
border-bottom: none;
|
|
32
|
+
box-shadow: @sapUiContentHeaderShadow;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.sapFCardContent {
|
|
36
|
+
overflow: auto;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.sapFCardObjectContent>.sapMVBox {
|
|
40
|
+
padding-bottom: 1rem;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.sapFCardFooter {
|
|
44
|
+
border-top: 1px solid @sapUiPageFooterBorderColor;
|
|
45
|
+
padding-top: 0.25rem;
|
|
46
|
+
padding-bottom: 0.25rem;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.sapMDialog:not(.sapUiResponsiveContentPadding):not(.sapUiContentPadding) .sapMDialogScroll {
|
|
51
|
+
padding-bottom: 0px;
|
|
52
|
+
padding-top: 0px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.sapFCard.sapUiIntCardWithFooter .sapFCardContent {
|
|
57
|
+
border-bottom-left-radius: 0;
|
|
58
|
+
border-bottom-right-radius: 0;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.sapFCard.sapUiIntCardStandard .sapFCardHeaderBanner {
|
|
62
|
+
/* the banner feature is not yet available for standard card variant */
|
|
63
|
+
display: none!important;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.sapUiIntCardCustomImage {
|
|
67
|
+
background-size: contain;
|
|
68
|
+
background-repeat: no-repeat;
|
|
69
|
+
background-position: center center;
|
|
70
|
+
position: absolute;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.sapMIllustratedMessageMainContent:has(.sapUiIntCardCustomImage) svg {
|
|
74
|
+
visibility: hidden;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
|
package/src/sap/ui/integration/themes/{base/CardTileVariant.less → sap_hcb/base_CardVariants.less}
RENAMED
|
@@ -145,9 +145,93 @@
|
|
|
145
145
|
.sapFCardHeader .sapFCardNumericIndicatorsSide {
|
|
146
146
|
display: none;
|
|
147
147
|
}
|
|
148
|
+
.sapFCardHeader .sapUiIntMicrochartChartWrapper {
|
|
149
|
+
display: none;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
.sapFCard.sapUiIntCardSmallHeader,
|
|
153
|
+
.sapFCard.sapUiIntCardTileFlatWide {
|
|
154
|
+
|
|
155
|
+
.sapFCardHeader .sapFCardNumericIndicatorsSide {
|
|
156
|
+
flex-wrap: nowrap;
|
|
157
|
+
}
|
|
158
|
+
.sapFCardHeader.sapFCardNumericHeaderSIMC .sapFCardNumericIndicatorsSide {
|
|
159
|
+
display: none;
|
|
160
|
+
}
|
|
161
|
+
.sapFCardHeader .sapUiIntMicrochartChartWrapper .sapUiIntMicrochartChart {
|
|
162
|
+
max-height: 2.2rem;
|
|
163
|
+
min-height: 2rem;
|
|
164
|
+
}
|
|
165
|
+
.sapFCardHeader .sapUiIntMicrochartChartWrapper .sapUiIntMicrochartChart .sapUiIntMicrochartChartInner {
|
|
166
|
+
height: 2rem;
|
|
167
|
+
}
|
|
168
|
+
.sapMNCValue.WithoutMargin {
|
|
169
|
+
justify-content: start;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.sapFCard.sapUiIntCardTileStandardWide .sapFCardNumericHeader {
|
|
174
|
+
&.sapFCardHeader .sapFCardNumericIndicatorsSide {
|
|
175
|
+
flex-wrap: nowrap;
|
|
176
|
+
}
|
|
177
|
+
&.sapFCardNumericHeaderSIMC .sapUiIntMicrochartChartWrapper {
|
|
178
|
+
position: absolute;
|
|
179
|
+
top: 2.5rem;
|
|
180
|
+
right: 1rem;
|
|
181
|
+
width: 38%;
|
|
182
|
+
}
|
|
183
|
+
&.sapFCardNumericHeaderSIMC .sapFCardHeaderText {
|
|
184
|
+
max-width: 58%;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
&.sapFCardNumericHeaderMC .sapFCardAvatarAndIndicatorsLine .sapUiIntMicrochartChartWrapper {
|
|
188
|
+
margin-top: -0.5rem;
|
|
189
|
+
}
|
|
148
190
|
}
|
|
149
191
|
|
|
150
192
|
.sapFCard.sapUiIntCardTileFlat .sapFCardHeaderBanner {
|
|
151
193
|
/* there is no space for banner in 2x1 tile */
|
|
152
194
|
display: none;
|
|
153
195
|
}
|
|
196
|
+
|
|
197
|
+
.sapFCard.sapUiIntCardStandard .sapFCardHeaderBanner {
|
|
198
|
+
/* the banner feature is not yet available for standard card variant */
|
|
199
|
+
display: none!important;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.sapFCard.sapUiIntCardCompactHeader {
|
|
203
|
+
height: 3rem;
|
|
204
|
+
min-height: 3rem;
|
|
205
|
+
|
|
206
|
+
.sapFCardHeader {
|
|
207
|
+
padding: 0.5rem 0.75rem;
|
|
208
|
+
|
|
209
|
+
.sapFCardIcon.sapFAvatar {
|
|
210
|
+
height: 1.9rem;
|
|
211
|
+
width: 1.9rem;
|
|
212
|
+
font-size: 0.9rem;
|
|
213
|
+
letter-spacing: -1px;
|
|
214
|
+
&.sapFAvatarColorTransparent .sapUiIcon {
|
|
215
|
+
font-size: 1.25rem;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
.sapFCardHeaderText {
|
|
219
|
+
height: 2rem;
|
|
220
|
+
}
|
|
221
|
+
.sapFCardHeaderTextSecondLine {
|
|
222
|
+
display: inline-block;
|
|
223
|
+
margin-top: 0;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.sapFCardHeaderToolbarCont .sapFCardHeaderToolbar {
|
|
227
|
+
margin: -0.4rem 0 -0.25rem -1.8rem;
|
|
228
|
+
height: 2rem;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.sapUiSizeCompact .sapFCard.sapUiIntCardCompactHeader {
|
|
234
|
+
.sapFCardHeaderToolbarCont {
|
|
235
|
+
padding-top: 0.25rem;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* ======================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration/Base */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ======================================== */
|
|
5
|
+
|
|
6
|
+
ui-integration-card {
|
|
7
|
+
display: inline-block;
|
|
8
|
+
width: 100%;
|
|
9
|
+
|
|
10
|
+
& > div[data-sap-ui-area] {
|
|
11
|
+
height: 100%;
|
|
12
|
+
width: 100%;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* ====================================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.cards/Footer */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ====================================================== */
|
|
5
|
+
|
|
6
|
+
.sapFCardFooter {
|
|
7
|
+
display: flex;
|
|
8
|
+
flex-direction: column;
|
|
9
|
+
justify-content: center;
|
|
10
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/* ============================================================ */
|
|
2
|
+
/* CSS for control sap.ui.integration.controls/ImageWithOverlay */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ============================================================ */
|
|
5
|
+
|
|
6
|
+
.sapUiIntImageWithOverlay {
|
|
7
|
+
display: flex;
|
|
8
|
+
|
|
9
|
+
.sapUiIntImgWithOverlayImg {
|
|
10
|
+
width: 100%;
|
|
11
|
+
height: 100%;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.sapUiIntImgWithOverlayLayout {
|
|
15
|
+
position: absolute;
|
|
16
|
+
top: 0;
|
|
17
|
+
bottom: 0;
|
|
18
|
+
left: 0;
|
|
19
|
+
right: 0;
|
|
20
|
+
padding: 1rem;
|
|
21
|
+
height: 100%;
|
|
22
|
+
opacity: 0;
|
|
23
|
+
|
|
24
|
+
.sapMText {
|
|
25
|
+
line-height: 1.5rem;
|
|
26
|
+
|
|
27
|
+
&.sapUiIntImgWithOverlayTitle {
|
|
28
|
+
font-size: 1.75rem;
|
|
29
|
+
line-height: 1.75rem;
|
|
30
|
+
font-weight: 900;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&.sapUiIntImageWithOverlayPaddingMediumStart .sapUiIntImgWithOverlayLayout {
|
|
36
|
+
padding-inline-start: @sapUiMarginMedium;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.sapFCardObjectGroup {
|
|
41
|
+
.sapUiIntImageWithOverlay.sapFCardObjectImageFullWidth.sapFCardObjectImage:only-child {
|
|
42
|
+
height: ~"calc(100% + 32px)";
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.sapUiIntImageWithOverlay:not(.sapFCardObjectImageFullWidth):only-child .sapUiIntImgWithOverlayImg {
|
|
46
|
+
max-height: 100%;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.sapUiIntImgWithOverlayLoaded .sapUiIntImgWithOverlayLayout {
|
|
51
|
+
animation: sapUiInImgWithOverlayFadeInAnimation ease 1s;
|
|
52
|
+
animation-iteration-count: 1;
|
|
53
|
+
animation-fill-mode: forwards;
|
|
54
|
+
animation-delay: 500ms;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
@keyframes sapUiInImgWithOverlayFadeInAnimation {
|
|
58
|
+
0% {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
100% {
|
|
63
|
+
opacity: 1;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.sapUiIntImageWithOverlay.sapUiIntImgWithOverlayNoAnimation .sapUiIntImgWithOverlayLayout {
|
|
68
|
+
opacity: 1;
|
|
69
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* =========================================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.controls/LinkWithIcon */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* =========================================================== */
|
|
5
|
+
|
|
6
|
+
.sapUiIntCardLinkWithIcon.sapMLnk>.sapUiIcon {
|
|
7
|
+
cursor: inherit;
|
|
8
|
+
margin-right: 0.5rem;
|
|
9
|
+
line-height: 1rem;
|
|
10
|
+
vertical-align: text-bottom;
|
|
11
|
+
}
|
|
@@ -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
|
+
}
|