Min. fields lenght headers

This commit is contained in:
fbsanchez 2019-05-29 12:09:45 +02:00
parent 37af0ad612
commit 487ff53825
1 changed files with 6 additions and 4 deletions
pandora_console/godmode/wizards

View File

@ -377,13 +377,15 @@ class DiscoveryTaskList extends Wizard
} }
// Status. // Status.
$table->headstyle[5] .= 'width: 100px'; $table->headstyle[5] .= 'min-width: 100px; width: 100px;';
// Task type.
$table->headstyle[6] .= 'min-width: 150px; width: 150px;';
// Progress. // Progress.
$table->headstyle[7] .= 'width: 150px'; $table->headstyle[7] .= 'min-width: 150px; width: 150px;';
// Updated at. // Updated at.
$table->headstyle[8] .= 'width: 150px'; $table->headstyle[8] .= 'min-width: 150px; width: 150px;';
// Operations. // Operations.
$table->headstyle[9] .= 'width: 150px'; $table->headstyle[9] .= 'min-width: 150px; width: 150px;';
$table->head[0] = __('Force'); $table->head[0] = __('Force');
$table->align[0] = 'left'; $table->align[0] = 'left';