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:
commit
ce9d5218e7
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue