@carbon/ibmdotcom-styles 2.24.0 → 2.25.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/ibmdotcom-styles",
|
|
3
3
|
"description": "Carbon for IBM.com Styles",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.25.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "dist/ibm-dotcom-styles.min.css",
|
|
7
7
|
"module": "src/scss",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"sass": "~1.84.0",
|
|
49
49
|
"sass-loader": "^13.0.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "f3f2a1b80455f6300ce092c729bae016442259ff"
|
|
52
52
|
}
|
|
@@ -69,6 +69,16 @@
|
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
+
.#{$prefix}--background-media--gradient--right-to-left {
|
|
73
|
+
@include breakpoint(lg) {
|
|
74
|
+
background-image: linear-gradient(
|
|
75
|
+
to left,
|
|
76
|
+
$background 25%,
|
|
77
|
+
rgba(255, 255, 255, 0) 75%
|
|
78
|
+
);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
72
82
|
.#{$prefix}--background-media--gradient--top-to-bottom {
|
|
73
83
|
@include breakpoint(lg) {
|
|
74
84
|
background-image: linear-gradient(
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
3
|
*
|
|
4
|
-
* Copyright IBM Corp. 2020,
|
|
4
|
+
* Copyright IBM Corp. 2020, 2025
|
|
5
5
|
*
|
|
6
6
|
* This source code is licensed under the Apache-2.0 license found in the
|
|
7
7
|
* LICENSE file in the root directory of this source tree.
|
|
@@ -106,6 +106,19 @@
|
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
+
:host(:dir(rtl)) {
|
|
110
|
+
::slotted([slot='heading']) {
|
|
111
|
+
margin-right: 1rem;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
::slotted([slot='action']) {
|
|
115
|
+
//important needed because <a slot="action" style="display: contents;"> in AEM has an inline style
|
|
116
|
+
/* stylelint-disable declaration-no-important */
|
|
117
|
+
display: block !important;
|
|
118
|
+
margin-right: 1rem !important;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
109
122
|
// Print styles
|
|
110
123
|
@media print {
|
|
111
124
|
.#{$prefix}--card-section-offset__content,
|