diff --git a/.gitignore b/.gitignore
index 44aa37e47..ff15a1953 100644
--- a/.gitignore
+++ b/.gitignore
@@ -88,6 +88,7 @@ database.sql
VERSION
REVISION
.php_cs.cache
+manifest.json
/tests/_log/*
/tests/_temp/*
diff --git a/assets/src/css/style.css b/assets/src/css/style.css
index d5f53d2b1..b52dc110c 100644
--- a/assets/src/css/style.css
+++ b/assets/src/css/style.css
@@ -880,3 +880,8 @@ input.small-width {
max-width: 20px;
max-height: 20px;
}
+
+.logo-image {
+ max-width: 100px;
+ max-height: 100px;
+}
diff --git a/assets/src/img/logo.png b/assets/src/img/logo.png
index 01fb6bc8e..52e392234 100644
Binary files a/assets/src/img/logo.png and b/assets/src/img/logo.png differ
diff --git a/assets/src/img/osm_loading.gif b/assets/src/img/osm_loading.gif
deleted file mode 100644
index 57f462b79..000000000
Binary files a/assets/src/img/osm_loading.gif and /dev/null differ
diff --git a/assets/src/js/functions/init.js b/assets/src/js/functions/init.js
index 866f52574..6a0559fd0 100644
--- a/assets/src/js/functions/init.js
+++ b/assets/src/js/functions/init.js
@@ -30,7 +30,7 @@ function init() {
// Aggiunta nell'URL del nome tab su cui tornare dopo il submit
// Blocco del pulsante di submit dopo il primo submit
$('form').on("submit", function(e) {
- if ($(this).parsley().validate() && e.result) {
+ if ($(this).parsley().validate() && (e.result == undefined || e.result)) {
$(this).submit(function () {
return false;
});
diff --git a/include/bottom.php b/include/bottom.php
index f475caf20..dfdf953d6 100644
--- a/include/bottom.php
+++ b/include/bottom.php
@@ -81,10 +81,10 @@ if (Auth::check()) {
';
- echo '
- ';
}
+echo '
+ ';
echo '