summaryrefslogtreecommitdiff
path: root/app/Module/NotesTabModule.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-02-28 17:52:22 +0000
committerGreg Roach <fisharebest@gmail.com>2016-02-28 18:20:09 +0000
commit673157b0c0a21c0a56335ccd60e4d481f416ae1f (patch)
tree2436089401c5e77c3cd2c63f135c1a53dc338944 /app/Module/NotesTabModule.php
parent14c3d3fb510e1c4899ec81cb0d1d1e7e08af7079 (diff)
downloadwebtrees-673157b0c0a21c0a56335ccd60e4d481f416ae1f.tar.gz
webtrees-673157b0c0a21c0a56335ccd60e4d481f416ae1f.tar.bz2
webtrees-673157b0c0a21c0a56335ccd60e4d481f416ae1f.zip
Refactor CSS
Diffstat (limited to 'app/Module/NotesTabModule.php')
-rw-r--r--app/Module/NotesTabModule.php14
1 files changed, 10 insertions, 4 deletions
diff --git a/app/Module/NotesTabModule.php b/app/Module/NotesTabModule.php
index 5b4e31037f..7d496ddfb4 100644
--- a/app/Module/NotesTabModule.php
+++ b/app/Module/NotesTabModule.php
@@ -62,11 +62,17 @@ class NotesTabModule extends AbstractModule implements ModuleTabInterface {
ob_start();
?>
- <div class="descriptionbox rela">
- <input id="checkbox_note2" type="checkbox" <?php echo $WT_TREE->getPreference('SHOW_LEVEL2_NOTES') ? 'checked' : ''; ?> onclick="jQuery('tr.row_note2').toggle();">
- <label for="checkbox_note2"><?php echo I18N::translate('Show all notes'); ?></label>
- </div>
<table class="facts_table">
+ <colgroup>
+ <col class="width20">
+ <col class="width80">
+ </colgroup>
+ <tr>
+ <td colspan="2" class="descriptionbox rela">
+ <input id="checkbox_note2" type="checkbox" <?php echo $WT_TREE->getPreference('SHOW_LEVEL2_NOTES') ? 'checked' : ''; ?> onclick="jQuery('tr.row_note2').toggle();">
+ <label for="checkbox_note2"><?php echo I18N::translate('Show all notes'); ?></label>
+ </td>
+ </tr>
<?php
foreach ($this->getFactsWithNotes() as $fact) {