TAP5-2075 - Fix checkbox validation error message layout by adding a input-group div
Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/bc121635 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/bc121635 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/bc121635 Branch: refs/heads/master Commit: bc1216352071fb1787e4e05ab585691d4d948c32 Parents: 6eaedc9 Author: Balázs Palcsó <[email protected]> Authored: Tue Jan 1 20:29:38 2019 +0100 Committer: Balázs Palcsó <[email protected]> Committed: Thu Jan 17 18:33:19 2019 +0100 ---------------------------------------------------------------------- .../org/apache/tapestry5/corelib/pages/PropertyEditBlocks.tml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/bc121635/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/PropertyEditBlocks.tml ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/PropertyEditBlocks.tml b/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/PropertyEditBlocks.tml index b53bc89..a5ea0a3 100644 --- a/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/PropertyEditBlocks.tml +++ b/tapestry-core/src/main/resources/org/apache/tapestry5/corelib/pages/PropertyEditBlocks.tml @@ -17,8 +17,10 @@ <div class="checkbox"> <label> - <input t:id="checkboxField"/> - ${context.label} + <div class="input-group"> + <input t:id="checkboxField"/> + ${context.label} + </div> </label> </div> </t:block>
