diff options
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/comments/forms/edit.php | 2 | ||||
-rw-r--r-- | views/default/css.php | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/views/default/comments/forms/edit.php b/views/default/comments/forms/edit.php index 706d49967..a8f5980c7 100644 --- a/views/default/comments/forms/edit.php +++ b/views/default/comments/forms/edit.php @@ -14,7 +14,7 @@ if (isset($vars['entity']) && isloggedin()) {
- $form_body = "<div class=\"contentWrapper\"><p><label>".elgg_echo("generic_comments:text")."<br />" . elgg_view('input/longtext',array('internalname' => 'generic_comment')) . "</label></p>";
+ $form_body = "<div class=\"contentWrapper\"><p class='longtext_editarea'><label>".elgg_echo("generic_comments:text")."<br />" . elgg_view('input/longtext',array('internalname' => 'generic_comment')) . "</label></p>";
$form_body .= "<p>" . elgg_view('input/hidden', array('internalname' => 'entity_guid', 'value' => $vars['entity']->getGUID()));
$form_body .= elgg_view('input/submit', array('value' => elgg_echo("save"))) . "</p></div>";
diff --git a/views/default/css.php b/views/default/css.php index 3b7180af5..ffa4b14dc 100644 --- a/views/default/css.php +++ b/views/default/css.php @@ -1418,9 +1418,6 @@ table.search_gallery { .contentIntro .enableallplugins { margin-left:10px; } -.contentIntro .disableallplugins { - margin-left:20px; -} .contentIntro .enableallplugins, .not-active .admin_plugin_enable_disable a { font: 12px/100% Arial, Helvetica, sans-serif; @@ -2368,6 +2365,12 @@ h3.settings { .mceLayout { width:683px; } +p.longtext_editarea { + margin:0 !important; +} +.toggle_editor_container { + margin:0 0 15px 0; +} /* add/remove longtext tinyMCE editor */ a.toggle_editor { display:block; |