changeset 1850:c4ff52b0d112 beta

changelog: more commits by default; tweak top header layout
author Aras Pranckevicius <aras@unity3d.com>
date Thu, 05 Jan 2012 21:40:05 +0200
parents 162300a90342
children 61f723ae8722
files rhodecode/controllers/changelog.py rhodecode/public/css/style.css rhodecode/templates/changelog/changelog.html
diffstat 3 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/controllers/changelog.py	Thu Jan 05 21:05:42 2012 +0200
+++ b/rhodecode/controllers/changelog.py	Thu Jan 05 21:40:05 2012 +0200
@@ -54,7 +54,7 @@
 
     def index(self):
         limit = 100
-        default = 20
+        default = 40
         if request.params.get('size'):
             try:
                 int_size = int(request.params.get('size'))
--- a/rhodecode/public/css/style.css	Thu Jan 05 21:05:42 2012 +0200
+++ b/rhodecode/public/css/style.css	Thu Jan 05 21:40:05 2012 +0200
@@ -2229,15 +2229,15 @@
 #graph_content .container_header {
 	border: 1px solid #CCC;
 	padding: 10px;
-	height: 45px;
+	height: 25px;
     -webkit-border-radius: 6px 6px 0px 0px;
     -moz-border-radius: 6px 6px 0px 0px;
     border-radius: 6px 6px 0px 0px;	
 }
 
 #graph_content #rev_range_container {
-	padding: 10px 0px;
-	clear: both;
+	padding: 5px 20px;
+	float: left;
 }
 
 #graph_content .container {
--- a/rhodecode/templates/changelog/changelog.html	Thu Jan 05 21:05:42 2012 +0200
+++ b/rhodecode/templates/changelog/changelog.html	Thu Jan 05 21:40:05 2012 +0200
@@ -36,11 +36,11 @@
 				        <div class="info_box" style="float:left">
 				          ${h.submit('set',_('Show'),class_="ui-btn")}
 				          ${h.text('size',size=1,value=c.size)}
-				          <span class="rev">${_('revisions')}</span>
+				          ${_('revisions')}
 				        </div>
 				        ${h.end_form()}
+					<div id="rev_range_container" style="display:none"></div>
                     <div style="float:right">${h.select('branch_filter',c.branch_name,c.branch_filters)}</div>
-					<div id="rev_range_container" style="display:none"></div>
 					</div>
 					
 				%for cnt,cs in enumerate(c.pagination):