1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-17 20:01:47 +02:00

Menu-Manager side-panel height fix.

This commit is contained in:
Cameron
2017-03-20 11:18:02 -07:00
parent b5578a64e0
commit ae8e1f1198
5 changed files with 94 additions and 9 deletions

View File

@@ -192,7 +192,12 @@ class bootstrap3_admintheme
case 'core-infopanel':
case 'site_info':
echo '<div class="panel ' . $panelType[$style] . '">
echo '<div class="panel ' . $panelType[$style] . '"';
if(!empty($data['uniqueId']))
{
echo ' id="'.$data['uniqueId'].'" ';
}
echo ' >
<div class="panel-heading">
<h3 class="panel-title">' . $caption . '</h3>
</div>