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