From ecdd731b3aef2d7effdecda5f54aecb34b2d634d Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Wed, 6 Dec 2017 17:36:34 +0100 Subject: [PATCH] avoid text overflow --- lam/lib/html.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/html.inc b/lam/lib/html.inc index 32b2e96f..8d3f18f8 100644 --- a/lam/lib/html.inc +++ b/lam/lib/html.inc @@ -4081,7 +4081,7 @@ class htmlResponsiveInputCheckbox extends htmlInputCheckbox { // label text $labelGroup = new htmlGroup(); $labelGroup->addElement(new htmlOutputText($this->label)); - $row->add($labelGroup, 10, $tabletColumnsLabel, $tabletColumnsLabel, 'responsiveLabel nowrap'); + $row->add($labelGroup, 10, $tabletColumnsLabel, $tabletColumnsLabel, 'responsiveLabel'); // input field $fieldGroup = new htmlGroup(); $fieldGroup->addElement($this);