diff --git a/media/css/core.css b/media/css/core.css index c8a667c54..d231c7e61 100644 --- a/media/css/core.css +++ b/media/css/core.css @@ -85,7 +85,7 @@ label { display: block; margin-bottom: 4px; font-weight: bold; color: #444; } /* wide search bar */ -.wide-search-bar { width: 100%; margin-bottom: 20px; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #e6e6e6; } +.wide-search-bar { width: 100%; margin-bottom: 80px; -moz-border-radius: 5px; -webkit-border-radius: 5px; background: #e6e6e6; } .wide-search-bar-wrapper { padding: 8px; } .wide-search-bar input { margin: 0; height: 25px; padding: 10px; -moz-border-radius: 0; -webkit-border-radius: 0; } .wide-search-bar .text-input-wrapper { width: 70%; float: left; } diff --git a/templates/core/pageview_list_detailed.html b/templates/core/pageview_list_detailed.html index 1241e63c7..339e7f7e0 100644 --- a/templates/core/pageview_list_detailed.html +++ b/templates/core/pageview_list_detailed.html @@ -1,10 +1,12 @@ + {% for pageview in pageview_list %} -
  • - - {{ pageview.project.name }} - {{ pageview.url }} - - {{ pageview.count }} views - -
  • +
  • + + {{ pageview.project.name }} - {{ pageview.url }} + + {{ pageview.count }} views + + +
  • {% endfor %}