Merge branch 'ent-4250-Cambios-de-estilo-pendientes_2' into 'develop'
Style changes - #4250 See merge request artica/pandorafms!2557
This commit is contained in:
commit
39ac83ae5e
|
@ -69,7 +69,7 @@ function extension_db_status()
|
|||
|
||||
echo "<div style='text-align: right;'>";
|
||||
html_print_input_hidden('db_status_execute', 1);
|
||||
html_print_submit_button(__('Execute Test'), 'submit', false, 'class="sub"');
|
||||
html_print_submit_button(__('Execute Test'), 'submit', false, 'class="sub next"');
|
||||
echo '</div>';
|
||||
|
||||
echo '</form>';
|
||||
|
|
|
@ -52,7 +52,7 @@ if ($migrate_malformed) {
|
|||
|
||||
// Header.
|
||||
ui_print_page_header(
|
||||
__('Planned Downtime'),
|
||||
__('Scheduled Downtime'),
|
||||
'images/gm_monitoring.png',
|
||||
false,
|
||||
'planned_downtime',
|
||||
|
@ -136,9 +136,6 @@ $table_form = new StdClass();
|
|||
$table_form->class = 'databox filters';
|
||||
$table_form->width = '100%';
|
||||
$table_form->rowstyle = [];
|
||||
$table_form->rowstyle[0] = 'background-color: #f9faf9;';
|
||||
$table_form->rowstyle[1] = 'background-color: #f9faf9;';
|
||||
$table_form->rowstyle[2] = 'background-color: #f9faf9;';
|
||||
$table_form->data = [];
|
||||
|
||||
$row = [];
|
||||
|
|
|
@ -126,7 +126,7 @@ foreach ($fields_available as $key => $available) {
|
|||
$table->data[0][0] = '<b>'.__('Fields available').'</b>';
|
||||
$table->data[1][0] = html_print_select($fields_available, 'fields_available[]', true, '', '', 0, true, true, false, '', false, 'width: 300px');
|
||||
$table->data[1][1] = '<a href="javascript:">'.html_print_image(
|
||||
'images/darrowright.png',
|
||||
'images/darrowright_green.png',
|
||||
true,
|
||||
[
|
||||
'id' => 'right',
|
||||
|
@ -134,7 +134,7 @@ $table->data[1][1] = '<a href="javascript:">'.html_print_image(
|
|||
]
|
||||
).'</a>';
|
||||
$table->data[1][1] .= '<br><br><br><br><a href="javascript:">'.html_print_image(
|
||||
'images/darrowleft.png',
|
||||
'images/darrowleft_green.png',
|
||||
true,
|
||||
[
|
||||
'id' => 'left',
|
||||
|
|
|
@ -190,7 +190,8 @@
|
|||
}
|
||||
|
||||
.info_table > tbody > tr:hover {
|
||||
background-color: #eee;
|
||||
/* This !important is necessary to overwrite the white background of tables with less than 5 rows. */
|
||||
background-color: #eee !important;
|
||||
}
|
||||
|
||||
.info_.profile_list > thead > tr > th > a.tip {
|
||||
|
|
|
@ -62,7 +62,7 @@ $style_period = ($is_period) ? '' : 'display: none;';
|
|||
|
||||
// Build the table.
|
||||
$table = new stdClass();
|
||||
$table->class = 'databox';
|
||||
$table->class = 'databox filters';
|
||||
$table->styleTable = 'width: 100%';
|
||||
$table->data['0']['0'] = __('Data to show').' ';
|
||||
$table->data['0']['0'] .= html_print_select(
|
||||
|
|
|
@ -67,7 +67,7 @@ $style_period = ($is_period) ? '' : 'display: none;';
|
|||
|
||||
// Build the table.
|
||||
$table = new stdClass();
|
||||
$table->class = 'databox';
|
||||
$table->class = 'databox filters';
|
||||
$table->styleTable = 'width: 100%';
|
||||
|
||||
$table->data['0']['0'] = '<div style="display: flex;">';
|
||||
|
|
|
@ -79,10 +79,10 @@ $table->class = 'databox filters';
|
|||
$table->style[0][1] = 'text-align: right; vertical-align: top;';
|
||||
|
||||
$table->data[0][0] = '<div id="chat_box" style="width: 95%;
|
||||
height: 300px; background: #ffffff; border: 1px inset black;
|
||||
height: 300px; background: #ffffff; border: 1px solid #cbcbcb; border-radius: 5px;
|
||||
overflow: auto; padding: 10px;"></div>';
|
||||
$table->data[0][1] = '<h4>'.__('Users Online').'</h4>'.'<div id="userlist_box" style="width: 90% !important; height: 200px !important;
|
||||
height: 300px; background: #ffffff; border: 1px inset black;
|
||||
height: 300px; background: #ffffff; border: 1px solid #cbcbcb; border-radius: 5px;
|
||||
overflow: auto; padding-right: 10px;"></div>';
|
||||
$table->data[1][0] = '<b>'.__('Message').'</b> '.html_print_input_text(
|
||||
'message_box',
|
||||
|
|
Loading…
Reference in New Issue