diff --git a/CHANGELOG.md b/CHANGELOG.md index 7df16725e..879186366 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Tutti i maggiori cambiamenti di questo progetto saranno documentati in questo fi Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://keepachangelog.com/), e il progetto segue il [Semantic Versioning](http://semver.org/) per definire le versioni delle release. -- [2.4.30 (2022-02-04)](#2430-2022-02-04) +- [2.4.30 (2022-02-04)](#2430-2022-02-05) - [2.4.29 (2022-01-28)](#2429-2022-01-28) - [2.4.28 (2021-12-13)](#2428-2021-12-13) - [2.4.27 (2021-10-25)](#2427-2021-10-26) @@ -41,7 +41,7 @@ Il formato utilizzato è basato sulle linee guida di [Keep a Changelog](http://k - [2.2 (2016-11-10)](#22-2016-11-10) - [2.1 (2015-04-02)](#21-2015-04-02) -## 2.4.30 (2022-02-04) +## 2.4.30 (2022-02-05) ### Aggiunto (Added) - Aggiunta azione di gruppo **Copia listini** diff --git a/assets/src/css/style.css b/assets/src/css/style.css index 2d949ba14..af8e4a846 100755 --- a/assets/src/css/style.css +++ b/assets/src/css/style.css @@ -1022,9 +1022,6 @@ div.tip { .control-sidebar { top: 50px; -} - -.control-sidebar { padding-top: 10px; } @@ -1041,7 +1038,6 @@ div.tip { .control-sidebar.control-sidebar-open, .control-sidebar.control-sidebar-open + .control-sidebar-bg { right: 0; - top: 50px; } .control-sidebar-toggle { diff --git a/assets/src/js/base/sidebar.js b/assets/src/js/base/sidebar.js index 16f98c752..803d01a98 100644 --- a/assets/src/js/base/sidebar.js +++ b/assets/src/js/base/sidebar.js @@ -112,6 +112,11 @@ function toggleControlSidebar() { sidebar.toggleClass("control-sidebar-open"); if (sidebar.hasClass("control-sidebar-open")) { - sidebar.show(); + sidebar.delay(50) + .animate( + {width: "show"}, + 350, + 'easeInOutQuint' + ); } } diff --git a/composer.json b/composer.json index ddcd35028..c4cc3de2d 100755 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ }], "type": "project", "require": { - "php": ">=7.1", + "php": ">=7.4", "ext-curl": "*", "ext-dom": "*", "ext-fileinfo": "*", @@ -36,7 +36,7 @@ "filp/whoops": "^2.1", "guzzlehttp/guzzle": "^6.3", "ifsnop/mysqldump-php": "^2.3", - "illuminate/database": "~5.4.0", + "illuminate/database": "^6.0", "intervention/image": "^2.3", "league/csv": "^8.2", "league/oauth2-client": "^2.6", @@ -139,7 +139,7 @@ "apcu-autoloader": true, "prefer-stable": true, "platform": { - "php": "7.1" + "php": "7.4" }, "allow-plugins": { "kylekatarnls/update-helper": true diff --git a/include/top.php b/include/top.php index cf05f54bd..da5cd5da9 100755 --- a/include/top.php +++ b/include/top.php @@ -391,6 +391,15 @@ if (Auth::check()) {