Small blocks like the footer Powered by Drupal block. Image attached of Seven admin theme.

Only local images are allowed.

Could be fixed maybe changing the overflow:hidden css of the block?

CommentFileSizeAuthor
footer_screenshot_menu_hidden.jpg16.59 KBcorbacho

Comments

corbacho’s picture

Component: drupal.css » Seven theme

.

bleen’s picture

Component: Seven theme » block.module

I think that the only way to fix this is to use logic like this within the js:

on open block_context_menu{ parent_block.css('min-height', height of menu + 10px); }
on close block_context_menu{ parent_block.css('min-height', auto); }

Something like that ... anyone have any better ideas?

bleen’s picture

Component: block.module » contextual.module

component

bleen’s picture

actually ... in Bartik, if we remove the #footer .block { overflow:hidden; } then this problem is moot for this specific example. Is there a reason why we have that style?

For a more general solution we'd need to

  1. make sure no blocks have hidden:overflow (unless we can garuntee that the block's height is always greater than the contextual menu's height
  2. attempt the js solution suggested in #2
  3. mystery solution? Anyone? Anyone?
watcha’s picture

Status: Active » Closed (duplicate)

Setting to closed duplicate. http://drupal.org/node/875132
Please reopen if the patch above doesn't meet any requirements.