You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by gj...@apache.org on 2012/05/02 12:48:19 UTC

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

Author: gjm
Date: Wed May  2 10:48:19 2012
New Revision: 1332988

URL: http://svn.apache.org/viewvc?rev=1332988&view=rev
Log:
theme: wrapping messages in DIV.row - towards #10 (patch from Olemis)

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

Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html?rev=1332988&r1=1332987&r2=1332988&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html Wed May  2 10:48:19 2012
@@ -191,20 +191,22 @@
         </div>
         <div style="text-align: right;" class="span3"></div>
       </div>
-      <div class="span12" py:if="chrome.warnings or chrome.notices">
-        <div id="warning" py:if="chrome.warnings" class="alert">
-          <py:choose test="len(chrome.warnings)">
-            <span class="label label-warning">Warning</span>
-            <py:when test="1">${chrome.warnings[0]}</py:when>
-            <py:otherwise><ul><li py:for="warning in chrome.warnings">$warning</li></ul></py:otherwise>
-          </py:choose>
-        </div>
-        <div id="notice" py:if="chrome.notices" class="alert alert-success">
-          <py:choose test="len(chrome.notices)">
-            <span class="label label-success">Success</span>
-            <py:when test="1">${chrome.notices[0]}</py:when>
-            <py:otherwise><ul><li py:for="notice in chrome.notices">$notice</li></ul></py:otherwise>
-          </py:choose>
+      <div class="row">
+        <div class="span12" py:if="chrome.warnings or chrome.notices">
+          <div id="warning" py:if="chrome.warnings" class="alert">
+            <py:choose test="len(chrome.warnings)">
+              <span class="label label-warning">Warning</span>
+              <py:when test="1">${chrome.warnings[0]}</py:when>
+              <py:otherwise><ul><li py:for="warning in chrome.warnings">$warning</li></ul></py:otherwise>
+            </py:choose>
+          </div>
+          <div id="notice" py:if="chrome.notices" class="alert alert-success">
+            <py:choose test="len(chrome.notices)">
+              <span class="label label-success">Success</span>
+              <py:when test="1">${chrome.notices[0]}</py:when>
+              <py:otherwise><ul><li py:for="notice in chrome.notices">$notice</li></ul></py:otherwise>
+            </py:choose>
+          </div>
         </div>
       </div>
       ${select('*|text()|comment()')}