Styles ando code adaptation

This commit is contained in:
jose.gonzalez@pandorafms.com 2022-11-04 12:55:41 +01:00
parent ead583b3bf
commit 37c63a5001
2 changed files with 10 additions and 7 deletions

View File

@ -3435,7 +3435,7 @@ function html_print_button($label='OK', $name='', $disabled=false, $script='', $
}
$output = sprintf(
'<button type="%s" class="%s" %s %s %s %s %s >%s</button>',
'<button type="%s" class="%s" %s %s %s %s %s %s>%s</button>',
$buttonType,
$classes,
(empty($name) === false) ? ' name="'.$name.'"' : '',
@ -3443,6 +3443,7 @@ function html_print_button($label='OK', $name='', $disabled=false, $script='', $
(empty($label) === false) ? ' value="'.$label.'"' : '',
($disabled === true) ? ' disabled' : '',
(empty($script) === false) ? ' onClick="'.$script.'"' : '',
(empty($attributes) === false) ? $attributes : '',
$content
);

View File

@ -8963,20 +8963,22 @@ div#err_msg_centralised {
.inputFile {
background-color: #f6f7fb;
height: 28px;
border: 1px solid #c0ccdc;
border-radius: 8px;
font: normal normal normal 12px Pandora-Light;
color: #2b3332;
font: normal normal normal 13px Pandora-Light;
padding: 5.5pt 20pt;
cursor: pointer;
background-color: #fff;
color: #14524f;
border: 2px solid #14524f;
box-shadow: none;
border-radius: 50px;
}
.inputFile>input[type=file] {
.inputFile > input[type="file"] {
display: none;
}
.inputFileSpan {
color: color: #2b3332;
padding-left: 1em;
}
input,
textarea,