2013-10-10 Sergio Martin <sergio.martin@artica.es>
* include/styles/pandora.css godmode/groups/configure_group.php godmode/alerts/alert_templates.php godmode/modules/manage_network_components.php godmode/tag/tag.php godmode/tag/edit_tag.php godmode/category/edit_category.php: Fixed many aesthetic issues git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8882 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
2840b4d562
commit
5c793dfccb
|
@ -1,3 +1,14 @@
|
|||
2013-10-10 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/styles/pandora.css
|
||||
godmode/groups/configure_group.php
|
||||
godmode/alerts/alert_templates.php
|
||||
godmode/modules/manage_network_components.php
|
||||
godmode/tag/tag.php
|
||||
godmode/tag/edit_tag.php
|
||||
godmode/category/edit_category.php: Fixed many aesthetic
|
||||
issues
|
||||
|
||||
2013-10-09 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* pandoradb_data.sql,
|
||||
|
|
|
@ -281,7 +281,7 @@ $table->head[4] = __('Op.');
|
|||
$table->style = array ();
|
||||
$table->style[0] = 'font-weight: bold';
|
||||
$table->size = array ();
|
||||
$table->size[4] = '65px';
|
||||
$table->size[4] = '85px';
|
||||
$table->align = array ();
|
||||
$table->align[1] = 'center';
|
||||
$table->align[4] = 'center';
|
||||
|
|
|
@ -107,6 +107,8 @@ else {
|
|||
$name_category = "";
|
||||
}
|
||||
|
||||
enterprise_hook('open_meta_frame');
|
||||
|
||||
// Create/Update category form
|
||||
echo '<form method="post" action="index.php?sec=gmodules&sec2=godmode/category/edit_category&action=' . $action . '&id_category=' . $id_category . '&pure='.(int)$config['pure'].'" enctype="multipart/form-data">';
|
||||
|
||||
|
@ -143,4 +145,6 @@ echo "</table>";
|
|||
echo '</div>';
|
||||
echo '</form>';
|
||||
|
||||
enterprise_hook('close_meta_frame');
|
||||
|
||||
?>
|
||||
|
|
|
@ -148,7 +148,7 @@ $table->data[8][0] = __('Other') . ui_print_help_tip (__("Information accessible
|
|||
$table->data[8][1] = html_print_textarea ('other', 4, 40, $other, "style='min-height: 0px;'", true);
|
||||
|
||||
$isFunctionSkins = enterprise_include_once ('include/functions_skins.php');
|
||||
if ($isFunctionSkins !== ENTERPRISE_NOT_HOOK) {
|
||||
if ($isFunctionSkins !== ENTERPRISE_NOT_HOOK && !defined('METACONSOLE')) {
|
||||
$table->data[9][0] = __('Skin');
|
||||
$table->data[9][1] = skins_print_select($config["id_user"], 'skin', $skin, '', __('None'), 0, true);
|
||||
}
|
||||
|
|
|
@ -493,7 +493,7 @@ $table->head[6] = __('Action') .
|
|||
html_print_checkbox('all_delete', 0, false, true, false, 'check_all_checkboxes();');
|
||||
$table->size = array ();
|
||||
$table->size[1] = '75px';
|
||||
$table->size[6] = '60px';
|
||||
$table->size[6] = '80px';
|
||||
$table->align[6] = 'center';
|
||||
$table->data = array ();
|
||||
|
||||
|
|
|
@ -142,10 +142,12 @@ else {
|
|||
$phone_tag = "";
|
||||
}
|
||||
|
||||
enterprise_hook('open_meta_frame');
|
||||
|
||||
// Create/Update tag form
|
||||
echo '<form method="post" action="index.php?sec='.$sec.'&sec2=godmode/tag/edit_tag&action=' . $action . '&id_tag=' . $id_tag . '" enctype="multipart/form-data">';
|
||||
|
||||
echo '<div align=left style="width: 98%" class="pandora_form">';
|
||||
echo '<div align=left style="width: 100%" class="pandora_form">';
|
||||
|
||||
echo "<table border=0 cellpadding=4 cellspacing=4 class=databox width=98%>";
|
||||
echo "<tr>";
|
||||
|
@ -213,4 +215,6 @@ echo "</table>";
|
|||
echo '</div>';
|
||||
echo '</form>';
|
||||
|
||||
enterprise_hook('close_meta_frame');
|
||||
|
||||
?>
|
||||
|
|
|
@ -153,11 +153,9 @@ if (!empty($result)) {
|
|||
$table->head = array ();
|
||||
$table->align = array ();
|
||||
$table->style = array ();
|
||||
$table->style[0] = 'font-weight: bold; text-align:center';
|
||||
$table->style[1] = 'text-align:center';
|
||||
$table->style[2] = 'text-align:center';
|
||||
$table->style[0] = 'font-weight: bold;';
|
||||
$table->style[3] = 'text-align:center';
|
||||
$table->style[5] = 'text-align:center';
|
||||
$table->style[6] = 'text-align:center';
|
||||
$table->head[0] = __('Tag name');
|
||||
$table->head[1] = __('Description');
|
||||
$table->head[2] = __('Detail information');
|
||||
|
|
|
@ -239,7 +239,7 @@ div#main_help div.databox h3, div#main_help div.databox h2 {
|
|||
font-family: sans-serif, verdana;
|
||||
}
|
||||
|
||||
div#main_help a.footer {
|
||||
div#main_help a.footer, div#main_help span {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue