File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
src/Shared/Components/SelectPicker Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ export const SelectPickerMenuList = ({
175
175
< div className = "py-4 cursor" > { shouldRenderCustomOptions ? renderCustomOptions ( ) : children } </ div >
176
176
{ /* Added to the bottom of menu list to prevent from hiding when the menu is opened close to the bottom of the screen */ }
177
177
{ ! shouldRenderCustomOptions && renderMenuListFooter && (
178
- < div className = " dc__position-sticky dc__bottom-0 dc__bottom-radius-4 bcn-0" >
178
+ < div className = "dc__position-sticky dc__bottom-0 dc__bottom-radius-4 bcn-0 dc__zi-2 " >
179
179
{ renderMenuListFooter ( ) }
180
180
</ div >
181
181
) }
@@ -192,7 +192,7 @@ export const SelectPickerMultiValueLabel = ({
192
192
const iconToDisplay = isOptionValid ? data . startIcon || data . endIcon : < ICErrorExclamation />
193
193
194
194
return (
195
- < div className = "flex dc__gap-4 mw-0" >
195
+ < div className = "flex dc__gap-4 mw-0 dc__truncate " >
196
196
{ iconToDisplay && (
197
197
< div
198
198
className = { `dc__no-shrink ${ selectProps . isMulti ? 'icon-dim-16' : 'icon-dim-20' } flex dc__fill-available-space` }
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ export const getCommonSelectStyle = ({
167
167
padding : '0' ,
168
168
fontWeight : '400' ,
169
169
...( state . selectProps . isMulti && {
170
- gap : '8px ' ,
170
+ gap : '6px ' ,
171
171
} ) ,
172
172
} ) ,
173
173
multiValue : ( base , state ) => {
@@ -202,8 +202,9 @@ export const getCommonSelectStyle = ({
202
202
borderRadius : 0 ,
203
203
204
204
'&:hover' : {
205
- backgroundColor : 'transparent ' ,
205
+ backgroundColor : 'var(--R100) ' ,
206
206
color : 'inherit' ,
207
+ borderRadius : '2px' ,
207
208
208
209
'svg use' : {
209
210
fill : 'var(--R500)' ,
You can’t perform that action at this time.
0 commit comments