diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/default/canvas/layouts/widgets.php | 10 | ||||
-rw-r--r-- | views/default/css.php | 18 |
2 files changed, 21 insertions, 7 deletions
diff --git a/views/default/canvas/layouts/widgets.php b/views/default/canvas/layouts/widgets.php index 2c9783148..b6d8bcbf3 100644 --- a/views/default/canvas/layouts/widgets.php +++ b/views/default/canvas/layouts/widgets.php @@ -43,16 +43,14 @@ </h3> </td> <td width="17px" align="right"><a href="#"><img src="<?php echo $vars['url']; ?>_graphics/icon_customise_remove.gif" class="remove_me" /></a></td> -<td width="17px" align="right"><a href="#"><img src="<?php echo $vars['url']; ?>_graphics/icon_customise_info.gif" class="more_info" /></a></td> +<td width="17px" align="right"><a href="javascript:void(0);"><img src="<?php echo $vars['url']; ?>_graphics/icon_customise_info.gif" class="more_info" /></a></td> <td width="17px" align="right"><a href="#"><img src="<?php echo $vars['url']; ?>_graphics/icon_customise_drag.gif" class="drag_handle" /></a></td> </tr></table> <?php - } - ?> -<br /> + </div> @@ -145,7 +143,8 @@ <textarea type="textarea" value="Right widgets" style="display:none" name="debugField2" id="debugField2" /><?php echo $sidebarwidgetstring; ?></textarea> <input type="hidden" name="context" value="<?php echo get_context(); ?>" /> <input type="hidden" name="owner" value="<?php echo page_owner(); ?>" /> -<input type="submit" value="Save changes" class="submit_button" /> +<input type="submit" value="Save changes" class="submit_button" onclick="$('a.toggle_customise_edit_panel').click();" /> + </form> </div><!-- /customise_editpanel --> @@ -193,7 +192,6 @@ ?> - </div><!-- /#wrapper_maincontent --> <p></p><!-- necessary to avoid an ie7 bug? --> </div><!-- /#layout_maincontent --> diff --git a/views/default/css.php b/views/default/css.php index 38249c0af..ea7fef5e5 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -255,7 +255,7 @@ h6 { font-size: 0.8em; } CUSTOMISE PANEL (PROFILE & DASHBOARD) *************************************** */ #customise_editpanel { - /* display:none;*/ + display:none; margin: -20px 0 20px 20px; padding:20px; background: #dedede; @@ -329,6 +329,14 @@ h6 { font-size: 0.8em; } #customise_editpanel img.more_info { padding-top: 4px; } +#widget_moreinfo { + position:absolute; + border:1px solid #333333; + background:#e4ecf5; + color:#333333; + padding:5px; + display:none; +} .droppable-active { } @@ -680,3 +688,11 @@ input[type="submit"] { *************************************** */ + + + + + + + +
\ No newline at end of file |