clippy positions and control overflow
This commit is contained in:
parent
8c0bfd72a8
commit
47c9220cbb
|
@ -379,7 +379,7 @@ class DiscoveryTaskList extends Wizard
|
|||
// Status.
|
||||
$table->headstyle[5] .= 'min-width: 100px; width: 100px;';
|
||||
// Task type.
|
||||
$table->headstyle[6] .= 'min-width: 150px; width: 150px;';
|
||||
$table->headstyle[6] .= 'min-width: 200px; width: 150px;';
|
||||
// Progress.
|
||||
$table->headstyle[7] .= 'min-width: 150px; width: 150px;';
|
||||
// Updated at.
|
||||
|
|
|
@ -296,7 +296,7 @@ function clippy_context_help($help=null)
|
|||
$code = str_replace('{clippy}', '#'.$id, $code);
|
||||
$code = str_replace('{clippy_obj}', 'intro_'.$id, $code);
|
||||
|
||||
$return = $code.'<div id="'.$id.'" style="display: inline;"><a onclick="show_'.$id.'();" href="javascript: void(0);" >'.html_print_image(
|
||||
$return = $code.'<div id="'.$id.'" style="display: inline-block;"><a onclick="show_'.$id.'();" href="javascript: void(0);" >'.html_print_image(
|
||||
'images/clippy_icon.png',
|
||||
true
|
||||
).'</a></div>
|
||||
|
|
|
@ -2673,6 +2673,7 @@ function ui_print_module_status(
|
|||
|
||||
$options['style'] .= 'width: 50px;';
|
||||
$options['style'] .= 'height: 2em;';
|
||||
$options['style'] .= 'display: inline-block;';
|
||||
|
||||
include_once __DIR__.'/functions_modules.php';
|
||||
$options['style'] .= 'background: '.modules_get_color_status($status).';';
|
||||
|
|
|
@ -169,10 +169,10 @@ $html_toggle = ob_get_clean();
|
|||
|
||||
ui_toggle(
|
||||
$html_toggle,
|
||||
__('List of modules').ui_print_help_tip(
|
||||
__('List of modules').$help_not_init.ui_print_help_tip(
|
||||
__('To see the list of modules paginated, enable this option in the Styles Configuration.'),
|
||||
true
|
||||
).$help_not_init.reporting_tiny_stats(
|
||||
).reporting_tiny_stats(
|
||||
$agent,
|
||||
true,
|
||||
'modules',
|
||||
|
|
Loading…
Reference in New Issue