Styles ando code adaptation
This commit is contained in:
parent
ead583b3bf
commit
37c63a5001
|
@ -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
|
||||
);
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue