$steps = array_keys($labels);
$currentStep = array_search($runner->state(), $steps);
- $this->out->elementStart('div', array('class' => 'yammer-import'));
+ $this->out->elementStart('fieldset', array('class' => 'yammer-import'));
+ $this->out->element('legend', array(), _m('Import status'));
foreach ($steps as $step => $state) {
if ($step < $currentStep) {
// This step is done
_m("Waiting..."));
}
}
- $this->out->elementEnd('div');
+ $this->out->elementEnd('fieldset');
}
private function progressBar($state, $class, $label, $status)
.yammer-import {
- background-color: #eee;
-
- border: solid 1px;
- border-radius: 8px;
- -moz-border-radius: 8px;
- -webkit-border-radius: 8px;
- -opera-border-radius: 8px;
-
padding: 16px;
}
}
.progress {
- background-color: #fff;
+ background-color: white;
+ border: solid 1px blue;
border-radius: 8px;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;