Browse Source

- Fix bug where label text in a single-input dialog could be partially invisible in some locales (#8905)

pull/8962/head
Aleksander Machniak 2 years ago
parent
commit
0c8dc088fc
  1. 1
      CHANGELOG.md
  2. 4
      skins/elastic/ui.js

1
CHANGELOG.md

@ -16,6 +16,7 @@
- Fix invalid onclick handler on the logo image when using non-array skin_logo setting (#8933)
- Fix duplicate recipients in "To" and "Cc" on reply (#8912)
- Fix bug where it wasn't possible to scroll lists by clicking middle mouse button (#8942)
- Fix bug where label text in a single-input dialog could be partially invisible in some locales (#8905)
## Release 1.6.1

4
skins/elastic/ui.js

@ -870,8 +870,8 @@ function rcube_elastic_ui()
$('.popup', context).addClass('formcontent').append(
$('<div class="form-group row">')
.append(label.attr('for', id).addClass('col-sm-2 col-form-label'))
.append($('<div class="col-sm-10">').append(input))
.append(label.attr('for', id).addClass('col-sm-4 col-form-label text-break'))
.append($('<div class="col-sm-8">').append(input))
);
input.focus();

Loading…
Cancel
Save