Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[#603 state:resolved] Improved styling of "change note" field and inc…
…orporated feedback from the community. Here is what I did:

* changed text from Change Note to Revision Note
* made input field on Edit Template full width
* convert plain text input field on Edit Entry to a 2-line textarea
  • Loading branch information
byrnereese committed Feb 7, 2011
1 parent a87ba82 commit 1a860d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tmpl/cms/edit_entry.tmpl
Expand Up @@ -472,9 +472,9 @@
<mt:if name="use_revision">
<mtapp:setting
id="revision-note"
label="<__trans phrase="Change note">"
label="<__trans phrase="Revision note">"
label_class="left-label">
<input type="text" name="revision-note" id="revision-note" value="<mt:var name="revision-note" escape="html">" />
<textarea name="revision-note" id="revision-note" class="full-width" rows="2"><mt:var name="revision-note" escape="html"></textarea>
</mtapp:setting>
</mt:if>
</mtapp:widget>
Expand Down
6 changes: 3 additions & 3 deletions tmpl/cms/edit_template.tmpl
Expand Up @@ -785,9 +785,9 @@ Wrapping is currently hard-coded active for demonstration via the text-area's mt
<mt:if name="use_revision">
<mtapp:setting
id="revision-note"
label="<__trans phrase="Change note">"
label_class="left-label">
<input type="text" name="revision-note" id="revision-note" value="<mt:var name="revision-note" escape="html">"<mt:if name="save_revision" eq="0"> style="display:none"</mt:if>/>
label="<__trans phrase="Revision note">"
label_class="top-label">
<input type="text" class="full-width" name="revision-note" id="revision-note" value="<mt:var name="revision-note" escape="html">"<mt:if name="save_revision" eq="0"> style="display:none"</mt:if>/>
</mtapp:setting>
</mt:if>

Expand Down

0 comments on commit 1a860d3

Please sign in to comment.