diff options
author | Aleksander Machniak <machniak@kolabsys.com> | 2017-11-24 10:37:55 +0000 |
---|---|---|
committer | Aleksander Machniak <machniak@kolabsys.com> | 2017-11-24 10:37:55 +0000 |
commit | 1c53cbb520581391ee843cc5e4e76342eed017c5 (patch) | |
tree | 069bd9d97b44f66169c60e18890ddd22ceab6ab6 | |
parent | d9e1ef57277d8ffa022365eb2497e49428d3aa7e (diff) | |
download | webadmin-1c53cbb520581391ee843cc5e4e76342eed017c5.tar.gz |
Make bold font on the Submit button
-rw-r--r-- | lib/kolab_client_task.php | 1 | ||||
-rw-r--r-- | public_html/skins/default/style.css | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lib/kolab_client_task.php b/lib/kolab_client_task.php index 5365b51..a420e24 100644 --- a/lib/kolab_client_task.php +++ b/lib/kolab_client_task.php @@ -1474,6 +1474,7 @@ class kolab_client_task $form->add_button(array( 'value' => kolab_html::escape($this->translate('button.submit')), 'onclick' => "kadm.command('{$name}.save')", + 'class' => 'submit', )); } diff --git a/public_html/skins/default/style.css b/public_html/skins/default/style.css index 5a8c598..856ea2d 100644 --- a/public_html/skins/default/style.css +++ b/public_html/skins/default/style.css @@ -510,6 +510,10 @@ input.inactive { white-space: nowrap; } +.formbuttons .submit { + font-weight: bold; +} + .formbuttons input { margin: 5px; } |