Wizard: Add css class control-group to all buttons

refs #5543
This commit is contained in:
Johannes Meyer 2015-10-01 13:19:28 +02:00
parent 29d9a7f807
commit b74f8ce51d
1 changed files with 5 additions and 0 deletions

View File

@ -608,6 +608,7 @@ class Wizard
'button',
static::BTN_NEXT,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $pages[1]->getName(),
'label' => t('Next'),
@ -619,6 +620,7 @@ class Wizard
'button',
static::BTN_PREV,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $pages[$index - 1]->getName(),
'label' => t('Back'),
@ -630,6 +632,7 @@ class Wizard
'button',
static::BTN_NEXT,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $pages[$index + 1]->getName(),
'label' => t('Next'),
@ -641,6 +644,7 @@ class Wizard
'button',
static::BTN_PREV,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $pages[$index - 1]->getName(),
'label' => t('Back'),
@ -652,6 +656,7 @@ class Wizard
'button',
static::BTN_NEXT,
array(
'class' => 'control-button',
'type' => 'submit',
'value' => $page->getName(),
'label' => t('Finish'),