Form labels don't wrap

This commit is contained in:
Ben Garrett 2019-06-09 13:23:47 +10:00
parent b99b061b3b
commit 7ac939ebaa
2 changed files with 5 additions and 0 deletions

View File

@ -18,6 +18,7 @@ Introduced breaking meta element name changes.
* Fixed `DOSee.newQueryString()` incorrectly handling URLs that lacked `#` symbols
* Replaced depreciated `onkeydown.which` property usage with `onkeydown.key`
* Navigation keyboard keys will be restored if DOSee has been stopped
* Form labels now do not wrap over multiple lines
### v1.20

View File

@ -9,6 +9,10 @@
display: none;
}
label {
white-space: nowrap;
}
.radio-inline {
white-space: nowrap;
}