@carbon/ibm-products-styles 2.63.0 → 2.64.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/index-full-carbon.css +252 -261
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +1 -1
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +13 -31
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +1 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +252 -261
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +1 -1
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +26 -35
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/package.json +3 -3
- package/scss/components/AboutModal/_about-modal.scss +3 -1
- package/scss/components/BreadcrumbWithOverflow/_breadcrumb-with-overflow.scss +0 -1
- package/scss/components/Carousel/_carousel.scss +5 -0
- package/scss/components/Datagrid/styles/_draggableElement.scss +14 -8
- package/scss/components/Datagrid/styles/addons/_CustomizeColumnsTearsheet.scss +0 -7
- package/scss/components/FilterSummary/_filter-summary.scss +0 -5
- package/scss/components/InterstitialScreen/_interstitial-screen.scss +2 -2
- package/scss/global/styles/_display-box.scss +1 -3
- package/scss/components/FilterSummary/_animations.scss +0 -20
|
@@ -25,9 +25,11 @@ $block-class: #{c4p-settings.$pkg-prefix}--about-modal;
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.#{$block-class} .#{$block-class}__header {
|
|
28
|
-
padding: 0
|
|
28
|
+
padding: 0;
|
|
29
29
|
grid-row: auto;
|
|
30
30
|
margin-block-end: 0;
|
|
31
|
+
padding-inline-end: 20%;
|
|
32
|
+
padding-inline-start: $spacing-05;
|
|
31
33
|
}
|
|
32
34
|
|
|
33
35
|
.#{$block-class} .#{$block-class}__title {
|
|
@@ -80,7 +80,6 @@ $_block-class: #{c4p-settings.$pkg-prefix}--breadcrumb-with-overflow;
|
|
|
80
80
|
|
|
81
81
|
.#{$_block-class}__displayed-breadcrumb:last-child {
|
|
82
82
|
display: inline-flex; // flex instead of block due to spacing
|
|
83
|
-
overflow: hidden;
|
|
84
83
|
}
|
|
85
84
|
|
|
86
85
|
.#{$_block-class}__displayed-breadcrumb:last-child
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
@use '@carbon/styles/scss/theme' as *;
|
|
14
14
|
@use '@carbon/styles/scss/themes';
|
|
15
15
|
@use '@carbon/styles/scss/type' as *;
|
|
16
|
+
@use '@carbon/styles/scss/utilities';
|
|
16
17
|
@use '../../global/styles/project-settings' as c4p-settings;
|
|
17
18
|
|
|
18
19
|
// The block part of our conventional BEM class names (blockClass__E--M).
|
|
@@ -60,6 +61,10 @@ $block-class: #{c4p-settings.$pkg-prefix}--carousel;
|
|
|
60
61
|
-ms-user-select: none;
|
|
61
62
|
user-select: none;
|
|
62
63
|
|
|
64
|
+
&:focus {
|
|
65
|
+
@include utilities.focus-outline('outline');
|
|
66
|
+
}
|
|
67
|
+
|
|
63
68
|
/* stylelint-disable-next-line max-nesting-depth */
|
|
64
69
|
@media (prefers-reduced-motion) {
|
|
65
70
|
scroll-behavior: auto;
|
|
@@ -11,13 +11,24 @@
|
|
|
11
11
|
@use '@carbon/styles/scss/motion' as *;
|
|
12
12
|
@use './variables';
|
|
13
13
|
|
|
14
|
+
// Drag handle.
|
|
14
15
|
.#{variables.$block-class}__draggable-handleStyle {
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
// Cancel out default button styling.
|
|
17
|
+
padding: 0;
|
|
18
|
+
border: none;
|
|
19
|
+
background: none;
|
|
20
|
+
|
|
21
|
+
cursor: grab;
|
|
17
22
|
margin-inline-end: $spacing-03;
|
|
18
23
|
}
|
|
19
24
|
|
|
25
|
+
.#{variables.$block-class}__draggable-handleStyle:active,
|
|
26
|
+
.#{variables.$block-class}__draggable-handleHolder--dragging {
|
|
27
|
+
cursor: grabbing;
|
|
28
|
+
}
|
|
29
|
+
|
|
20
30
|
.#{variables.$block-class}__draggable-handleStyle.disabled {
|
|
31
|
+
cursor: none;
|
|
21
32
|
pointer-events: none;
|
|
22
33
|
}
|
|
23
34
|
|
|
@@ -39,13 +50,13 @@
|
|
|
39
50
|
inline-size: 100%;
|
|
40
51
|
}
|
|
41
52
|
|
|
53
|
+
// The draggable element itself.
|
|
42
54
|
.#{variables.$block-class}__draggable-handleHolder {
|
|
43
55
|
position: relative; // above underlay
|
|
44
56
|
display: flex;
|
|
45
57
|
background-color: $layer;
|
|
46
58
|
block-size: $spacing-09;
|
|
47
59
|
border-block-end: 1px solid $layer-active;
|
|
48
|
-
cursor: grab;
|
|
49
60
|
}
|
|
50
61
|
|
|
51
62
|
.#{variables.$block-class}__draggable-handleHolder:hover {
|
|
@@ -68,11 +79,6 @@
|
|
|
68
79
|
outline: none;
|
|
69
80
|
}
|
|
70
81
|
|
|
71
|
-
.#{variables.$block-class}__draggable-handleHolder:active,
|
|
72
|
-
.#{variables.$block-class}__draggable-handleHolder--dragging {
|
|
73
|
-
cursor: grabbing;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
82
|
.#{variables.$block-class}__draggable-handleHolder-selected:hover {
|
|
77
83
|
background-color: $layer-selected-hover-01;
|
|
78
84
|
}
|
|
@@ -38,13 +38,6 @@
|
|
|
38
38
|
justify-content: center;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
.#{variables.$block-class}__customize-columns-column-list
|
|
42
|
-
.#{variables.$block-class}__customize-columns-checkbox-visible-label {
|
|
43
|
-
// Disabling linter only to match the spacing that Carbon uses for the Checkbox label
|
|
44
|
-
/* stylelint-disable-next-line */
|
|
45
|
-
padding-inline-start: convert.to-rem(6px);
|
|
46
|
-
}
|
|
47
|
-
|
|
48
41
|
.#{variables.$block-class}__customize-columns-column-list
|
|
49
42
|
.#{variables.$block-class}__customize-columns-checkbox-wrapper.#{c4p-settings.$carbon-prefix}--form-item {
|
|
50
43
|
margin-block-end: 0;
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
@use '@carbon/styles/scss/spacing' as *;
|
|
10
10
|
@use '@carbon/styles/scss/theme' as *;
|
|
11
11
|
@use '@carbon/styles/scss/motion' as *;
|
|
12
|
-
@use './animations' as *;
|
|
13
12
|
|
|
14
13
|
$block-class: #{$pkg-prefix}--filter-summary;
|
|
15
14
|
|
|
@@ -31,10 +30,6 @@ $block-class: #{$pkg-prefix}--filter-summary;
|
|
|
31
30
|
&.#{$block-class}__expanded {
|
|
32
31
|
block-size: fit-content;
|
|
33
32
|
}
|
|
34
|
-
.#{$pkg-prefix}--tag-set__tag-container {
|
|
35
|
-
animation: filter-summary-enter $duration-moderate-01
|
|
36
|
-
motion(entrance, productive) forwards;
|
|
37
|
-
}
|
|
38
33
|
}
|
|
39
34
|
|
|
40
35
|
.#{$block-class}
|
|
@@ -70,7 +70,7 @@ $one-grid-column: calc(100% / 16);
|
|
|
70
70
|
.#{$block-class}--titleContainer {
|
|
71
71
|
margin-block-end: $spacing-05;
|
|
72
72
|
|
|
73
|
-
|
|
73
|
+
h1 {
|
|
74
74
|
@include type.type-style('productive-heading-04');
|
|
75
75
|
|
|
76
76
|
margin-block-end: $spacing-03;
|
|
@@ -80,7 +80,7 @@ $one-grid-column: calc(100% / 16);
|
|
|
80
80
|
}
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
-
|
|
83
|
+
h2 {
|
|
84
84
|
@include type.type-style('productive-heading-03');
|
|
85
85
|
|
|
86
86
|
&:empty {
|
|
@@ -41,10 +41,8 @@ $indicator-height: $spacing-04;
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.sb-main-centered .#{$block-class}__message {
|
|
44
|
-
|
|
45
|
-
min-inline-size: 100vh;
|
|
44
|
+
inline-size: inherit;
|
|
46
45
|
text-align: center;
|
|
47
|
-
transform: translateX(-50%);
|
|
48
46
|
}
|
|
49
47
|
|
|
50
48
|
.#{$block-class}__indicator--left,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
//
|
|
2
|
-
// Copyright IBM Corp. 2025, 2025
|
|
3
|
-
//
|
|
4
|
-
// This source code is licensed under the Apache-2.0 license found in the
|
|
5
|
-
// LICENSE file in the root directory of this source tree.
|
|
6
|
-
//
|
|
7
|
-
@keyframes filter-summary-enter {
|
|
8
|
-
0% {
|
|
9
|
-
block-size: 0;
|
|
10
|
-
opacity: 0;
|
|
11
|
-
/* Move from top */
|
|
12
|
-
transform: translateY(calc(var(--panel-transform) * -1));
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
100% {
|
|
16
|
-
block-size: var(--panel-transform);
|
|
17
|
-
opacity: 1;
|
|
18
|
-
transform: translateY(0);
|
|
19
|
-
}
|
|
20
|
-
}
|