Simple Charts Filter value display not wide enough

0
I have added a filter field to a line graph using simple charts. When I select the filter the drop down of filter values is not wide enough and most of the values are getting truncated.
asked
1 answers
0

You could try adding something like this to your theme css:

.tundra .dijitInputContainer INPUT, .tundra .dijitTextBox {
    margin: 0 0.1em;
    width: 250px;
}
or
input, select, textarea {
    -moz-box-sizing: border-box;
    width: 250px;
}

answered