Author: rjollos
Date: Mon Mar  4 04:44:40 2013
New Revision: 1452184

URL: http://svn.apache.org/r1452184
Log:
Refs #426: Add `span12` class to `h1` element on Milestone delete, Report 
delete and Report edit pages, to prevent misalignment of text on page.

Modified:
    
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_milestone_delete.html
    
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_delete.html
    
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_edit.html

Modified: 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_milestone_delete.html
URL: 
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_milestone_delete.html?rev=1452184&r1=1452183&r2=1452184&view=diff
==============================================================================
--- 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_milestone_delete.html
 (original)
+++ 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_milestone_delete.html
 Mon Mar  4 04:44:40 2013
@@ -38,7 +38,7 @@
 
   <body>
     <div id="content" class="milestone row">
-      <h1>Delete Milestone ${milestone.name}</h1>
+      <h1 class="span12">Delete Milestone ${milestone.name}</h1>
 
       <div class="span12">
         <form id="edit" action="" method="post">

Modified: 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_delete.html
URL: 
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_delete.html?rev=1452184&r1=1452183&r2=1452184&view=diff
==============================================================================
--- 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_delete.html
 (original)
+++ 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_delete.html
 Mon Mar  4 04:44:40 2013
@@ -30,7 +30,7 @@
 
   <body>
     <div id="content" class="report row">
-      <h1>$report.title</h1>
+      <h1 class="span12">$report.title</h1>
       <div class="span12">
         <form action="${href.report()}" method="post">
           <p><strong>Are you sure you want to delete this report?</strong></p>

Modified: 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_edit.html
URL: 
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_edit.html?rev=1452184&r1=1452183&r2=1452184&view=diff
==============================================================================
--- 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_edit.html
 (original)
+++ 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_report_edit.html
 Mon Mar  4 04:44:40 2013
@@ -32,7 +32,9 @@
   <body>
     <div id="content" class="report row">
 
-      <h1>${_('New Report') if action == 'new' else report.title}</h1>
+      <h1 class="span12">
+        ${_('New Report') if action == 'new' else report.title}
+      </h1>
       <div class="span12">
         <form action="${href.report(report.id)}" method="post" id="edit_report"
             class="form-horizontal">


Reply via email to