Browse Source

Use smaller grid in the list

Matthias Vogelgesang 7 years ago
parent
commit
5db2df1d66
2 changed files with 4 additions and 4 deletions
  1. 2 2
      nova/templates/index/index.html
  2. 2 2
      nova/templates/index/search.html

+ 2 - 2
nova/templates/index/index.html

@@ -3,10 +3,10 @@
 {% block pagination %}
 {% for collection in pagination.items %}
 <div class="row dataset-pad">
-  <div class="col-lg-1">
+  <div class="col-sm-1">
     <img class="img-responsive" src="https://placeholdit.imgix.net/~text?txtsize=33&txt=%C3%97&w=64&h=64"/>
   </div>
-  <div class="col-lg-11">
+  <div class="col-sm-11">
     <h3 class="dataset-link">
       <a href="{{ url_for("profile", name=collection.user.name) }}">{{ collection.user.name }}</a> /
       <a href="{{ url_for("show_collection", name=collection.user.name, collection_name=collection.name) }}">{{ collection.name }}</a>

+ 2 - 2
nova/templates/index/search.html

@@ -3,10 +3,10 @@
 {% block pagination %}
 {% for access in pagination.items %}
 <div class="row dataset-pad">
-  <div class="col-lg-1">
+  <div class="col-sm-1">
     <img class="img-responsive" src="https://placeholdit.imgix.net/~text?txtsize=33&txt=%C3%97&w=64&h=64"/>
   </div>
-  <div class="col-lg-11">
+  <div class="col-sm-11">
     <h3 class="dataset-link">
       <a href="{{ url_for("profile", name=access.user.name) }}">{{ access.user.name }}</a> /
       <a href="{{ url_for("show_collection", name=access.user.name, collection_name=access.dataset.collection.name) }}">{{ access.dataset.collection.name }}</a> /