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 3c57d80..91d5ced 100644 --- a/qgis-app/static/style/scss/bulma/components/plugins-list.sass +++ b/qgis-app/static/style/scss/bulma/components/plugins-list.sass @@ -315,14 +315,33 @@ div border-right: 3px solid #4D6370 border-top: 3px solid #4D6370 -.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) - z-index: 1 +// .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) +// z-index: 1 + +table + width: 100% + border-collapse: collapse + +thead th + background-color: #fff // Optional: Background color + transition: all 0.3s ease + +.sticky-header + position: fixed + z-index: 10 + +.list-options + position: sticky + top: 112px + background-color: #fff // Optional: Background color + transition: all 0.3s ease + z-index: 10 \ No newline at end of file diff --git a/qgis-app/templates/base/list_galery.html b/qgis-app/templates/base/list_galery.html index da37024..df8203a 100644 --- a/qgis-app/templates/base/list_galery.html +++ b/qgis-app/templates/base/list_galery.html @@ -47,6 +47,7 @@ .image-info { margin-left: 5px; } + {% endblock %} @@ -74,7 +75,7 @@

{% if title %}{{title}}{% else %}{% trans "All" %} {{ res {% if object_list.count %} -
+

@@ -118,6 +119,43 @@

{% if title %}{{title}}{% else %}{% trans "All" %} {{ res {% include 'base/list_pagination.html' %}

+