@carbon/styles 1.109.0-rc.0 → 1.109.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/css/styles.css +6 -1
- package/css/styles.min.css +1 -1
- package/package.json +2 -2
- package/scss/components/tabs/_tabs.scss +11 -1
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.109.0
|
|
4
|
+
"version": "1.109.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": "
|
|
78
|
+
"gitHead": "a4c90a9dc15cc4f0e6a99b3c0001a7a25303b555"
|
|
79
79
|
}
|
|
@@ -81,6 +81,8 @@
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
&.#{$prefix}--tabs--vertical {
|
|
84
|
+
@include layout.use('size', $min: 'sm', $max: 'xl', $default: 'xl');
|
|
85
|
+
|
|
84
86
|
background: $layer;
|
|
85
87
|
box-shadow: inset -1px 0 $border-subtle;
|
|
86
88
|
grid-column: span 2;
|
|
@@ -337,7 +339,7 @@
|
|
|
337
339
|
&.#{$prefix}--tabs--vertical .#{$prefix}--tabs__nav-item {
|
|
338
340
|
flex: none;
|
|
339
341
|
background-color: $layer-01;
|
|
340
|
-
block-size:
|
|
342
|
+
block-size: layout.size('height');
|
|
341
343
|
border-block-end: 1px solid $border-subtle;
|
|
342
344
|
border-inline-end: 1px solid $border-subtle;
|
|
343
345
|
box-shadow: inset 3px 0 0 0 $border-subtle;
|
|
@@ -824,3 +826,11 @@
|
|
|
824
826
|
}
|
|
825
827
|
}
|
|
826
828
|
}
|
|
829
|
+
|
|
830
|
+
.#{$prefix}--tabs.#{$prefix}--tabs--vertical.#{$prefix}--layout--size-sm {
|
|
831
|
+
.#{$prefix}--tabs__nav-link {
|
|
832
|
+
.#{$prefix}--tabs__nav-item-label {
|
|
833
|
+
-webkit-line-clamp: 1;
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
}
|