From 5b37145f613f1468bd54d768dfad8ef0b4631f57 Mon Sep 17 00:00:00 2001 From: Adam Shimali Date: Mon, 7 Mar 2016 14:09:03 +0000 Subject: [PATCH] Wrap un editiable email address for invite in p tag to give it some space from rest of form. --- app/templates/components/textbox.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/templates/components/textbox.html b/app/templates/components/textbox.html index 2fb5ea89e..78241a630 100644 --- a/app/templates/components/textbox.html +++ b/app/templates/components/textbox.html @@ -24,11 +24,12 @@ {% endif %} {% if disabled %} - {{ field(**{ - 'class': 'form-control form-control-{} textbox-highlight-textbox'.format(width) if highlight_tags else 'form-control form-control-{} {}'.format(width, 'textbox-right-aligned' if suffix else ''), - 'data-module': 'highlight-tags' if highlight_tags else '', - 'disabled': 'disabled' - }) }} +

{{ field(**{ + 'class': 'form-control form-control-{} textbox-highlight-textbox'.format(width) if highlight_tags else 'form-control form-control-{} {}'.format(width, 'textbox-right-aligned' if suffix else ''), + 'data-module': 'highlight-tags' if highlight_tags else '', + 'disabled': 'disabled' + }) }} +

{% else %} {{ field(**{ 'class': 'form-control form-control-{} textbox-highlight-textbox'.format(width) if highlight_tags else 'form-control form-control-{} {}'.format(width, 'textbox-right-aligned' if suffix else ''),