Merge branch 'ent-11724-bug-del-boton-show-hide-de-campos-sensibles' into 'develop'

Ent 11724 bug del boton show hide de campos sensibles

See merge request artica/pandorafms!6238
This commit is contained in:
Rafael Ameijeiras 2023-07-25 07:50:19 +00:00
commit ce9d5218e7
2 changed files with 7 additions and 4 deletions

View File

@ -5504,7 +5504,10 @@ function html_print_input($data, $wrapper='div', $input_only=false)
($data['attributes'] ?? null),
((isset($data['return']) === true) ? $data['return'] : false),
((isset($data['password']) === true) ? $data['password'] : false),
((isset($data['function']) === true) ? $data['function'] : '')
((isset($data['function']) === true) ? $data['function'] : ''),
((isset($data['autocomplete']) === true) ? $data['autocomplete'] : 'off'),
((isset($data['disabled']) === true) ? $data['disabled'] : false),
((isset($data['hide_div_eye']) === true) ? $data['hide_div_eye'] : false),
);
break;

View File

@ -11666,14 +11666,14 @@ p.trademark-copyright {
}
.show-hide-pass {
position: relative;
right: 40px;
position: absolute;
right: 9px;
top: 4px;
border: 0;
outline: none;
margin: 0;
height: 30px;
width: 30px;
width: 40px;
cursor: pointer;
display: inline-block;
}