diff --git a/qgis-app/plugins/templates/plugins/plugin_list.html b/qgis-app/plugins/templates/plugins/plugin_list.html index 1baff02..50aa596 100644 --- a/qgis-app/plugins/templates/plugins/plugin_list.html +++ b/qgis-app/plugins/templates/plugins/plugin_list.html @@ -59,22 +59,22 @@
- -
-- -
++ +
++ +
{% trans "Name" %} | {% if not user.is_anonymous %}{% endif %} - | {% trans "Downloads" %} | +{% trans "Author" %} | -{% trans "Latest Plugin Version" %} | +{% trans "Latest Version" %} | +{% trans "Created On" %} | {% trans "Stars (votes)" %} | ++ | {% if user.is_authenticated %} | {% trans "Manage" %} | {% endif %}{% if object.approved %}{% else %}—{% endif %} | {% endif %} -{{ object.downloads }} | +{{ object.downloads|intcomma }} | {% if object.author %}
@@ -134,7 +137,11 @@ {% if title %}{{title}}{% else %}{% trans "All plugins" %}{% endif %} |
{% endif %}
{{ object.latest_version_date|local_timezone:"SHORT_NATURAL_DAY" }} | +{{ object.created_on|local_timezone:"SHORT" }} | ({{ object.rating_votes }}) |
+
+ {% if object.stable %}{{ object.stable.version }}{% else %}—{% endif %} | +{% if object.experimental %}{{ object.experimental.version }}{% else %}—{% endif %} | {% if user.is_authenticated %} {% if user in object.editors or user.is_staff %}
@@ -161,18 +168,35 @@ {% if title %}{{title}}{% else %}{% trans "All plugins" %}{% endif %}
diff --git a/qgis-app/static/style/scss/bulma/components/plugins-list.sass b/qgis-app/static/style/scss/bulma/components/plugins-list.sass
index aa0787b..8313fb3 100644
--- a/qgis-app/static/style/scss/bulma/components/plugins-list.sass
+++ b/qgis-app/static/style/scss/bulma/components/plugins-list.sass
@@ -315,6 +315,13 @@ div
border-right: 3px solid #4D6370
border-top: 3px solid #4D6370
-.table_container
+.table-container
max-width: 100%
overflow: auto
+ max-height: 50dvh
+ thead
+ position: sticky
+ top: 0
+ background: white
+ padding-top: 3rem
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1)
diff --git a/qgis-app/static/style/scss/style.scss b/qgis-app/static/style/scss/style.scss
index da60d84..aff45dd 100644
--- a/qgis-app/static/style/scss/style.scss
+++ b/qgis-app/static/style/scss/style.scss
@@ -22,7 +22,7 @@ mark {
background: $white;
border-radius: 10px;
padding: 2rem;
- box-shadow: 0rem 0rem 1rem rgba(204, 210, 214, 0.5294117647);
+ box-shadow: 0rem 0rem 1rem rgba(204, 210, 214, 0.5);
}
h2 {
@@ -228,6 +228,9 @@ p {
border: none;
}
}
+ .container {
+ max-width: unset;
+ }
}
a.is-active > span {
|
---|