diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 0c843be4fe..944b702108 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,11 @@ +2009-03-03 Esteban Sanchez <estebans@artica.es> + + * godmode/alerts/configure_alert_template.php: Add id to separator + div. + + * include/styles/pandora.css, include/styles/pandora_width.css: Added + style to separator div. Fixes a UI breakage. + 2009-03-03 Esteban Sanchez <estebans@artica.es> * general/main_menu.php: Operation and godmode menus files includes diff --git a/pandora_console/godmode/alerts/configure_alert_template.php b/pandora_console/godmode/alerts/configure_alert_template.php index eecd9fdf07..c4be9c0ddc 100644 --- a/pandora_console/godmode/alerts/configure_alert_template.php +++ b/pandora_console/godmode/alerts/configure_alert_template.php @@ -89,7 +89,7 @@ function print_alert_template_steps ($step, $id) { } echo '</ol>'; - echo '<div style="clear: right"> </div>'; + echo '<div id="steps_clean"> </div>'; } function update_template ($step) { diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 0b270532d3..65c0ea23d0 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -931,3 +931,6 @@ div.actions_container label { height:441px; overflow:auto; } +div#steps_clean { + clear:both; +} diff --git a/pandora_console/include/styles/pandora_width.css b/pandora_console/include/styles/pandora_width.css index e1e3709205..ffd2310ac4 100644 --- a/pandora_console/include/styles/pandora_width.css +++ b/pandora_console/include/styles/pandora_width.css @@ -54,3 +54,6 @@ div#foot { ol.steps { margin-bottom: 70px; } +div#steps_clean { + display:none; +}