Fix two small usability issues

This commit is contained in:
rubenwardy 2018-05-26 03:08:14 +01:00
parent 506d5e518e
commit 3d5a6dc32a
No known key found for this signature in database
GPG Key ID: A1E29D52FF81513C
3 changed files with 7 additions and 4 deletions

View File

@ -37,6 +37,10 @@ nav li a {
border-left: 1px solid #444;
}
nav li a:not([href]) {
cursor: default;
}
nav ul li:last-child a {
border-right: 1px solid #444;
}

View File

@ -46,8 +46,7 @@
</a></li>
<li><a href="{{ url_for('create_edit_package_page') }}">+</a></li>
<li class="dropdown">
<a href="{{ url_for('user_profile_page', username=current_user.username) }}"
class="dropdown-toggle"
<a class="dropdown-toggle"
data-toggle="dropdown"
role="button"
aria-expanded="false">{{ current_user.display_name }}

View File

@ -15,7 +15,7 @@
</p>
</form>
<aside class="box box_grey outsidecontainer">
<!--<aside class="box box_grey outsidecontainer">
<h3>Tags</h3>
<ul class="flatlist">
@ -27,7 +27,7 @@
<li><i>No tags available</i></ul>
{% endfor %}
</ul>
</aside>
</aside> -->
{% from "macros/packagegridtile.html" import render_pkggrid %}
{{ render_pkggrid(packages) }}