@carbon/styles 1.16.0 → 1.17.0-rc.1
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.
|
|
4
|
+
"version": "1.17.0-rc.1",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"sass": "^1.33.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@carbon/colors": "^11.7.0",
|
|
35
|
+
"@carbon/colors": "^11.7.1-rc.0",
|
|
36
36
|
"@carbon/feature-flags": "^0.9.0",
|
|
37
37
|
"@carbon/grid": "^11.7.0",
|
|
38
38
|
"@carbon/layout": "^11.7.0",
|
|
39
39
|
"@carbon/motion": "^11.5.0",
|
|
40
|
-
"@carbon/themes": "^11.11.0",
|
|
40
|
+
"@carbon/themes": "^11.11.1-rc.0",
|
|
41
41
|
"@carbon/type": "^11.11.0",
|
|
42
42
|
"@ibm/plex": "6.0.0-next.6"
|
|
43
43
|
},
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"scss/**/*.css",
|
|
60
60
|
"css/**/*.css"
|
|
61
61
|
],
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "01475a0713de3b5243b747ffe7036f652ae5c22f"
|
|
63
63
|
}
|
|
@@ -31,9 +31,18 @@
|
|
|
31
31
|
top: rem(13px);
|
|
32
32
|
left: $spacing-05;
|
|
33
33
|
display: flex;
|
|
34
|
+
width: calc(100% - 2rem);
|
|
34
35
|
height: rem(16px);
|
|
35
36
|
align-items: center;
|
|
36
37
|
margin: 0;
|
|
38
|
+
-ms-overflow-style: none;
|
|
39
|
+
overflow-x: scroll;
|
|
40
|
+
scrollbar-width: none;
|
|
41
|
+
white-space: nowrap;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.#{$prefix}--text-input--fluid .#{$prefix}--label::-webkit-scrollbar {
|
|
45
|
+
display: none;
|
|
37
46
|
}
|
|
38
47
|
|
|
39
48
|
.#{$prefix}--text-input--fluid .#{$prefix}--form__helper-text {
|
|
@@ -385,6 +385,12 @@
|
|
|
385
385
|
z-index: z('modal');
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
+
// Fluid Modal (No padding)
|
|
389
|
+
.#{$prefix}--modal-container--full-width .#{$prefix}--modal-content {
|
|
390
|
+
padding: 0;
|
|
391
|
+
margin: 0;
|
|
392
|
+
}
|
|
393
|
+
|
|
388
394
|
// Windows HCM fix
|
|
389
395
|
/* stylelint-disable */
|
|
390
396
|
.#{$prefix}--modal-close__icon {
|
|
@@ -72,6 +72,17 @@
|
|
|
72
72
|
fill: $support-error;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
+
.#{$prefix}--text-area__counter-alert {
|
|
76
|
+
position: absolute;
|
|
77
|
+
overflow: hidden;
|
|
78
|
+
width: 1px;
|
|
79
|
+
height: 1px;
|
|
80
|
+
padding: 0;
|
|
81
|
+
border: 0;
|
|
82
|
+
margin: -1px;
|
|
83
|
+
clip: rect(0, 0, 0, 0);
|
|
84
|
+
}
|
|
85
|
+
|
|
75
86
|
//-----------------------------
|
|
76
87
|
// Disabled
|
|
77
88
|
//-----------------------------
|