Просмотр исходного кода

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.
Denis Doria 8 лет назад
Родитель
Сommit
eaba985f25
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      public/sass/components/_gf-form.scss

+ 3 - 0
public/sass/components/_gf-form.scss

@@ -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 {