You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by ma...@apache.org on 2013/05/14 11:54:33 UTC

svn commit: r1482281 - in /bloodhound/trunk: bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html bloodhound_theme/bhtheme/htdocs/bloodhound.css

Author: matevz
Date: Tue May 14 09:54:33 2013
New Revision: 1482281

URL: http://svn.apache.org/r1482281
Log:
Ref #522 - minor UI fixes

Modified:
    bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html
    bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css

Modified: bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html
URL: http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html?rev=1482281&r1=1482280&r2=1482281&view=diff
==============================================================================
--- bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html (original)
+++ bloodhound/trunk/bloodhound_dashboard/bhdashboard/widgets/templates/widget_relations.html Tue May 14 09:54:33 2013
@@ -26,10 +26,13 @@
     <py:when test="relations">
       <py:for each="relgroup,items in relations.iteritems()">
         <h4>$relgroup</h4>
-        <div py:for="item in items">
-          <a href="${item['desthref']}">#${item['destination'].id}</a> - $item.comment
+        <div class="relgroup">
+          <div py:for="item in items" class="relation">
+            <a href="${item['desthref']}">#${item['destination'].id}</a> - $item.comment
+          </div>
         </div>
       </py:for>
+      <br />
     </py:when>
     <py:otherwise>
       <div class="alert alert-info">
@@ -39,7 +42,7 @@
   </py:choose>
 
   <div class="btn-group">
-    <a class="btn" href="${href.ticket(ticket.id, 'relations')}">Manage relations</a>
+    <a class="btn" href="${href.ticket(ticket.id, 'relations')}"><i class="icon-retweet"></i> Manage relations</a>
   </div>
 </div>
 

Modified: bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
URL: http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css?rev=1482281&r1=1482280&r2=1482281&view=diff
==============================================================================
--- bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css (original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css Tue May 14 09:54:33 2013
@@ -293,6 +293,10 @@ pre {
   margin-bottom: 30px;
 }
 
+.relgroup {
+  margin-left: 20px;
+}
+
 /* @end */
 
 /* @group Quick Create Ticket popup */