Skip to content

Commit 02ceec3

Browse files
authored
Merge pull request #98 from mendix/fix/dropdown-icon-color
Add missing colour styling property for Dropdown Uniform icon
2 parents 275c23e + cd38455 commit 02ceec3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

styles/native/ts/core/widgets/dropdown.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ export const DropDown: DropDownType = {
8686
},
8787
iconStyle: {
8888
// All TextStyle properties are allowed
89+
color: input.color
8990
},
9091
item: {
9192
// All TextStlye properties are allowed

styles/native/ts/core/widgets/referenceselector.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { border, contrast, font, input } from "../variables";
2-
import { DropDownVertical } from "./dropdown";
2+
import { DropDownVertical } from "./dropdown";
33
import { TextBox, TextBoxVertical } from "./textbox";
44
import { DropDownType } from "../../types/widgets";
55
/*
@@ -88,6 +88,7 @@ export const ReferenceSelector: DropDownType = {
8888
},
8989
iconStyle: {
9090
// All TextStyle properties are allowed
91+
color: input.color
9192
},
9293
item: {
9394
// All TextStyle properties are allowed

0 commit comments

Comments
 (0)