#11724 Fix show hide button
This commit is contained in:
parent
58c2037da6
commit
8332dce850
|
@ -5503,7 +5503,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;
|
||||
|
||||
|
|
|
@ -11662,14 +11662,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