@carbon/styles 1.94.1-rc.0 → 1.95.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 +10 -1
- package/css/styles.min.css +1 -1
- package/package.json +3 -3
- package/scss/components/search/_search.scss +10 -3
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.95.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@carbon/grid": "^11.45.0",
|
|
46
46
|
"@carbon/layout": "^11.43.0",
|
|
47
47
|
"@carbon/motion": "^11.37.0",
|
|
48
|
-
"@carbon/themes": "^11.
|
|
48
|
+
"@carbon/themes": "^11.63.0",
|
|
49
49
|
"@carbon/type": "^11.49.0",
|
|
50
50
|
"@ibm/plex": "6.0.0-next.6",
|
|
51
51
|
"@ibm/plex-mono": "1.1.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"scss/**/*.css",
|
|
76
76
|
"css/**/*.css"
|
|
77
77
|
],
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "d2ccae94e5aa3defcce07cc9ea90058fda6c9705"
|
|
79
79
|
}
|
|
@@ -334,9 +334,7 @@
|
|
|
334
334
|
.#{$prefix}--search--expandable .#{$prefix}--search-input {
|
|
335
335
|
padding: 0;
|
|
336
336
|
inline-size: 0;
|
|
337
|
-
transition:
|
|
338
|
-
padding $duration-fast-01 motion(standard, productive),
|
|
339
|
-
width 0s linear $duration-fast-01;
|
|
337
|
+
transition: transform $duration-fast-01 motion(standard, productive);
|
|
340
338
|
|
|
341
339
|
&::placeholder {
|
|
342
340
|
position: relative;
|
|
@@ -389,4 +387,13 @@
|
|
|
389
387
|
.#{$prefix}--search--expandable.#{$prefix}--search--disabled svg {
|
|
390
388
|
fill: $icon-disabled;
|
|
391
389
|
}
|
|
390
|
+
|
|
391
|
+
.#{$prefix}--search-magnifier-tooltip {
|
|
392
|
+
display: flex;
|
|
393
|
+
align-items: center;
|
|
394
|
+
justify-content: center;
|
|
395
|
+
.#{$prefix}--search-magnifier {
|
|
396
|
+
position: relative;
|
|
397
|
+
}
|
|
398
|
+
}
|
|
392
399
|
}
|