From 7ac939ebaaf9202a7af141c15d5229ebdd01ed45 Mon Sep 17 00:00:00 2001 From: Ben Garrett Date: Sun, 9 Jun 2019 13:23:47 +1000 Subject: [PATCH] Form labels don't wrap --- CHANGES.md | 1 + index.css | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 6a922b7..8677d88 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/index.css b/index.css index f5b52ce..a9c8f43 100644 --- a/index.css +++ b/index.css @@ -9,6 +9,10 @@ display: none; } +label { + white-space: nowrap; +} + .radio-inline { white-space: nowrap; }