1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 19:30:25 +02:00

Styling tweak to admin 'tabbed' layout.

This commit is contained in:
Cameron
2021-01-25 10:13:32 -08:00
parent aa1a19b1dd
commit 8e54de7c0c
2 changed files with 2 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ class tabbed
foreach ($admin_cat['id'] as $id => $cat_id)
{
$cls = ($id == 1) ? "active" : "";
$text .= "<div class='tab-pane {$cls} adminform' style='width:95%' id='core-main-{$id}'>".$this->renderCat($id)."</div>";
$text .= "<div class='tab-pane {$cls} adminform' style='padding-top:10px' id='core-main-{$id}'>".$this->renderCat($id)."</div>";
}
$text .= "</div>";
$text .= "</div>";
@@ -171,4 +171,3 @@ class tabbed
}
}
?>