parent
6b704bd121
commit
d697717c69
@ -1 +1,17 @@
|
||||
/** vide */
|
||||
/**
|
||||
* This file is part of Zwii.
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2021, Frédéric Tempez
|
||||
* @license GNU General Public License, version 3
|
||||
* @link http://zwiicms.fr/
|
||||
*/
|
||||
|
||||
#passwordLabel, #passwordIcon {
|
||||
display: inline-flex;
|
||||
}
|
||||
#passwordIcon {
|
||||
float: right;
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
/**
|
||||
* This file is part of Zwii.
|
||||
* For full copyright and license information, please see the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*
|
||||
* @author Frédéric Tempez <frederic.tempez@outlook.com>
|
||||
* @copyright Copyright (C) 2018-2021, Frédéric Tempez
|
||||
* @license GNU General Public License, version 3
|
||||
* @link http://zwiicms.fr/
|
||||
*/
|
||||
|
||||
$(document).ready(function(){
|
||||
|
||||
$(".zwiico-eye").mouseenter(function() {
|
||||
$("#userLoginPassword").attr("type", 'text');
|
||||
});
|
||||
$(".zwiico-eye").mouseleave(function() {
|
||||
$("#userLoginPassword").attr("type", 'password');
|
||||
});
|
||||
});
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 25 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue