diff --git a/nextcloudappstore/core/static/assets/css/style.css b/nextcloudappstore/core/static/assets/css/style.css index df83cb41e9f..73f23954561 100644 --- a/nextcloudappstore/core/static/assets/css/style.css +++ b/nextcloudappstore/core/static/assets/css/style.css @@ -593,10 +593,34 @@ form .text-danger { box-shadow: none; } -.sorting { +.sorting-row { + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 4px; margin: 0 15px 15px 15px; } +.sorting { + display: flex; + flex-wrap: wrap; + align-items: center; + margin: 0; + padding: 0; +} + +.sorting > li { + float: none; +} + +form.filters { + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 4px; + margin-left: auto; +} + .sorting .glyphicon { margin-left: -2px; margin-right: 3px; diff --git a/nextcloudappstore/core/templates/app/detail.html b/nextcloudappstore/core/templates/app/detail.html index 02e5fb6f56e..a0e3542bd4f 100644 --- a/nextcloudappstore/core/templates/app/detail.html +++ b/nextcloudappstore/core/templates/app/detail.html @@ -62,7 +62,7 @@

{{ object.name }}

{% if object.is_featured %}{% trans "Featured" %}{% endif %} {% if object.is_orphan %}{% trans "Orphan / Looking for Maintainer" %}{% endif %} -
+
+
diff --git a/nextcloudappstore/core/templates/app/list.html b/nextcloudappstore/core/templates/app/list.html index 4e0f4fb3c69..aeb633aa2a0 100644 --- a/nextcloudappstore/core/templates/app/list.html +++ b/nextcloudappstore/core/templates/app/list.html @@ -16,77 +16,77 @@
+
+
+ {% if not is_featured_category %} + + {% endif %} + {% if request.user.is_authenticated %} + + {% endif %} + + {# Include all GET arguments that should be preserved when applying a filter. #} + {% if request.GET.search %}{% endif %} + {% if request.GET.order_by %}{% endif %} + {% if request.GET.ordering %}{% endif %} +
+
diff --git a/nextcloudappstore/core/templates/base.html b/nextcloudappstore/core/templates/base.html index 4a4367bc42b..d457a55587e 100644 --- a/nextcloudappstore/core/templates/base.html +++ b/nextcloudappstore/core/templates/base.html @@ -41,7 +41,7 @@ {% block content %}{% endblock %} -