React-select: when continuously typing without space width of select box is expanding, see screenshot.

Created on 10 Jan 2018  路  1Comment  路  Source: JedWatson/react-select

Most helpful comment

Fixed with css :
.Select-control{
background-color: #fff;
border-radius: 3px;
border: 1px solid #c9cacc;
color: #333;
cursor: default;
display: table;
border-spacing: 0;
border-collapse: separate;
height: 32px;
outline: none;
overflow: hidden;
position: relative;
width: 100%;
table-layout: fixed;
}
.Select-input > input {
width: 100%;
background: none transparent;
border: 0 none;
box-shadow: none;
cursor: default;
display: inline-block;
font-family: inherit;
font-size: inherit;
margin: 0;
outline: none;
line-height: 17px;
/* For IE 8 compatibility /
padding: 7px 0;
/
For IE 8 compatibility */
-webkit-appearance: none;
max-width:100%;
}
.Select-input {
height: 30px;
padding-left: 10px;
padding-right: 10px;
vertical-align: middle;
max-width:100%;
}
.Select-multi-value-wrapper {
max-width: 100%;
display: block;
}

>All comments

Fixed with css :
.Select-control{
background-color: #fff;
border-radius: 3px;
border: 1px solid #c9cacc;
color: #333;
cursor: default;
display: table;
border-spacing: 0;
border-collapse: separate;
height: 32px;
outline: none;
overflow: hidden;
position: relative;
width: 100%;
table-layout: fixed;
}
.Select-input > input {
width: 100%;
background: none transparent;
border: 0 none;
box-shadow: none;
cursor: default;
display: inline-block;
font-family: inherit;
font-size: inherit;
margin: 0;
outline: none;
line-height: 17px;
/* For IE 8 compatibility /
padding: 7px 0;
/
For IE 8 compatibility */
-webkit-appearance: none;
max-width:100%;
}
.Select-input {
height: 30px;
padding-left: 10px;
padding-right: 10px;
vertical-align: middle;
max-width:100%;
}
.Select-multi-value-wrapper {
max-width: 100%;
display: block;
}

Was this page helpful?
0 / 5 - 0 ratings

Related issues

AchinthaReemal picture AchinthaReemal  路  3Comments

x-yuri picture x-yuri  路  3Comments

joshualimpj picture joshualimpj  路  3Comments

sampatbadhe picture sampatbadhe  路  3Comments

MindRave picture MindRave  路  3Comments