You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by rj...@apache.org on 2013/02/22 07:18:36 UTC

svn commit: r1448910 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_change.html

Author: rjollos
Date: Fri Feb 22 06:18:35 2013
New Revision: 1448910

URL: http://svn.apache.org/r1448910
Log:
Refs #384: Modify ticket comment editor submit buttons to Bootstrap styling.

Modified:
    incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_change.html

Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_change.html
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_change.html?rev=1448910&r1=1448909&r2=1448910&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_change.html (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_ticket_change.html Fri Feb 22 06:18:35 2013
@@ -134,12 +134,14 @@ Arguments:
 ${edited_comment if edited_comment is not None else change.comment}</textarea>
           <input type="hidden" name="cnum_edit" value="${cnum}"/>
         </div>
-        <div class="buttons">
-          <input type="submit" name="preview_comment" value="${_('Preview')}"
-                 title="${_('Preview changes to comment %(cnum)s', cnum=cnum)}"/>
-          <input type="submit" name="edit_comment" value="${_('Submit changes')}"
-                 title="${_('Submit changes to comment %(cnum)s', cnum=cnum)}"/>
-          <input type="submit" name="cancel_comment" value="${_('Cancel')}"
+        <div class="btn-toolbar buttons">
+          <div class="btn-group">
+            <input class="btn" type="submit" name="preview_comment" value="${_('Preview')}"
+                   title="${_('Preview changes to comment %(cnum)s', cnum=cnum)}"/>
+            <input class="btn" type="submit" name="edit_comment" value="${_('Submit changes')}"
+                   title="${_('Submit changes to comment %(cnum)s', cnum=cnum)}"/>
+          </div>
+          <input class="btn-link" type="submit" name="cancel_comment" value="${_('Cancel')}"
                  title="Cancel comment edit"/>
         </div>
       </form>