1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Prevented text in inputs from wrapping

This commit is contained in:
Hillel Coren 2014-09-17 09:26:01 +03:00
parent f6ac344c3f
commit 539d86770e
3 changed files with 8 additions and 1 deletions

View File

@ -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',
);

View File

@ -2026,6 +2026,10 @@ div {
word-break: break-word;
}
div.input-group {
word-break: normal;
}
div.required > label {
font-weight: bold !important;
}

View File

@ -251,6 +251,10 @@ div {
word-break: break-word;
}
div.input-group {
word-break: normal;
}
div.required > label {
font-weight: bold !important;
}