Fix issue with kilovolt-ampere reactive (kvar) #8596 (#8650)

This changes the css to handle overflow of the string on the input fields.
If an overflow happends an ellipsis is used.
This commit is contained in:
Denis Doria 2017-06-19 22:23:12 +02:00 committed by Torkel Ödegaard
parent 77136d7a70
commit eaba985f25

View File

@ -113,6 +113,9 @@ $gf-form-margin: 0.25rem;
@include border-radius($input-border-radius-sm);
@include box-shadow($input-box-shadow);
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
// Unstyle the caret on `<select>`s in IE10+.
&::-ms-expand {