diff options
| author | Łukasz Wilenski <wooc@gazeta.pl> | 2011-10-24 15:19:35 +0000 |
|---|---|---|
| committer | Łukasz Wilenski <wooc@gazeta.pl> | 2011-10-24 15:19:35 +0000 |
| commit | 59eeedf19fd6cbb29cae44084315071eb2610748 (patch) | |
| tree | 7e40baca023ffc5da56d0253d3f2ae9de61be520 /themes/minimal | |
| parent | e9d4c8923edae825db191f081d2f7be3d2021745 (diff) | |
| download | webtrees-59eeedf19fd6cbb29cae44084315071eb2610748.tar.gz webtrees-59eeedf19fd6cbb29cae44084315071eb2610748.tar.bz2 webtrees-59eeedf19fd6cbb29cae44084315071eb2610748.zip | |
#604136 - Nav Options box location display bug-SVN906651
Diffstat (limited to 'themes/minimal')
| -rw-r--r-- | themes/minimal/style.css | 15 | ||||
| -rw-r--r-- | themes/minimal/templates/block_main_temp.php | 5 | ||||
| -rw-r--r-- | themes/minimal/templates/block_small_temp.php | 5 |
3 files changed, 19 insertions, 6 deletions
diff --git a/themes/minimal/style.css b/themes/minimal/style.css index c0d4dfa4ce..0ad511766b 100644 --- a/themes/minimal/style.css +++ b/themes/minimal/style.css @@ -763,7 +763,7 @@ html[dir='rtl'] .icon, html[dir='rtl'] .adminicon { margin-right:5px; margin-bottom:10px; font-size: 13px; - overflow:visible; + overflow:auto; } .blockcontent .list_table { @@ -1362,11 +1362,22 @@ dd { line-height: 1.05; } -.block .itr, #relatives_content .itr { +.block .itr, #family_page .itr, #ancestry_chart .itr, #descendancy_chart .itr, #familybook_chart .itr, #hourglass_chart .itr, #relatives_content .itr { position: relative; top: 0; } +.user_favorites_block, +.charts_block .person_box, .charts_block .person_boxF, .charts_block .person_boxNN, +#family_page .person_box, #family_page .person_boxF, #family_page .person_boxNN, +#ancestry_chart .person_box, #ancestry_chart .person_boxF, #ancestry_chart .person_boxNN, +#descendancy_chart .person_box, #descendancy_chart .person_boxF, #descendancy_chart .person_boxNN, +#familybook_chart .person_box, #familybook_chart .person_boxF, #familybook_chart .person_boxNN, +#hourglass_chart .person_box, #hourglass_chart .person_boxF, #hourglass_chart .person_boxNN, +#relatives_content .person_box, #relatives_content .person_boxF, #relatives_content .person_boxNN { + overflow: visible !important; +} + .popup{ display: none; } diff --git a/themes/minimal/templates/block_main_temp.php b/themes/minimal/templates/block_main_temp.php index 343d712b5f..1f49d5f4b7 100644 --- a/themes/minimal/templates/block_main_temp.php +++ b/themes/minimal/templates/block_main_temp.php @@ -5,10 +5,11 @@ * This template expects that the following variables will be set * $id - the DOM id for the block div * $title - the title of the block + * $class - the additional class of the block * $content - the content of the block * * webtrees: Web based Family History software - * Copyright (C) 2010 webtrees development team. + * Copyright (C) 2011webtrees development team. * * Derived from PhpGedView * Copyright (C) 2008 to 2009 PGV Development Team. All rights reserved. @@ -48,7 +49,7 @@ if (!defined('WT_WEBTREES')) { <td class="blockh3"></td> </tr> </table> - <div class="blockcontent"> + <div class="blockcontent <?php echo $class; ?>"> <?php echo $content; ?> </div> </div> diff --git a/themes/minimal/templates/block_small_temp.php b/themes/minimal/templates/block_small_temp.php index 8c47b133d6..1b3dff54f2 100644 --- a/themes/minimal/templates/block_small_temp.php +++ b/themes/minimal/templates/block_small_temp.php @@ -5,10 +5,11 @@ * This template expects that the following variables will be set * $id - the DOM id for the block div * $title - the title of the block + * $class - the additional class of the block * $content - the content of the block * * webtrees: Web based Family History software - * Copyright (C) 2010 webtrees development team. + * Copyright (C) 2011 webtrees development team. * * Derived from PhpGedView * Copyright (C) 2008 to 2009 PGV Development Team. All rights reserved. @@ -48,7 +49,7 @@ if (!defined('WT_WEBTREES')) { <td class="blockh3"></td> </tr> </table> - <div class="blockcontent"> + <div class="blockcontent <?php echo $class; ?>"> <div class="small_inner_block"> <?php echo $content; ?> </div> |
