@carbon/styles 1.85.0 → 1.86.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 +12 -1
- package/css/styles.min.css +1 -1
- package/package.json +9 -9
- package/scss/_feature-flags.scss +1 -0
- package/scss/components/accordion/_accordion.scss +1 -0
- package/scss/components/button/_button.scss +8 -2
- package/scss/components/tile/_tile.scss +3 -0
- package/scss/components/toggle/_toggle.scss +8 -1
- package/scss/components/tooltip/_tooltip.scss +4 -0
package/css/styles.css
CHANGED
|
@@ -3825,6 +3825,7 @@ em {
|
|
|
3825
3825
|
}
|
|
3826
3826
|
|
|
3827
3827
|
.cds--accordion__heading[disabled] {
|
|
3828
|
+
background-color: transparent;
|
|
3828
3829
|
color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
|
|
3829
3830
|
cursor: not-allowed;
|
|
3830
3831
|
}
|
|
@@ -4641,6 +4642,10 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4641
4642
|
overflow-wrap: break-word;
|
|
4642
4643
|
}
|
|
4643
4644
|
|
|
4645
|
+
.cds--tooltip-content--multiline {
|
|
4646
|
+
padding: var(--cds-tooltip-padding-inline, 1rem);
|
|
4647
|
+
}
|
|
4648
|
+
|
|
4644
4649
|
.cds--icon-tooltip {
|
|
4645
4650
|
--cds-tooltip-padding-block: 0.125rem;
|
|
4646
4651
|
--cds-popover-caret-width: 0.5rem;
|
|
@@ -4712,7 +4717,7 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4712
4717
|
}
|
|
4713
4718
|
|
|
4714
4719
|
.cds--btn {
|
|
4715
|
-
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-
|
|
4720
|
+
--cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-xs)), var(--cds-layout-size-height, var(--cds-layout-size-height-lg)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-2xl)));
|
|
4716
4721
|
--cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
|
|
4717
4722
|
--temp-1lh: (
|
|
4718
4723
|
var(--cds-body-compact-01-line-height, 1.28572) * 1em
|
|
@@ -4933,6 +4938,11 @@ li.cds--accordion__item--disabled:last-of-type {
|
|
|
4933
4938
|
padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) - 1rem);
|
|
4934
4939
|
}
|
|
4935
4940
|
|
|
4941
|
+
.cds--btn--xs:not(.cds--btn--icon-only) {
|
|
4942
|
+
padding-block-start: 1.5px;
|
|
4943
|
+
}
|
|
4944
|
+
|
|
4945
|
+
.cds--btn--xs:not(.cds--btn--icon-only) .cds--btn__icon,
|
|
4936
4946
|
.cds--btn--sm:not(.cds--btn--icon-only) .cds--btn__icon,
|
|
4937
4947
|
.cds--btn--md:not(.cds--btn--icon-only) .cds--btn__icon {
|
|
4938
4948
|
margin-block-start: 0;
|
|
@@ -25236,6 +25246,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
25236
25246
|
|
|
25237
25247
|
.cds--tile--decorator:has(.cds--ai-label).cds--tile--selectable::before,
|
|
25238
25248
|
.cds--tile--decorator:has(.cds--ai-label).cds--tile--clickable::before,
|
|
25249
|
+
.cds--tile--decorator:has(.cds--tile--ai-label-icon).cds--tile--clickable::before,
|
|
25239
25250
|
.cds--tile--slug.cds--tile--selectable::before,
|
|
25240
25251
|
.cds--tile--slug.cds--tile--clickable::before {
|
|
25241
25252
|
background: linear-gradient(to top, var(--cds-ai-aura-hover-start, rgba(69, 137, 255, 0.32)) 0%, 15%, var(--cds-ai-aura-hover-end, rgba(255, 255, 255, 0)) 50%) padding-box, linear-gradient(to top, var(--cds-ai-aura-hover-background, #edf5ff), var(--cds-ai-aura-hover-background, #edf5ff)) padding-box, linear-gradient(to bottom, var(--cds-ai-border-start, rgba(166, 200, 255, 0.64)), var(--cds-ai-border-end, #78a9ff)) border-box, linear-gradient(to top, var(--cds-ai-aura-hover-background, #edf5ff), var(--cds-ai-aura-hover-background, #edf5ff)) border-box;
|