@carbon/ibmdotcom-styles 2.15.0 → 2.16.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/dist/ibm-dotcom-styles.css +38 -14
- package/dist/ibm-dotcom-styles.min.css +2 -2
- package/package.json +2 -2
- package/scss/components/leadspace/_leadspace.scss +8 -8
- package/scss/components/pricing-table/_pricing-table.scss +6 -1
- package/scss/components/structured-list/_structured-list.scss +10 -1
- package/scss/components/tableofcontents/_table-of-contents.scss +5 -2
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.16.0-rc.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.79.0",
|
|
49
49
|
"sass-loader": "^13.0.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "850b531f80c907c8818579e78dbf318ba2769b64"
|
|
52
52
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright IBM Corp. 2016,
|
|
2
|
+
* Copyright IBM Corp. 2016, 2024
|
|
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.
|
|
@@ -513,8 +513,8 @@ $btn-min-width: 26;
|
|
|
513
513
|
|
|
514
514
|
:host(#{$c4d-prefix}-leadspace)[size='super'] {
|
|
515
515
|
@include breakpoint(lg) {
|
|
516
|
-
.#{$c4d-prefix}--
|
|
517
|
-
block-size:
|
|
516
|
+
.#{$c4d-prefix}--leadspace--content__container {
|
|
517
|
+
min-block-size: 38rem;
|
|
518
518
|
}
|
|
519
519
|
}
|
|
520
520
|
|
|
@@ -527,8 +527,8 @@ $btn-min-width: 26;
|
|
|
527
527
|
|
|
528
528
|
:host(#{$c4d-prefix}-leadspace)[size='medium'] {
|
|
529
529
|
@include breakpoint(lg) {
|
|
530
|
-
.#{$c4d-prefix}--
|
|
531
|
-
block-size:
|
|
530
|
+
.#{$c4d-prefix}--leadspace--content__container {
|
|
531
|
+
min-block-size: 28rem;
|
|
532
532
|
}
|
|
533
533
|
}
|
|
534
534
|
|
|
@@ -548,7 +548,7 @@ $btn-min-width: 26;
|
|
|
548
548
|
:host(#{$c4d-prefix}-leadspace)[size='short'] {
|
|
549
549
|
@include breakpoint(lg) {
|
|
550
550
|
.#{$c4d-prefix}--leadspace__overlay {
|
|
551
|
-
block-size: 20rem;
|
|
551
|
+
min-block-size: 20rem;
|
|
552
552
|
}
|
|
553
553
|
}
|
|
554
554
|
|
|
@@ -578,8 +578,8 @@ $btn-min-width: 26;
|
|
|
578
578
|
|
|
579
579
|
:host(#{$c4d-prefix}-leadspace)[size='tall'] {
|
|
580
580
|
@include breakpoint(lg) {
|
|
581
|
-
.#{$c4d-prefix}--
|
|
582
|
-
block-size:
|
|
581
|
+
.#{$c4d-prefix}--leadspace--content__container {
|
|
582
|
+
min-block-size: 33rem;
|
|
583
583
|
}
|
|
584
584
|
}
|
|
585
585
|
|
|
@@ -259,9 +259,14 @@
|
|
|
259
259
|
}
|
|
260
260
|
|
|
261
261
|
:host(#{$c4d-prefix}-pricing-table-cell[icon]) {
|
|
262
|
-
&[icon='checkmark'] {
|
|
262
|
+
&[icon='checkmark'] svg {
|
|
263
263
|
color: $support-success;
|
|
264
264
|
}
|
|
265
|
+
|
|
266
|
+
svg {
|
|
267
|
+
flex-shrink: 0;
|
|
268
|
+
margin-inline-end: $spacing-03;
|
|
269
|
+
}
|
|
265
270
|
}
|
|
266
271
|
|
|
267
272
|
.#{$prefix}--pricing-table-highlight-label,
|
|
@@ -287,14 +287,23 @@
|
|
|
287
287
|
vertical-align: sub;
|
|
288
288
|
|
|
289
289
|
svg {
|
|
290
|
+
flex-shrink: 0;
|
|
290
291
|
fill: $icon-secondary;
|
|
291
292
|
}
|
|
292
293
|
}
|
|
293
294
|
|
|
294
295
|
.#{$prefix}--structured-list-cell[icon],
|
|
295
296
|
:host(#{$c4d-prefix}-structured-list-cell[icon]) {
|
|
296
|
-
&[icon='checkmark'] {
|
|
297
|
+
&[icon='checkmark'] svg {
|
|
297
298
|
color: $support-success;
|
|
298
299
|
}
|
|
300
|
+
|
|
301
|
+
svg {
|
|
302
|
+
margin-inline-end: $spacing-03;
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.#{$prefix}--structured-list-cell-icon-text-container {
|
|
307
|
+
display: flex;
|
|
299
308
|
}
|
|
300
309
|
}
|
|
@@ -102,14 +102,17 @@ $hover-transition-timing: 95ms;
|
|
|
102
102
|
|
|
103
103
|
position: inherit;
|
|
104
104
|
z-index: 10;
|
|
105
|
-
|
|
105
|
+
|
|
106
|
+
box-sizing: border-box;
|
|
106
107
|
inset-block-start: auto;
|
|
108
|
+
padding-inline-start: 0;
|
|
107
109
|
}
|
|
108
110
|
|
|
109
111
|
.#{$prefix}--tableofcontents__content {
|
|
110
112
|
@extend .#{$prefix}--col-lg-12;
|
|
111
113
|
|
|
112
|
-
|
|
114
|
+
box-sizing: border-box;
|
|
115
|
+
padding-block: $spacing-05 $spacing-09;
|
|
113
116
|
}
|
|
114
117
|
|
|
115
118
|
.#{$prefix}--tableofcontents {
|