From 539d86770e8d60248111fdf119715636048cc522 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Wed, 17 Sep 2014 09:26:01 +0300 Subject: [PATCH] Prevented text in inputs from wrapping --- app/lang/en/texts.php | 1 - public/built.css | 4 ++++ public/css/style.css | 4 ++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/app/lang/en/texts.php b/app/lang/en/texts.php index 25a3c16f7c97..b8648c28f0be 100644 --- a/app/lang/en/texts.php +++ b/app/lang/en/texts.php @@ -428,5 +428,4 @@ return array( 'cancel_account_message' => 'Warning: This will permanently erase all of your data, there is no undo.', 'go_back' => 'Go Back', - ); \ No newline at end of file diff --git a/public/built.css b/public/built.css index 7be4d1223df2..e081951a12c7 100644 --- a/public/built.css +++ b/public/built.css @@ -2026,6 +2026,10 @@ div { word-break: break-word; } +div.input-group { + word-break: normal; +} + div.required > label { font-weight: bold !important; } diff --git a/public/css/style.css b/public/css/style.css index e40458f92b9d..0244c4c219b9 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -251,6 +251,10 @@ div { word-break: break-word; } +div.input-group { + word-break: normal; +} + div.required > label { font-weight: bold !important; }