diff options
author | BonfaceKilz | 2020-04-13 21:39:01 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-04-13 21:39:01 +0300 |
commit | 413b98466d14590f58534897069a113845c2bb28 (patch) | |
tree | 84e08a56f58d71800caafd9033659d5c12fa7681 /bh20simplewebuploader/templates | |
parent | 54efd8a9e08032929f3f779c438f51472b5aabda (diff) | |
download | bh20-seq-resource-413b98466d14590f58534897069a113845c2bb28.tar.gz bh20-seq-resource-413b98466d14590f58534897069a113845c2bb28.tar.lz bh20-seq-resource-413b98466d14590f58534897069a113845c2bb28.zip |
Fix wrong rendering of form elements inside chromium (closes #9)
https://css-tricks.com/almanac/properties/b/break-inside/
Diffstat (limited to 'bh20simplewebuploader/templates')
-rw-r--r-- | bh20simplewebuploader/templates/form.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bh20simplewebuploader/templates/form.html b/bh20simplewebuploader/templates/form.html index 8ce6f6f..d960bb2 100644 --- a/bh20simplewebuploader/templates/form.html +++ b/bh20simplewebuploader/templates/form.html @@ -87,6 +87,9 @@ padding: 1em; background: #F8F8F8; margin-bottom: 1em; + -webkit-column-break-inside: avoid; /* Chrome, Safari, Opera */ + page-break-inside: avoid; /* Firefox */ + break-inside: avoid; } .record label { |