diff --git a/rhodecode/controllers/changelog.py b/rhodecode/controllers/changelog.py --- a/rhodecode/controllers/changelog.py +++ b/rhodecode/controllers/changelog.py @@ -54,7 +54,7 @@ class ChangelogController(BaseRepoContro def index(self): limit = 100 - default = 20 + default = 40 if request.params.get('size'): try: int_size = int(request.params.get('size')) diff --git a/rhodecode/public/css/style.css b/rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css +++ b/rhodecode/public/css/style.css @@ -2229,15 +2229,15 @@ h3.files_location { #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 { diff --git a/rhodecode/templates/changelog/changelog.html b/rhodecode/templates/changelog/changelog.html --- a/rhodecode/templates/changelog/changelog.html +++ b/rhodecode/templates/changelog/changelog.html @@ -36,11 +36,11 @@
${h.submit('set',_('Show'),class_="ui-btn")} ${h.text('size',size=1,value=c.size)} - ${_('revisions')} + ${_('revisions')}
${h.end_form()} +
${h.select('branch_filter',c.branch_name,c.branch_filters)}
- %for cnt,cs in enumerate(c.pagination):