Fixed label table size in visual console. Ticket#2728

This commit is contained in:
Arturo Gonzalez Diaz 2015-10-02 09:30:52 +02:00
parent fbb3e507e2
commit 929913421d
2 changed files with 3 additions and 3 deletions

View File

@ -159,7 +159,7 @@ ui_require_javascript_file ('encode_decode_base64');
theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "",
theme_advanced_statusbar_location : "none",
width: "400",
width: "100%",
height: "200",
nowrap: true,
plugins : "noneditable",

View File

@ -46,7 +46,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) {
echo '<div id="properties_panel" style="display: none; position: absolute; border: 2px solid #114105; padding: 5px; background: white; z-index: 90;">';
//----------------------------Hiden Form----------------------------
?>
<table class="databox" border="0" cellpadding="4" cellspacing="4" width="350">
<table class="databox" border="0" cellpadding="0" cellspacing="0" width="100%">
<caption>
<?php
$titles = array(
@ -86,7 +86,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) {
'datos',
'group_item');
$form_items['label_row']['html'] =
'<td align="left" valign="top" style="">' . __('Label') . '</td>
'<td align="left" valign="top" style="" width="25%">' . __('Label') . '</td>
<td align="left" style="">' .
html_print_input_text('label', '', '', 20, 200, true) . '</td>';