diff --git a/umap/static/umap/content.css b/umap/static/umap/content.css
index 909501c1..dfd3848c 100644
--- a/umap/static/umap/content.css
+++ b/umap/static/umap/content.css
@@ -296,9 +296,9 @@ table.maps {
width: 100%;
}
table.maps .map_fragment {
- height: 100px;
+ display: block;
+ height: 80vh;
width: 100%;
- min-width: 200px;
}
table.maps tbody tr:nth-child(odd) {
background-color: #f4f4f4;
@@ -310,6 +310,21 @@ table.maps thead tr {
line-height: 2em;
}
+/* **************************** */
+/* Dialog */
+/* **************************** */
+dialog {
+ width: 90vw;
+ height: 90vh;
+}
+dialog::backdrop {
+ background: #fff5;
+ backdrop-filter: blur(4px);
+}
+.close-dialog {
+ text-align: center;
+}
+
/* ************************************************* */
/* ********************* MOBILE ******************** */
diff --git a/umap/templates/umap/map_table.html b/umap/templates/umap/map_table.html
index 6da94810..5ad884a0 100644
--- a/umap/templates/umap/map_table.html
+++ b/umap/templates/umap/map_table.html
@@ -49,33 +49,3 @@
class="button more_button neutral">{% trans "More" %}
{% endif %}
-
-
-
-
diff --git a/umap/templates/umap/user_dashboard.html b/umap/templates/umap/user_dashboard.html
index 8cbc2710..3c4f897b 100644
--- a/umap/templates/umap/user_dashboard.html
+++ b/umap/templates/umap/user_dashboard.html
@@ -23,3 +23,19 @@
{% endblock maincontent %}
+
+{% block bottom_js %}
+ {{ block.super }}
+
+{% endblock bottom_js %}