@fundamental-styles/common-css 0.24.0-rc.31 → 0.24.0-rc.34
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/dist/common-css.css +18 -14
- package/package.json +1 -1
package/dist/common-css.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Fundamental Library Styles v0.24.0-rc.
|
|
2
|
+
* Fundamental Library Styles v0.24.0-rc.34
|
|
3
3
|
* Copyright (c) 2022 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under Apache License 2.0 (https://github.com/SAP/fundamental-styles/blob/main/LICENSE)
|
|
5
5
|
*/
|
|
@@ -49,6 +49,15 @@
|
|
|
49
49
|
position: relative;
|
|
50
50
|
padding: 0 0.25rem;
|
|
51
51
|
}
|
|
52
|
+
.sap-container > .sap-row {
|
|
53
|
+
margin-left: -0.25rem;
|
|
54
|
+
margin-right: -0.25rem;
|
|
55
|
+
min-width: calc(100% + 0.25rem * 2);
|
|
56
|
+
}
|
|
57
|
+
.sap-container > .sap-row > .sap-col {
|
|
58
|
+
padding-top: 0.25rem;
|
|
59
|
+
padding-bottom: 0.25rem;
|
|
60
|
+
}
|
|
52
61
|
.sap-container.sap-container--no-horizontal-gap .sap-row, .sap-container.sap-container--no-gap .sap-row {
|
|
53
62
|
margin-left: 0;
|
|
54
63
|
margin-right: 0;
|
|
@@ -57,7 +66,7 @@
|
|
|
57
66
|
padding-left: 0;
|
|
58
67
|
padding-right: 0;
|
|
59
68
|
}
|
|
60
|
-
.sap-container.sap-container--no-vertical-gap .sap-row .sap-col, .sap-container.sap-container--no-gap .sap-row .sap-col {
|
|
69
|
+
.sap-container.sap-container--no-vertical-gap > .sap-row > .sap-col, .sap-container.sap-container--no-gap > .sap-row > .sap-col {
|
|
61
70
|
padding-top: 0;
|
|
62
71
|
padding-bottom: 0;
|
|
63
72
|
}
|
|
@@ -65,8 +74,6 @@
|
|
|
65
74
|
direction: rtl;
|
|
66
75
|
}
|
|
67
76
|
.sap-row {
|
|
68
|
-
margin-left: -0.25rem;
|
|
69
|
-
margin-right: -0.25rem;
|
|
70
77
|
display: -webkit-box;
|
|
71
78
|
display: -ms-flexbox;
|
|
72
79
|
display: flex;
|
|
@@ -76,14 +83,11 @@
|
|
|
76
83
|
-ms-flex: 0 0 100%;
|
|
77
84
|
flex: 0 0 100%;
|
|
78
85
|
position: relative;
|
|
79
|
-
min-width:
|
|
80
|
-
}
|
|
81
|
-
.sap-row .sap-col {
|
|
82
|
-
padding-top: 0.25rem;
|
|
83
|
-
padding-bottom: 0.25rem;
|
|
86
|
+
min-width: 100%;
|
|
84
87
|
}
|
|
85
88
|
.sap-col {
|
|
86
|
-
padding: 0
|
|
89
|
+
padding-left: 0.25rem;
|
|
90
|
+
padding-right: 0.25rem;
|
|
87
91
|
min-width: 100%;
|
|
88
92
|
max-width: 100%;
|
|
89
93
|
}
|
|
@@ -336,19 +340,19 @@
|
|
|
336
340
|
.sap-container {
|
|
337
341
|
padding: 0 0.5rem;
|
|
338
342
|
}
|
|
339
|
-
|
|
340
|
-
.sap-row {
|
|
343
|
+
.sap-container > .sap-row {
|
|
341
344
|
margin-left: -0.5rem;
|
|
342
345
|
margin-right: -0.5rem;
|
|
343
346
|
min-width: calc(100% + 0.5rem * 2);
|
|
344
347
|
}
|
|
345
|
-
.sap-row .sap-col {
|
|
348
|
+
.sap-container > .sap-row > .sap-col {
|
|
346
349
|
padding-top: 0.5rem;
|
|
347
350
|
padding-bottom: 0.5rem;
|
|
348
351
|
}
|
|
349
352
|
|
|
350
353
|
.sap-col {
|
|
351
|
-
padding: 0
|
|
354
|
+
padding-left: 0.5rem;
|
|
355
|
+
padding-right: 0.5rem;
|
|
352
356
|
}
|
|
353
357
|
.sap-col-md--0 {
|
|
354
358
|
min-width: 0%;
|
package/package.json
CHANGED