File tree Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ export const enum Color {
12
12
Gray5 = '#657277' ,
13
13
Gray7 = '#272c2e' ,
14
14
Gray9 = '#080909' ,
15
+ Green3 = '#95EABE' ,
15
16
Orange3 = '#FDC088' ,
16
17
Orange5 = '#fb8b24' ,
17
18
Purple2 = '#f2d0f5' ,
@@ -23,5 +24,6 @@ export const enum Color {
23
24
Red3 = '#FEA395' ,
24
25
Red5 = '#FD5138' ,
25
26
Red6 = '#F72202' ,
26
- Brown1 = '#9e4c41'
27
+ Brown1 = '#9e4c41' ,
28
+ White = '#FFFFFF'
27
29
}
Original file line number Diff line number Diff line change 134
134
align-items : center ;
135
135
justify-content : space-between ;
136
136
137
+ .select-option-info {
138
+ display : flex ;
139
+ flex-direction : row ;
140
+ align-items : center ;
141
+
142
+ & > * {
143
+ margin-right : 8px ;
144
+ }
145
+ }
146
+
137
147
.label {
138
148
padding-right : 8px ;
139
149
}
Original file line number Diff line number Diff line change @@ -97,8 +97,17 @@ import { SelectSize } from './select-size';
97
97
class="select-option"
98
98
[ngClass]="this.size"
99
99
>
100
- <ht-icon *ngIf="item.icon" class="icon" [icon]="item.icon" size="${ IconSize . Small } "> </ht-icon>
101
- <span class="label">{{ item.label }}</span>
100
+ <div class="select-option-info">
101
+ <ht-icon
102
+ *ngIf="item.icon"
103
+ class="icon"
104
+ [icon]="item.icon"
105
+ size="${ IconSize . Small } "
106
+ [color]="item.iconColor"
107
+ >
108
+ </ht-icon>
109
+ <span class="label">{{ item.label }}</span>
110
+ </div>
102
111
<ht-icon
103
112
class="status-icon"
104
113
*ngIf="showSelectionStatus && this.highlightSelected && this.isSelectedItem(item)"
You can’t perform that action at this time.
0 commit comments