2012-02-22 Miguel de Dios <miguel.dedios@artica.es>
* install.php, index.php, include/functions_ui.php: cleaned source code style. * include/styles/dialog.css: fix the bad selector that it finished with colon. * godmode/reporting/visual_console_builder.editor.php: fixed the bad syntax in the styles from the grid. * godmode/reporting/visual_console_builder.editor.js: fixed a tiny javascript warning. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5632 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
f26cdfa79e
commit
8119b99c1d
|
@ -1,3 +1,17 @@
|
|||
2012-02-22 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* install.php, index.php, include/functions_ui.php: cleaned source code
|
||||
style.
|
||||
|
||||
* include/styles/dialog.css: fix the bad selector that it finished with
|
||||
colon.
|
||||
|
||||
* godmode/reporting/visual_console_builder.editor.php: fixed the bad syntax
|
||||
in the styles from the grid.
|
||||
|
||||
* godmode/reporting/visual_console_builder.editor.js: fixed a tiny
|
||||
javascript warning.
|
||||
|
||||
2012-02-21 Vanessa Gil <vanessa.gil@artica.es>
|
||||
|
||||
* godmode/reporting/graph_template_item_editor.php: Added option to edit
|
||||
|
|
|
@ -1476,7 +1476,7 @@ function click_button_toolbox(id) {
|
|||
}
|
||||
break;
|
||||
case 'save':
|
||||
status = true;
|
||||
var status = true;
|
||||
activeToolboxButton('save', false);
|
||||
jQuery.each(list_actions_pending_save, function(key, action_pending_save) {
|
||||
jQuery.ajax ({
|
||||
|
|
|
@ -254,7 +254,7 @@ echo '<div id="frame_view" style="width: 100%; height: 500px; overflow: scroll;"
|
|||
echo '<div id="background" class="ui-widget-content" style="
|
||||
border: 2px black solid; width: ' . $widthBackground . 'px; height: ' . $heightBackground . 'px;">';
|
||||
//echo "<img style='opacity:.5' id='background_img' src='images/console/background/white_boxed.jpg' width='100%' height='100%' />";
|
||||
echo "<div id='background_grid' style='position:absolute; display:none; overflow:none; background:url(images/console/background/white_boxed.jpg) x-repeat y-repeat; width: " . $widthBackground . "px; height: " . $heightBackground . "px;'></div>"; //<img id='background_grid' style='display:none' src='images/console/background/white_boxed.jpg' width='100%' height='100%' /></div>";
|
||||
echo "<div id='background_grid' style='position: absolute; display: none; overflow: hidden; background: url(images/console/background/white_boxed.jpg); background-repeat: repeat; width: " . $widthBackground . "px; height: " . $heightBackground . "px;'></div>"; //<img id='background_grid' style='display:none' src='images/console/background/white_boxed.jpg' width='100%' height='100%' /></div>";
|
||||
echo "<img id='background_img' src='images/console/background/" . $background . "' width='100%' height='100%' />";
|
||||
|
||||
foreach ($layoutDatas as $layoutData) {
|
||||
|
|
|
@ -879,6 +879,7 @@ function ui_require_jquery_file ($name, $path = 'include/javascript/') {
|
|||
return false;
|
||||
|
||||
$config['jquery'][$name] = $filename;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
}
|
||||
|
||||
/* Dialog handle styles */
|
||||
.ui-dialog .ui-resizable-n, {
|
||||
.ui-dialog .ui-resizable-n {
|
||||
cursor: n-resize;
|
||||
height: 6px;
|
||||
width: 100%;
|
||||
|
|
Loading…
Reference in New Issue