##// END OF EJS Templates
helper-blocks: fix pre formatting only for auth plugin helper texts....
marcink -
r1470:337b0a05 default
parent child Browse files
Show More
@@ -61,7 +61,9 b''
61 61 .help-block {
62 62 display: block;
63 63 margin-left: @label-width;
64 white-space: pre;
64 &.pre-formatting {
65 white-space: pre;
66 }
65 67 }
66 68
67 69 .action_button {
@@ -72,7 +72,7 b''
72 72 <span class="error-message">${errors.get(node.name)}</span>
73 73 <br />
74 74 %endif
75 <p class="help-block">${node.description}</p>
75 <p class="help-block pre-formatting">${node.description}</p>
76 76 </div>
77 77 </div>
78 78 %endfor
@@ -10,9 +10,7 b''
10 10 </div>
11 11 <div class="checkboxes">
12 12 ${h.checkbox('inherit_global_settings',value=True)}
13 <span class="help-block">
14 ${h.literal(_('Select to inherit global vcs settings.'))}
15 </span>
13 <span class="help-block">${h.literal(_('Select to inherit global vcs settings.'))}</span>
16 14 </div>
17 15 </div>
18 16 </div>
@@ -69,8 +69,7 b''
69 69 % endif
70 70 ${_('an administrator if you need help.')}
71 71 </p>
72 %endif
73
72 %endif
74 73
75 74 ${h.submit('sign_in', _('Sign In'), class_="btn sign-in")}
76 75
@@ -48,9 +48,7 b''
48 48 </div>
49 49 <div class="textarea text-area editor">
50 50 ${h.textarea('pullrequest_desc',size=30, )}
51 <span class="help-block">
52 ${_('Write a short description on this pull request')}
53 </span>
51 <span class="help-block">${_('Write a short description on this pull request')}</span>
54 52 </div>
55 53 </div>
56 54
General Comments 0
You need to be logged in to leave comments. Login now