@openui5/sap.ui.layout 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 +2 -2
- package/src/sap/ui/layout/.library +1 -1
- package/src/sap/ui/layout/AlignedFlowLayout.js +1 -1
- package/src/sap/ui/layout/AssociativeSplitter.js +1 -1
- package/src/sap/ui/layout/BlockLayout.js +1 -1
- package/src/sap/ui/layout/BlockLayoutCell.js +1 -1
- package/src/sap/ui/layout/BlockLayoutCellData.js +1 -1
- package/src/sap/ui/layout/BlockLayoutRow.js +1 -1
- package/src/sap/ui/layout/DynamicSideContent.js +1 -1
- package/src/sap/ui/layout/FixFlex.js +1 -1
- package/src/sap/ui/layout/Grid.js +3 -3
- package/src/sap/ui/layout/GridData.js +3 -3
- package/src/sap/ui/layout/GridRenderer.js +1 -1
- package/src/sap/ui/layout/HorizontalLayout.js +1 -1
- package/src/sap/ui/layout/PaneContainer.js +1 -1
- package/src/sap/ui/layout/ResponsiveFlowLayout.js +1 -1
- package/src/sap/ui/layout/ResponsiveFlowLayoutData.js +1 -1
- package/src/sap/ui/layout/ResponsiveSplitter.js +1 -1
- package/src/sap/ui/layout/ResponsiveSplitterPage.js +1 -1
- package/src/sap/ui/layout/SplitPane.js +1 -1
- package/src/sap/ui/layout/Splitter.js +1 -1
- package/src/sap/ui/layout/SplitterLayoutData.js +1 -1
- package/src/sap/ui/layout/VerticalLayout.js +1 -1
- package/src/sap/ui/layout/changeHandler/AddFormContainer.js +1 -1
- package/src/sap/ui/layout/changeHandler/AddFormField.js +1 -1
- package/src/sap/ui/layout/changeHandler/AddSimpleFormField.js +1 -1
- package/src/sap/ui/layout/changeHandler/AddSimpleFormGroup.js +1 -1
- package/src/sap/ui/layout/changeHandler/HideSimpleForm.js +1 -1
- package/src/sap/ui/layout/changeHandler/MoveSimpleForm.js +1 -1
- package/src/sap/ui/layout/changeHandler/RenameFormContainer.js +1 -1
- package/src/sap/ui/layout/changeHandler/RenameSimpleForm.js +1 -1
- package/src/sap/ui/layout/changeHandler/UnhideSimpleForm.js +1 -1
- package/src/sap/ui/layout/cssgrid/CSSGrid.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridBasicLayout.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridBoxLayout.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridItemLayoutData.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridLayoutBase.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridLayoutDelegate.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridResponsiveLayout.js +1 -1
- package/src/sap/ui/layout/cssgrid/GridSettings.js +1 -1
- package/src/sap/ui/layout/cssgrid/ResponsiveColumnItemLayoutData.js +1 -1
- package/src/sap/ui/layout/cssgrid/ResponsiveColumnLayout.js +1 -1
- package/src/sap/ui/layout/form/ColumnContainerData.js +1 -1
- package/src/sap/ui/layout/form/ColumnElementData.js +1 -1
- package/src/sap/ui/layout/form/ColumnLayout.js +11 -1
- package/src/sap/ui/layout/form/ColumnLayoutRenderer.js +5 -3
- package/src/sap/ui/layout/form/Form.js +1 -1
- package/src/sap/ui/layout/form/FormContainer.js +16 -5
- package/src/sap/ui/layout/form/FormElement.js +1 -1
- package/src/sap/ui/layout/form/FormLayout.js +43 -1
- package/src/sap/ui/layout/form/FormLayoutRenderer.js +23 -13
- package/src/sap/ui/layout/form/FormRenderer.js +13 -2
- package/src/sap/ui/layout/form/GridContainerData.js +1 -1
- package/src/sap/ui/layout/form/GridElementData.js +1 -1
- package/src/sap/ui/layout/form/GridLayout.js +1 -1
- package/src/sap/ui/layout/form/ResponsiveGridLayout.js +2 -2
- package/src/sap/ui/layout/form/ResponsiveLayout.js +2 -2
- package/src/sap/ui/layout/form/SemanticFormElement.js +1 -1
- package/src/sap/ui/layout/form/SimpleForm.js +1 -1
- package/src/sap/ui/layout/library.js +4 -4
- package/src/sap/ui/layout/themes/base/FormLayout.less +12 -2
- package/src/sap/ui/layout/themes/sap_hcb/base_AlignedFlowLayout.less +57 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_BlockLayout.less +226 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_BlockLayoutCell.less +62 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_BlockLayoutRow.less +49 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_CSSGrid.less +74 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_ColumnLayout.less +289 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_DynamicSideContent.less +95 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_FixFlex.less +127 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_Form.less +18 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_FormLayout.less +129 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_Grid.less +261 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_GridLayout.less +189 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_HorizontalLayout.less +61 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_ResponsiveFlowLayout.less +62 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_ResponsiveGridLayout.less +254 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_ResponsiveLayout.less +186 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_ResponsiveSplitter.less +154 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_SimpleForm.less +19 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_Splitter.less +280 -0
- package/src/sap/ui/layout/themes/sap_hcb/base_VerticalLayout.less +48 -0
- package/src/sap/ui/layout/themes/sap_hcb/library.source.less +32 -1
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
/* ========================================= */
|
|
2
|
+
/* CSS for control sap.ui.layout/FormLayout */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ========================================= */
|
|
5
|
+
|
|
6
|
+
@_sap_ui_layout_FormLayout_FormTitleSize: ~"H4";
|
|
7
|
+
@_sap_ui_layout_FormLayout_FormSubTitleSize: ~"H5";
|
|
8
|
+
|
|
9
|
+
.sapUiFormLayout {
|
|
10
|
+
border: 1px solid @sapUiGroupTitleBorderColor;
|
|
11
|
+
font-size: @sapUiDesktopFontSize;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.sapUiFormLayout > .sapUiFormContainer {
|
|
15
|
+
display: block;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.sapUiFormTitle {
|
|
19
|
+
border-bottom: 1px solid @sapUiGroupTitleBorderColor;
|
|
20
|
+
overflow: hidden;
|
|
21
|
+
width: 100%;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* Text part */
|
|
25
|
+
.sapUiFormTitleH1,
|
|
26
|
+
.sapUiFormTitleH2,
|
|
27
|
+
.sapUiFormTitleH3,
|
|
28
|
+
.sapUiFormTitleH4,
|
|
29
|
+
.sapUiFormTitleH5,
|
|
30
|
+
.sapUiFormTitleH6 {
|
|
31
|
+
overflow: hidden;
|
|
32
|
+
white-space: nowrap;
|
|
33
|
+
text-overflow: ellipsis;
|
|
34
|
+
display: block;
|
|
35
|
+
width: 100%;
|
|
36
|
+
font-weight: @sapUiFontHeaderWeight;
|
|
37
|
+
color: @sapUiGroupTitleTextColor;
|
|
38
|
+
margin: 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.sapUiForm .sapUiFormTitle {
|
|
42
|
+
height: 3rem;
|
|
43
|
+
line-height: 3rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.sapUiFormContainerTitle > .sapUiFormTitle {
|
|
47
|
+
position: relative;
|
|
48
|
+
border: none;
|
|
49
|
+
box-sizing: border-box;
|
|
50
|
+
margin-bottom: 0.5rem;
|
|
51
|
+
height: 2rem;
|
|
52
|
+
line-height: 2rem;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.sapUiFormContainerTitle > .sapUiFormTitle.sapUiFormTitleExpandable{
|
|
56
|
+
overflow: visible; /* to allow to put expander outside */
|
|
57
|
+
padding-left: 2.5rem;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.sapUiFormContainerTitle > .sapUiFormTitle.sapUiFormTitleExpandable > button{
|
|
61
|
+
position: absolute;
|
|
62
|
+
left: -0.25rem;
|
|
63
|
+
padding-right: 0.5rem;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.sapUiFormTitle.sapUiFormTitleEmph {
|
|
67
|
+
border-color: @sapUiGroupTitleBorderColor;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/* Title levels - can not use TextView CSS from commons, because also used in mobile */
|
|
71
|
+
.sapUiFormTitleH1 {
|
|
72
|
+
font-size: @sapMFontHeader1Size;
|
|
73
|
+
line-height: 122%;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.sapUiFormTitleH2 {
|
|
77
|
+
font-size: @sapMFontHeader2Size;
|
|
78
|
+
line-height: 122%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.sapUiFormTitleH3 {
|
|
82
|
+
font-size: @sapMFontHeader3Size;
|
|
83
|
+
line-height: 122%;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.sapUiFormTitleH4 {
|
|
87
|
+
font-size: @sapMFontHeader4Size;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.sapUiFormTitleH5 {
|
|
91
|
+
font-size: @sapMFontHeader5Size;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.sapUiFormTitleH6 {
|
|
95
|
+
font-size: @sapMFontHeader6Size;
|
|
96
|
+
color: @sapUiGroupTitleTextColor;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.sapUiFormTitle> img {
|
|
100
|
+
vertical-align: middle;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/* Toolbar */
|
|
104
|
+
.sapUiFormContainerToolbar > div:first-child {
|
|
105
|
+
margin-bottom: 0.5rem;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.sapUiFormToolbar > div:first-child >.sapMTitle.sapMTitleStyleAuto{
|
|
109
|
+
font-size: @sapMFontHeader4Size;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.sapUiFormContainerToolbar > div:first-child >.sapMTitle.sapMTitleStyleAuto{
|
|
113
|
+
font-size: @sapMFontHeader5Size;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.sapUiFormM .sapUiFormContainerTitle > .sapUiFormTitle {
|
|
117
|
+
height: 3rem;
|
|
118
|
+
line-height: 3rem;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.sapUiSizeCompact .sapUiFormContainerTitle > .sapUiFormTitle {
|
|
122
|
+
height: 2rem;
|
|
123
|
+
line-height: 2rem;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/* SemanticFormElement */
|
|
127
|
+
.sapUiForm .sapUiFormDelimiter { /* add Form class to make sure to overwrite sapMText setting */
|
|
128
|
+
white-space: pre-wrap; /* To render whitespaces in display mode if controls are rendered */
|
|
129
|
+
}
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
/* UI5 RESPONSIVE GRID */
|
|
2
|
+
// Variables
|
|
3
|
+
@_sap_ui_layout_Grid_RespGridCols: 12;
|
|
4
|
+
@_sap_ui_layout_Grid_RespGridCols-1: @_sap_ui_layout_Grid_RespGridCols - 1;
|
|
5
|
+
@_sap_ui_layout_Grid_RespGridOneCol: 100% / @_sap_ui_layout_Grid_RespGridCols;
|
|
6
|
+
@_sap_ui_layout_Grid_RespGridMediaPhone: sapUiRespGridMedia-Std-Phone;
|
|
7
|
+
@_sap_ui_layout_Grid_RespGridMediaTablet: sapUiRespGridMedia-Std-Tablet;
|
|
8
|
+
@_sap_ui_layout_Grid_RespGridMediaDesktop: sapUiRespGridMedia-Std-Desktop;
|
|
9
|
+
@_sap_ui_layout_Grid_RespGridMediaXL: sapUiRespGridMedia-Std-LargeDesktop;
|
|
10
|
+
@_sap_ui_layout_Grid_RespGridMediaPhoneSize: 320px;
|
|
11
|
+
@_sap_ui_layout_Grid_RespGridMediaTabletSize: 600px;
|
|
12
|
+
@_sap_ui_layout_Grid_RespGridMediaDesktopSize: 1024px;
|
|
13
|
+
@_sap_ui_layout_Grid_RespGridMediaXLSize: 1440px;
|
|
14
|
+
@_sap_ui_layout_Grid_RespGridPxInRem: 16;
|
|
15
|
+
@_sap_ui_layout_Grid_RespGridVisible: sapUiRespGridVisible;
|
|
16
|
+
@_sap_ui_layout_Grid_RespGridHidden: sapUiRespGridHidden;
|
|
17
|
+
|
|
18
|
+
div[class*="sapUiRespGrid"] > div[class*="sapUiRespGridSpan"] {
|
|
19
|
+
float: left;
|
|
20
|
+
min-height: 1px; // BCP: 1770523047
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
div.sapUiRespGridOverflowHidden[class*="sapUiRespGrid"] > div[class*="sapUiRespGridSpan"] {
|
|
24
|
+
overflow: hidden;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/* CLEAR FIX */
|
|
28
|
+
|
|
29
|
+
div[class*="sapUiRespGrid"]:after {
|
|
30
|
+
clear: both;
|
|
31
|
+
content: " ";
|
|
32
|
+
display: block;
|
|
33
|
+
font-size: 0;
|
|
34
|
+
height: 0;
|
|
35
|
+
visibility: hidden;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/* GRID HORIZONTAL SPACING - 0.5rem */
|
|
39
|
+
|
|
40
|
+
.sapUiRespGrid.sapUiRespGridHSpace05 {
|
|
41
|
+
padding: 0 0.25rem;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.sapUiRespGrid.sapUiRespGridHSpace05 > div {
|
|
45
|
+
margin: 0 0.25rem;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/* GRID HORIZONTAL SPACING - 1rem */
|
|
49
|
+
|
|
50
|
+
.sapUiRespGrid.sapUiRespGridHSpace1 {
|
|
51
|
+
padding: 0 0.5rem;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.sapUiRespGrid.sapUiRespGridHSpace1 > div {
|
|
55
|
+
margin: 0 0.5rem;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* GRID HORIZONTAL SPACING - 2rem */
|
|
59
|
+
|
|
60
|
+
.sapUiRespGrid.sapUiRespGridHSpace2 {
|
|
61
|
+
padding: 0 1rem;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.sapUiRespGrid.sapUiRespGridHSpace2 > div {
|
|
65
|
+
margin: 0 1rem;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/* GRID VERTICAL SPACING - general */
|
|
69
|
+
|
|
70
|
+
.sapUiRespGrid.sapUiRespGridVSpace0 > div {
|
|
71
|
+
margin-bottom: 0;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.sapUiRespGrid.sapUiRespGridVSpace05 > div {
|
|
75
|
+
margin-bottom: 0.5rem;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.sapUiRespGrid.sapUiRespGridVSpace1 > div {
|
|
79
|
+
margin-bottom: 1rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.sapUiRespGrid.sapUiRespGridVSpace2 > div {
|
|
83
|
+
margin-bottom: 2rem;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.sapUiRespGrid[class*="sapUiRespGridVSpace0"] > .sapUiRespGridSpanInvisible,
|
|
87
|
+
.sapUiRespGrid[class*="sapUiRespGridVSpace05"] > .sapUiRespGridSpanInvisible,
|
|
88
|
+
.sapUiRespGrid[class*="sapUiRespGridVSpace1"] > .sapUiRespGridSpanInvisible,
|
|
89
|
+
.sapUiRespGrid[class*="sapUiRespGridVSpace2"] > .sapUiRespGridSpanInvisible {
|
|
90
|
+
margin-bottom: 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
/* GENERAL BREAK */
|
|
94
|
+
|
|
95
|
+
.sapUiRespGridBreak { clear: both; }
|
|
96
|
+
|
|
97
|
+
.sapUiRespGridWriteSpanClass(@classFor, @hspace, @span, @screenSize) when (@classFor = Span) {
|
|
98
|
+
@a: @_sap_ui_layout_Grid_RespGridOneCol * @span;
|
|
99
|
+
width: @a - 100% * @_sap_ui_layout_Grid_RespGridPxInRem * @hspace / @screenSize;
|
|
100
|
+
.sapUiRespGrid-getCalcFuncSpan(@a, @hspace);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.sapUiRespGridWriteIndentClass(@classFor, @hspace, @span, @screenSize) when (@classFor = Indent) {
|
|
104
|
+
@a: @_sap_ui_layout_Grid_RespGridOneCol * @span;
|
|
105
|
+
margin-left: @a + (100% * @_sap_ui_layout_Grid_RespGridPxInRem * @hspace/2) / @screenSize ;
|
|
106
|
+
.sapUiRespGrid-getCalcFuncIndent(@a, @hspace);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// Get the values and how I cheat LESS processor with the commented calc function
|
|
110
|
+
.sapUiRespGrid-getCalcFuncSpan(@a, @hspace) when (@hspace > 0) {
|
|
111
|
+
@c: "calc(";
|
|
112
|
+
@b: " - ";
|
|
113
|
+
@d: "-webkit-calc(";
|
|
114
|
+
@e: "rem)";
|
|
115
|
+
@par1: ~"@{d}@{a}@{b}@{hspace}@{e}";
|
|
116
|
+
@par2: ~"@{c}@{a}@{b}@{hspace}@{e}";
|
|
117
|
+
width: @par1;
|
|
118
|
+
width: @par2;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// Get the values and how I cheat LESS processor with the commented calc function
|
|
122
|
+
.sapUiRespGrid-getCalcFuncIndent(@a, @hspace) when (@hspace > 0) {
|
|
123
|
+
@c: "calc(";
|
|
124
|
+
@b: " + ";
|
|
125
|
+
@d: "-webkit-calc(";
|
|
126
|
+
@e: "rem)";
|
|
127
|
+
@f: @hspace/2;
|
|
128
|
+
@par1: ~"@{d}@{a}@{b}@{f}@{e}";
|
|
129
|
+
@par2: ~"@{c}@{a}@{b}@{f}@{e}";
|
|
130
|
+
margin-left: @par1;
|
|
131
|
+
margin-left: @par2;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
//Write Span and Indent classes
|
|
136
|
+
.sapUiRespGridWriteClasses(@counter, @media, @classFor, @name, @classHSpace, @hspace, @screenSize) when (@counter > 0) {
|
|
137
|
+
.sapUiRespGridWriteClasses((@counter - 1), @media, @classFor, @name, @classHSpace, @hspace, @screenSize);
|
|
138
|
+
.@{media}.sapUiRespGridHSpace@{classHSpace} > .sapUiRespGrid@{classFor}@{name}@{counter} {
|
|
139
|
+
.sapUiRespGridWriteSpanClass(@classFor, @hspace, @counter, @screenSize);
|
|
140
|
+
.sapUiRespGridWriteIndentClass(@classFor, @hspace, @counter, @screenSize);
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
// MOVE LEFT
|
|
145
|
+
.sapUiRespGridWriteMoveFwd(@counter, @media, @name) when (@counter > 0) {
|
|
146
|
+
.sapUiRespGridWriteMoveFwd((@counter - 1), @media, @name);
|
|
147
|
+
.@{media} > .sapUiRespGridFwd@{name}@{counter} { left: @_sap_ui_layout_Grid_RespGridOneCol * @counter; }
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// MOVE RIGHT
|
|
151
|
+
.sapUiRespGridWriteMoveBwd(@counter, @media, @name) when (@counter > 0) {
|
|
152
|
+
.sapUiRespGridWriteMoveBwd((@counter - 1), @media, @name);
|
|
153
|
+
.@{media} > .sapUiRespGridBwd@{name}@{counter} { right: @_sap_ui_layout_Grid_RespGridOneCol * @counter; }
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.sapUiRespGridWriteBreak(@media, @name){
|
|
157
|
+
.@{media} > .sapUiRespGridBreak@{name} { clear: both }
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
.sapUiRespGridWriteCSS(@media, @name, @screenSize) {
|
|
162
|
+
|
|
163
|
+
/*SPANS */
|
|
164
|
+
.sapUiRespGridWriteClasses(@_sap_ui_layout_Grid_RespGridCols, @media, Span, @name, 0, 0, @screenSize);
|
|
165
|
+
.sapUiRespGridWriteClasses(@_sap_ui_layout_Grid_RespGridCols, @media, Span, @name, ~"05", 0.5, @screenSize);
|
|
166
|
+
.sapUiRespGridWriteClasses(@_sap_ui_layout_Grid_RespGridCols, @media, Span, @name, 1, 1, @screenSize);
|
|
167
|
+
.sapUiRespGridWriteClasses(@_sap_ui_layout_Grid_RespGridCols, @media, Span, @name, 2, 2, @screenSize);
|
|
168
|
+
|
|
169
|
+
/*INDENTS */
|
|
170
|
+
.sapUiRespGridWriteClasses(@_sap_ui_layout_Grid_RespGridCols-1, @media, Indent, @name, 0, 0, @screenSize);
|
|
171
|
+
.sapUiRespGridWriteClasses(@_sap_ui_layout_Grid_RespGridCols-1, @media, Indent, @name, ~"05", 0.5, @screenSize);
|
|
172
|
+
.sapUiRespGridWriteClasses(@_sap_ui_layout_Grid_RespGridCols-1, @media, Indent, @name, 1, 1, @screenSize);
|
|
173
|
+
.sapUiRespGridWriteClasses(@_sap_ui_layout_Grid_RespGridCols-1, @media, Indent, @name, 2, 2, @screenSize);
|
|
174
|
+
|
|
175
|
+
/* MOVE LEFT */
|
|
176
|
+
.sapUiRespGridWriteMoveFwd(@_sap_ui_layout_Grid_RespGridCols-1, @media, @name);
|
|
177
|
+
|
|
178
|
+
/* MOVE RIGHT */
|
|
179
|
+
.sapUiRespGridWriteMoveBwd(@_sap_ui_layout_Grid_RespGridCols-1, @media, @name);
|
|
180
|
+
|
|
181
|
+
/* BREAK */
|
|
182
|
+
.sapUiRespGridWriteBreak(@media, @name);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/* =============================== */
|
|
186
|
+
/* S M A L L D E V I C E S */
|
|
187
|
+
/* =============================== */
|
|
188
|
+
|
|
189
|
+
.sapUiRespGridWriteCSS(@_sap_ui_layout_Grid_RespGridMediaPhone, S, @_sap_ui_layout_Grid_RespGridMediaPhoneSize);
|
|
190
|
+
.@{_sap_ui_layout_Grid_RespGridMediaPhone} > .@{_sap_ui_layout_Grid_RespGridHidden}S { display: none }
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
/* =============================== */
|
|
194
|
+
/* M E D I U M D E V I C E S */
|
|
195
|
+
/* =============================== */
|
|
196
|
+
|
|
197
|
+
.sapUiRespGridWriteCSS(@_sap_ui_layout_Grid_RespGridMediaTablet, M, @_sap_ui_layout_Grid_RespGridMediaTabletSize);
|
|
198
|
+
.@{_sap_ui_layout_Grid_RespGridMediaTablet} > .@{_sap_ui_layout_Grid_RespGridHidden}M { display: none }
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
/* ============================= */
|
|
202
|
+
/* L A R G E D E V I C E S */
|
|
203
|
+
/* ============================= */
|
|
204
|
+
|
|
205
|
+
.sapUiRespGridWriteCSS(@_sap_ui_layout_Grid_RespGridMediaDesktop, L, @_sap_ui_layout_Grid_RespGridMediaDesktopSize);
|
|
206
|
+
.@{_sap_ui_layout_Grid_RespGridMediaDesktop} > .@{_sap_ui_layout_Grid_RespGridHidden}L { display: none }
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
/* ====================================== */
|
|
210
|
+
/* E X T R A L A R G E D E V I C E S */
|
|
211
|
+
/* ====================================== */
|
|
212
|
+
|
|
213
|
+
.sapUiRespGridWriteCSS(@_sap_ui_layout_Grid_RespGridMediaXL, XL, @_sap_ui_layout_Grid_RespGridMediaXLSize);
|
|
214
|
+
.@{_sap_ui_layout_Grid_RespGridMediaXL} > .@{_sap_ui_layout_Grid_RespGridHidden}XL { display: none }
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
/* =============== */
|
|
219
|
+
/* E X T R A S */
|
|
220
|
+
/* =============== */
|
|
221
|
+
|
|
222
|
+
/* HORIZONTAL POSITIONING GRID IN CONTAINER */
|
|
223
|
+
|
|
224
|
+
div.sapUiRespGrid.sapUiRespGridPosCenter {
|
|
225
|
+
margin-left: auto;
|
|
226
|
+
margin-right: auto;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
div.sapUiRespGrid.sapUiRespGridPosRight {
|
|
230
|
+
margin-left: auto;
|
|
231
|
+
margin-right: 0;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/* MOVE FOWARD and BACKWARD */
|
|
235
|
+
|
|
236
|
+
div[class*="sapUiRespGrid"] > div[class*="sapUiRespGridFwd"] {
|
|
237
|
+
position: relative;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
div[class*="sapUiRespGrid"] > div[class*="sapUiRespGridBwd"] {
|
|
241
|
+
float: right;
|
|
242
|
+
position: relative;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
/* explanation for percentages for browsers without calc support:
|
|
247
|
+
16px = 1rem
|
|
248
|
+
-------------------------
|
|
249
|
+
S 1.25% = 4px / 320px
|
|
250
|
+
2.5% = 8px / 320px
|
|
251
|
+
5% = 16px / 320px
|
|
252
|
+
10% = 32px / 320px
|
|
253
|
+
M 0.16667% = 4px / 600px
|
|
254
|
+
1.3333% = 8px / 600px
|
|
255
|
+
2.6667% = 16px / 600px
|
|
256
|
+
5.3333% = 32px / 600px
|
|
257
|
+
L 0.390625% = 4px / 1024px
|
|
258
|
+
0.78125% = 8px / 1024px
|
|
259
|
+
1.5625% = 16px / 1024px
|
|
260
|
+
3.125% = 32px / 1024px
|
|
261
|
+
------------------------- */
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
/* ========================================= */
|
|
2
|
+
/* CSS for control sap.ui.layout/GridLayout */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ========================================= */
|
|
5
|
+
|
|
6
|
+
.sapUiForm:not(.sapUiFormM) > .sapUiGrid {
|
|
7
|
+
font-size: @sapUiDesktopFontSize;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.sapUiGrid td {
|
|
11
|
+
vertical-align: top;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.sapUiGrid td.sapUiGridHeader {
|
|
16
|
+
vertical-align: bottom;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.sapUiGrid th > .sapUiFormTitle,
|
|
20
|
+
.sapUiGrid td > .sapUiFormTitle {
|
|
21
|
+
text-align: start;
|
|
22
|
+
position: relative;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.sapUiGridHeader.sapUiFormContainerTitle > .sapUiFormTitle.sapUiFormTitleExpandable{
|
|
26
|
+
padding-left: 2.25rem;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.sapUiGridHeader.sapUiFormContainerTitle > .sapUiFormTitle.sapUiFormTitleExpandable > button{
|
|
30
|
+
left: -0.5rem;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* Toolbar */
|
|
34
|
+
.sapUiGrid.sapUiFormToolbar th > div {
|
|
35
|
+
text-align: start;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.sapUiGrid > tbody > tr > td {
|
|
39
|
+
padding: 0.25rem 0 0.25rem 0.5rem;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.sapUiFormM > .sapUiGrid > tbody > tr > td {
|
|
43
|
+
padding: 0 0 0 0.5rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.sapUiGrid > tbody > tr > td:first-child {
|
|
47
|
+
padding-left: 1rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.sapUiGrid > tbody > tr.sapUiGridConteinerFirstRow > td {
|
|
51
|
+
padding-top: 2rem;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.sapUiGrid > tbody > tr:first-child > td, /* if no Form title */
|
|
55
|
+
.sapUiForm[aria-labelledby] > .sapUiGrid > tbody > tr:nth-child(2) > td {
|
|
56
|
+
padding-top: 1rem;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/* In Cozy mode put first FormContainers with title or toolbar 0.5rem on top */
|
|
60
|
+
.sapUiFormM > .sapUiGrid > tbody > tr:first-child > td.sapUiFormContainerTitle, /* if no Form title */
|
|
61
|
+
.sapUiFormM > .sapUiGrid > tbody > tr:first-child > td.sapUiFormContainerToolbar, /* if no Form title */
|
|
62
|
+
.sapUiFormM[aria-labelledby] > .sapUiGrid > tbody > tr:nth-child(2) > td.sapUiFormContainerTitle,
|
|
63
|
+
.sapUiFormM[aria-labelledby] > .sapUiGrid > tbody > tr:nth-child(2) > td.sapUiFormContainerToolbar {
|
|
64
|
+
padding-top: 0.75rem;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.sapUiSizeCompact .sapUiFormM > .sapUiGrid > tbody > tr:first-child > td.sapUiFormContainerTitle, /* if no Form title */
|
|
68
|
+
.sapUiSizeCompact .sapUiFormM > .sapUiGrid > tbody > tr:first-child > td.sapUiFormContainerToolbar, /* if no Form title */
|
|
69
|
+
.sapUiSizeCompact .sapUiFormM[aria-labelledby] > .sapUiGrid > tbody > tr:nth-child(2) > td.sapUiFormContainerTitle,
|
|
70
|
+
.sapUiSizeCompact .sapUiFormM[aria-labelledby] > .sapUiGrid > tbody > tr:nth-child(2) > td.sapUiFormContainerToolbar {
|
|
71
|
+
padding-top: 1rem;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.sapUiGrid > tbody > tr > td:last-child {
|
|
75
|
+
padding-right: 1rem;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.sapUiGrid > tbody > tr:last-child > td {
|
|
79
|
+
padding-bottom: 1rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.sapUiFormM > .sapUiGrid > tbody > tr:last-child > td {
|
|
83
|
+
padding-bottom: 0.75rem;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.sapUiGrid > tbody > tr > td.sapUiGridLabelFull {
|
|
87
|
+
padding-bottom: 0.125rem;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.sapUiFormEdit.sapUiFormM > .sapUiGrid > tbody > tr > td.sapUiFormElementLbl {
|
|
91
|
+
padding-top: 1rem;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.sapUiFormEdit.sapUiFormM > .sapUiGrid > tbody > tr.sapUiGridConteinerFirstRow > td.sapUiFormElementLbl {
|
|
95
|
+
padding-top: 3rem;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.sapUiFormEdit.sapUiFormM >.sapUiGrid > tbody > tr:first-child > td.sapUiFormElementLbl, /* if no Form title */
|
|
99
|
+
.sapUiFormEdit[aria-labelledby].sapUiFormM > .sapUiGrid > tbody > tr:nth-child(2) > td.sapUiFormElementLbl {
|
|
100
|
+
padding-top: 2rem;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.sapUiSizeCompact .sapUiFormEdit.sapUiFormM > .sapUiGrid > tbody > tr > td.sapUiFormElementLbl {
|
|
104
|
+
padding-top: 0.5rem;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.sapUiSizeCompact .sapUiFormEdit.sapUiFormM > .sapUiGrid > tbody > tr.sapUiGridConteinerFirstRow > td.sapUiFormElementLbl {
|
|
108
|
+
padding-top: 2.5rem;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.sapUiSizeCompact .sapUiFormEdit.sapUiFormM > .sapUiGrid > tbody > tr:first-child > td.sapUiFormElementLbl, /* if no Form title */
|
|
112
|
+
.sapUiSizeCompact .sapUiFormEdit[aria-labelledby].sapUiFormM > .sapUiGrid > tbody > tr:nth-child(2) > td.sapUiFormElementLbl {
|
|
113
|
+
padding-top: 1.5rem;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
html[data-sap-ui-browser^="ff"].sapUiSizeCompact,
|
|
117
|
+
html[data-sap-ui-browser^="ff"] .sapUiSizeCompact {
|
|
118
|
+
.sapUiFormEdit.sapUiFormM > .sapUiGrid > tbody > tr > td.sapUiFormElementLbl {
|
|
119
|
+
padding-top: 0.4375rem;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.sapUiFormEdit.sapUiFormM > .sapUiGrid > tbody > tr.sapUiGridConteinerFirstRow > td.sapUiFormElementLbl {
|
|
123
|
+
padding-top: 2.4375rem;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.sapUiFormEdit.sapUiFormM > .sapUiGrid > tbody > tr:first-child > td.sapUiFormElementLbl, /* if no Form title */
|
|
127
|
+
.sapUiFormEdit[aria-labelledby].sapUiFormM > .sapUiGrid > tbody > tr:nth-child(2) > td.sapUiFormElementLbl {
|
|
128
|
+
padding-top: 1.4375rem;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.sapUiFormEdit.sapUiFormM > .sapUiGrid > tbody > tr > td.sapUiGridLabelFull {
|
|
133
|
+
padding-top: 0;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.sapUiGridSpace {
|
|
137
|
+
width: 1.5rem; /* as cells after separator have padding-left of 0.5rem */
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.sapUiGrid .sapUiGridHeader {
|
|
141
|
+
padding: 0 0 0 0.5rem;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Title */
|
|
145
|
+
.sapUiGrid th > .sapUiFormTitle {
|
|
146
|
+
box-sizing: border-box;
|
|
147
|
+
padding: 0 1rem 0 1rem;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.sapUiGrid .sapUiFormTitle > img,
|
|
151
|
+
.sapUiGrid .sapUiFormTitle > span {
|
|
152
|
+
margin-right: 0.25rem;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/* Toolbar */
|
|
156
|
+
.sapUiGrid.sapUiFormToolbar th > div {
|
|
157
|
+
height: 3rem; /* to have in compact mode and in commons always 3rem on Form header */
|
|
158
|
+
line-height: 3rem;
|
|
159
|
+
padding: 0 1rem 0 1rem;
|
|
160
|
+
box-sizing: border-box;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.sapUiGrid > tbody > tr > .sapUiFormContainerToolbar > div {
|
|
164
|
+
margin-bottom: 0.5rem;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/* for display mode add padding to elements to have spacing between */
|
|
168
|
+
.sapUiFormM:not(.sapUiFormEdit) > .sapUiGrid tr:not(.sapUiGridConteinerHeaderRow) > td{
|
|
169
|
+
padding-top: 0.25rem;
|
|
170
|
+
padding-bottom: 0.25rem;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.sapUiFormM:not(.sapUiFormEdit) > .sapUiGrid {
|
|
174
|
+
font-size: 1px; /* as browser adds some px to text to meet font-size*/
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.sapUiFormM:not(.sapUiFormEdit) > .sapUiGrid tr:not(.sapUiGridConteinerHeaderRow) > td .sapUiIcon:not(.sapMBtnIcon),
|
|
178
|
+
.sapUiFormM:not(.sapUiFormEdit) > .sapUiGrid tr:not(.sapUiGridConteinerHeaderRow) > td .sapMCbBg{
|
|
179
|
+
font-size: @sapUiFontSize; /* to set default font size on icons */
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.sapUiFormM:not(.sapUiFormEdit) > .sapUiGrid .sapUiGridConteinerFirstRow:not(.sapUiGridConteinerHeaderRow) > td,
|
|
183
|
+
.sapUiFormM:not(.sapUiFormEdit) > .sapUiGrid .sapUiGridConteinerHeaderRow + tr:not(.sapUiGridConteinerHeaderRow) > td{
|
|
184
|
+
padding-top: 0;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.sapUiFormM:not(.sapUiFormEdit) > .sapUiGrid > tbody > tr:last-child > td {
|
|
188
|
+
padding-bottom: 1rem;
|
|
189
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/* =============================================== */
|
|
2
|
+
/* CSS for control sap.ui.layout/HorizontalLayout */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* =============================================== */
|
|
5
|
+
|
|
6
|
+
.sapUiHLayout {
|
|
7
|
+
display: inline-block;
|
|
8
|
+
white-space: normal;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.sapUiHLayoutNoWrap {
|
|
12
|
+
white-space: nowrap;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.sapUiHLayoutChildWrapper {
|
|
16
|
+
white-space: normal;
|
|
17
|
+
display: inline-block;
|
|
18
|
+
vertical-align: top;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
/* mixin call for creating container content padding classes (arguments: rootContainer, contentSelector) */
|
|
22
|
+
.sapUiContainerContentPadding(~".sapUiHLayout");
|
|
23
|
+
|
|
24
|
+
/* add padding between cells as well */
|
|
25
|
+
.sapUiHLayout.sapUiContentPadding > .sapUiHLayoutChildWrapper:not(:last-child) {
|
|
26
|
+
padding-right: 1rem;
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
@media (max-width: 599px) {
|
|
31
|
+
.sapMSplitContainerHideMode > .sapMSplitContainerDetail .sapUiHLayout.sapUiResponsiveContentPadding ,
|
|
32
|
+
.sapMSplitContainerPortrait > .sapMSplitContainerDetail .sapUiHLayout.sapUiResponsiveContentPadding ,
|
|
33
|
+
.sapUiHLayout.sapUiResponsiveContentPadding > .sapUiHLayoutChildWrapper:not(:last-child) {
|
|
34
|
+
padding: 0;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
@media (min-width: 600px) and (max-width: 1023px) {
|
|
38
|
+
.sapMSplitContainerHideMode > .sapMSplitContainerDetail .sapUiHLayout.sapUiResponsiveContentPadding ,
|
|
39
|
+
.sapUiHLayout.sapUiResponsiveContentPadding > .sapUiHLayoutChildWrapper:not(:last-child) {
|
|
40
|
+
padding-right: 1rem;
|
|
41
|
+
box-sizing: border-box;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
@media (min-width: 1024px) {
|
|
45
|
+
.sapMSplitContainerHideMode > .sapMSplitContainerDetail .sapUiHLayout.sapUiResponsiveContentPadding ,
|
|
46
|
+
.sapUiHLayout.sapUiResponsiveContentPadding > .sapUiHLayoutChildWrapper:not(:last-child) {
|
|
47
|
+
padding-right: 1rem;
|
|
48
|
+
box-sizing: border-box;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.sapMSplitContainerDetail .sapUiHLayout.sapUiResponsiveContentPadding > .sapUiHLayoutChildWrapper:not(:last-child) {
|
|
53
|
+
padding-right: 1rem;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* fix for BCP: 1580166858
|
|
57
|
+
* HorizontalLayout inside table cell doesn't respect the width of the cell but the width of the control that is inside it
|
|
58
|
+
*/
|
|
59
|
+
.sapMListTblCell .sapUiHLayout {
|
|
60
|
+
width: 100%;
|
|
61
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/* =================================================== */
|
|
2
|
+
/* CSS for control sap.ui.layout/ResponsiveFlowLayout */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* =================================================== */
|
|
5
|
+
|
|
6
|
+
.sapUiRFL {
|
|
7
|
+
position: relative;
|
|
8
|
+
display: inline-block;
|
|
9
|
+
width: 100%;
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.sapUiRFLRow {
|
|
14
|
+
position: relative;
|
|
15
|
+
display: block;
|
|
16
|
+
box-sizing: border-box;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.sapUiRFLContainer {
|
|
20
|
+
position: relative;
|
|
21
|
+
display: inline-block;
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
vertical-align: top;
|
|
24
|
+
overflow: hidden;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.sapUiRFLRow > .sapUiRFLContainer:first-child > .sapUiRFLContainerContent.sapUiRFLPaddingClass:first-child {
|
|
28
|
+
padding-left: 0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.sapUiRFLRow > .sapUiRFLContainer:last-child > .sapUiRFLContainerContent.sapUiRFLPaddingClass:last-child {
|
|
32
|
+
padding-right: 0;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.sapUiRFLMultiContainerContent {
|
|
36
|
+
white-space: nowrap;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.sapUiRFLMultiContent {
|
|
40
|
+
display: inline-block;
|
|
41
|
+
box-sizing: border-box;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.sapUiRFLMultiContainerContent > .sapUiRFLMultiContent.sapUiRFLPaddingClass:last-child {
|
|
45
|
+
padding-right: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.sapUiRFLPaddingClass {
|
|
49
|
+
padding: 0 0 8px 8px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.sapUiRFLFullLength > .sapUiRFLPaddingClass {
|
|
53
|
+
padding-left: 0;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.sapUiRFLMultiContent.sapUiRFLPaddingClass {
|
|
57
|
+
padding: 0 0 8px 8px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.sapUiRFLMultiContainerContent > .sapUiRFLMultiContent.sapUiRFLPaddingClass:first-child {
|
|
61
|
+
padding-left: 0;
|
|
62
|
+
}
|