setup: Use h2 instead of h3 for a requirement's title

refs #5543
This commit is contained in:
Johannes Meyer 2015-10-01 13:23:11 +02:00
parent c9475807f6
commit 4dfe6dec3a
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ class RequirementsRenderer extends RecursiveIteratorIterator
{
foreach ($this as $requirement) {
$this->tags[] = '<li class="clearfix">';
$this->tags[] = '<div class="title"><h3>' . $requirement->getTitle() . '</h3></div>';
$this->tags[] = '<div class="title"><h2>' . $requirement->getTitle() . '</h2></div>';
$this->tags[] = '<div class="description">';
$descriptions = $requirement->getDescriptions();
if (count($descriptions) > 1) {

View File

@ -165,7 +165,7 @@ form#setup_requirements {
div.title {
width: 25%;
h3 {
h2 {
padding: 0;
margin: 0 1em 0 0;
border-bottom: 0;