diff --git a/core/layout/common.css b/core/layout/common.css index 0821a0c5..66c47c21 100755 --- a/core/layout/common.css +++ b/core/layout/common.css @@ -508,6 +508,10 @@ section { section #sectionTitle { margin-top: 0; } +.userLogin { + min-height: 0px; +} + section:after { content: " "; display: table; diff --git a/core/module/user/view/login/login.js.php b/core/module/user/view/login/login.js.php new file mode 100644 index 00000000..6e729297 --- /dev/null +++ b/core/module/user/view/login/login.js.php @@ -0,0 +1,18 @@ +/** + * This file is part of Zwii. + * + * For full copyright and license information, please see the LICENSE + * file that was distributed with this source code. + * + * @authorFrédéric Tempez + * @copyright Copyright (C) 2018-2019, Frédéric Tempez + * @license GNU General Public License, version 3 + * @link http://zwiicms.com/ + */ + +/** +* Paramètres par défaut au chargement +*/ +$( document ).ready(function() { + $("section").addClass("userLogin"); +}); \ No newline at end of file