Skip to content

Commit da434f3

Browse files
committed
Fix #5543
1 parent 5e8d078 commit da434f3

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

src/shared/components/Contentful/SearchPageFilter/FilterAuthor/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class FilterAuthorInner extends Component {
7272
}}
7373
>
7474
<span>{selected}</span>
75-
<IconArrow className={theme['icon-arrow']} />
75+
<IconArrow className={theme[isShowPopup ? 'icon-arrow-popup' : 'icon-arrow']} />
7676
</button>
7777
{isShowPopup && (
7878
<div className={theme.popup}>

src/shared/components/Contentful/SearchPageFilter/FilterAuthor/themes/default.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,17 @@ $text-black: #2a2a2a;
5353
}
5454
}
5555

56+
.icon-arrow-popup {
57+
-moz-transform: none;
58+
-o-transform: none;
59+
-webkit-transform: none;
60+
transform: none;
61+
62+
polygon {
63+
fill: #aaa;
64+
}
65+
}
66+
5667
.popup {
5768
position: absolute;
5869
left: 0;

0 commit comments

Comments
 (0)