@carbon/styles 1.81.0 → 1.82.0-rc.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/styles",
3
3
  "description": "Styles for the Carbon Design System",
4
- "version": "1.81.0",
4
+ "version": "1.82.0-rc.0",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
7
7
  "type": "git",
@@ -75,5 +75,5 @@
75
75
  "scss/**/*.css",
76
76
  "css/**/*.css"
77
77
  ],
78
- "gitHead": "ec31b96c91af8208499180eaeae89eb08b7ac8c8"
78
+ "gitHead": "184bbaf4d986f623be415b47b933c56b19655774"
79
79
  }
@@ -49,6 +49,11 @@
49
49
  margin-inline-end: $spacing-02;
50
50
  }
51
51
 
52
+ .#{$prefix}--breadcrumb--sm .#{$prefix}--breadcrumb-item .#{$prefix}--link {
53
+ justify-content: center;
54
+ min-inline-size: $spacing-04;
55
+ }
56
+
52
57
  .#{$prefix}--breadcrumb-item .#{$prefix}--link:visited {
53
58
  color: $link-primary;
54
59
 
@@ -176,6 +176,8 @@
176
176
  grid-column: 1/-1;
177
177
  grid-row: 1/1;
178
178
  margin-block-end: $spacing-03;
179
+ max-block-size: 50vh;
180
+ overflow-y: auto;
179
181
  padding-block-start: $spacing-05;
180
182
  padding-inline: $spacing-05 $spacing-09;
181
183
  }
@@ -22,6 +22,7 @@
22
22
  @use '../../utilities/high-contrast-mode' as *;
23
23
  @use '../../utilities/convert';
24
24
  @use '../../utilities/custom-property';
25
+ @use '../../utilities/visually-hidden' as *;
25
26
 
26
27
  /// Slider styles
27
28
  /// @access public
@@ -19,6 +19,7 @@
19
19
  @use '../../utilities/placeholder-colors' as *;
20
20
  @use '../../utilities/skeleton' as *;
21
21
  @use '../../utilities/layout';
22
+ @use '../../utilities/visually-hidden' as *;
22
23
 
23
24
  /// Text area styles
24
25
  /// @access public
@@ -25,6 +25,7 @@
25
25
  @use '../../utilities/layout';
26
26
  @use '../../utilities/focus-outline' as *;
27
27
  @use '../../utilities/button-reset';
28
+ @use '../../utilities/visually-hidden' as *;
28
29
 
29
30
  /// Text input styles
30
31
  /// @access public
@@ -1,5 +1,5 @@
1
1
  //
2
- // Copyright IBM Corp. 2016, 2023
2
+ // Copyright IBM Corp. 2016, 2025
3
3
  //
4
4
  // This source code is licensed under the Apache-2.0 license found in the
5
5
  // LICENSE file in the root directory of this source tree.
@@ -36,6 +36,7 @@ $tooltip-padding-inline: custom-property.get-var(
36
36
 
37
37
  padding: $tooltip-padding-block $tooltip-padding-inline;
38
38
  max-inline-size: convert.to-rem(288px);
39
+ overflow-wrap: break-word;
39
40
  }
40
41
  }
41
42