Commit eaba985f by Denis Doria Committed by Torkel Ödegaard

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.
parent 77136d7a
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment