Skip to content

Commit

Permalink
Wizard: Add css class control-group to all buttons
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
Johannes Meyer committed Oct 1, 2015
1 parent 29d9a7f commit b74f8ce
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions library/Icinga/Web/Wizard.php
Expand Up @@ -608,6 +608,7 @@ protected function addButtons(Form $page)
'button',
static::BTN_NEXT,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $pages[1]->getName(),
'label' => t('Next'),
Expand All @@ -619,6 +620,7 @@ protected function addButtons(Form $page)
'button',
static::BTN_PREV,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $pages[$index - 1]->getName(),
'label' => t('Back'),
Expand All @@ -630,6 +632,7 @@ protected function addButtons(Form $page)
'button',
static::BTN_NEXT,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $pages[$index + 1]->getName(),
'label' => t('Next'),
Expand All @@ -641,6 +644,7 @@ protected function addButtons(Form $page)
'button',
static::BTN_PREV,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $pages[$index - 1]->getName(),
'label' => t('Back'),
Expand All @@ -652,6 +656,7 @@ protected function addButtons(Form $page)
'button',
static::BTN_NEXT,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $page->getName(),
'label' => t('Finish'),
Expand Down

0 comments on commit b74f8ce

Please sign in to comment.