diff --git a/mod/wiki/pagelib.php b/mod/wiki/pagelib.php index c3f301876b6..d4946a6c3f9 100644 --- a/mod/wiki/pagelib.php +++ b/mod/wiki/pagelib.php @@ -1954,7 +1954,8 @@ class page_wiki_deletecomment extends page_wiki { $deleteurl = new moodle_url('/mod/wiki/instancecomments.php', $optionsyes); $return = new moodle_url('/mod/wiki/comments.php', array('pageid'=>$this->page->id)); - echo html_writer::tag('p', $strdeletecheckfull, array('class' => 'bold')); + echo $OUTPUT->container_start('wiki-form-center'); + echo html_writer::tag('p', $strdeletecheckfull); echo $OUTPUT->container_start(false, 'wiki_deletecommentform'); echo '
'; echo $OUTPUT->container_end(); + echo $OUTPUT->container_end(); } } diff --git a/mod/wiki/styles.css b/mod/wiki/styles.css index 1d205b73ed9..7c4dbc3dcc0 100644 --- a/mod/wiki/styles.css +++ b/mod/wiki/styles.css @@ -146,11 +146,11 @@ } .wiki_restore_yes, .wiki_deletecomment_yes, -.dir-rtl .wiki_restore_no, .wiki_deletecomment_no { +.dir-rtl .wiki_restore_no, .dir-rtl .wiki_deletecomment_no { float: left; } .wiki_restore_no, .wiki_deletecomment_no, -.dir-rtl .wiki_restore_yes, .wiki_deletecomment_yes { +.dir-rtl .wiki_restore_yes, .dir-rtl .wiki_deletecomment_yes { float: right; }