Skip to content
This repository was archived by the owner on Mar 16, 2024. It is now read-only.

Commit 5d3fb9f

Browse files
committed
fix: select disabled arrow color
1 parent 62656a9 commit 5d3fb9f

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

dist/cherry.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cherry.module.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cherry-components",
3-
"version": "0.0.1-12",
3+
"version": "0.0.1-13",
44
"description": "Cherry React Components",
55
"main": "dist/cherry.js",
66
"module": "dist/cherry.module.js",

src/Layout/Input/Input.styles.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ export const selectWrapperStyles = (theme, size, success, error) => css`
177177
min-height: ${size === "big" ? "55px" : "51px"};
178178
179179
&:disabled ~ svg {
180+
& polyline,
180181
& path {
181182
stroke: ${theme.colors.gray};
182183
}
@@ -187,6 +188,7 @@ export const selectWrapperStyles = (theme, size, success, error) => css`
187188
opacity: 1;
188189
transform: translate3d(0, 0, 0) rotate(180deg);
189190
191+
& polyline,
190192
& path {
191193
stroke: ${theme.colors.secondary};
192194
}
@@ -200,6 +202,7 @@ export const selectWrapperStyles = (theme, size, success, error) => css`
200202
pointer-events: none;
201203
transform: translate3d(0, 0, 0) rotate(0deg);
202204
205+
& polyline,
203206
& path {
204207
stroke: ${theme.colors.secondary};
205208

0 commit comments

Comments
 (0)