mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-22 14:48:08 +00:00
ul entries list replaced by ol
This commit is contained in:
parent
e700cadae3
commit
016ceb6829
5 changed files with 9 additions and 5 deletions
|
@ -7,7 +7,7 @@ main {
|
|||
padding: 0 0.5rem;
|
||||
}
|
||||
|
||||
ul.row {
|
||||
.row {
|
||||
margin: 0.4rem 0 0;
|
||||
padding: 0 0.75rem;
|
||||
}
|
||||
|
|
|
@ -38,6 +38,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.entries {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.collection {
|
||||
margin: 5px 15px 0;
|
||||
padding: 0;
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
</div>
|
||||
{% endif %}
|
||||
|
||||
<ul class="{% if listMode == 1 %}collection{% else %}row data{% endif %}">
|
||||
<ol class="entries {% if listMode == 1 %}collection{% else %}row data{% endif %}">
|
||||
|
||||
{% for entry in entries %}
|
||||
<li id="entry-{{ entry.id|e }}" class="{% if listMode != 0 %}col collection-item{% endif %} s12" data-entry-id="{{ entry.id|e }}" data-test="entry">
|
||||
|
@ -68,7 +68,7 @@
|
|||
{% endif %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</ol>
|
||||
</form>
|
||||
|
||||
{% if entries.getNbPages > 1 %}
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue