1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-13 08:59:44 +01:00
This commit is contained in:
camer0n 2025-02-07 14:36:42 -08:00
parent 2b9997fe9b
commit 5b46d60268
2 changed files with 4 additions and 3 deletions

View File

@ -143,12 +143,12 @@ class page_admin_form_ui extends e_admin_form_ui
$query['id'] = $id;
$query = http_build_query($query, '', '&');
$text = "<a href='".e_SELF."?{$query}' class='btn btn-default' title='".LAN_EDIT."' data-toggle='tooltip' data-bs-toggle='tooltip' data-placement='left'>
$text = "<a href='".e_SELF."?{$query}' class='btn btn-primary' title='".LAN_EDIT."' data-toggle='tooltip' data-bs-toggle='tooltip' data-placement='left'>
".defset('ADMIN_EDIT_ICON')."</a>";
if($this->getController()->getMode() === 'overview' && getperms('J1')) // Page/Menu Delete Perms.
{
$text .= $this->submit_image('menu_delete['.$id.']', $id, 'delete', LAN_DELETE.' [ ID: '.$id.' ]', array('class' => 'action delete btn btn-default'));
$text .= $this->submit_image('menu_delete['.$id.']', $id, 'delete', LAN_DELETE.' [ ID: '.$id.' ]', array('class' => 'action delete btn btn-danger'));
}
return $text;
}
@ -405,7 +405,7 @@ class page_chapters_form_ui extends e_admin_form_ui
$att['readParms']['deleteClass'] = e_UC_NOBODY;
}
$text = "<div class='btn-group'>";
$text = "<div class='btn-group pull-left'>";
$text .= $this->renderValue('options',$value,$att,$id);

View File

@ -632,6 +632,7 @@ i.s-message-icon {
width:32px;
height:32px;
float:left;
line-height: 28px;
}
i.s-message-success { background-position: -592px -37px; width: 32px; height: 32px; }