]> git.mxchange.org Git - friendica.git/commitdiff
Add CSS classes to content-filter wrapper
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 1 Apr 2018 18:56:42 +0000 (14:56 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 5 Apr 2018 03:08:48 +0000 (23:08 -0400)
include/text.php

index 7807dc08b490440908b799761b6bae36fb2a2ccd..6e11c3a38a64e48395bda7324e20aeaa7984868f 100644 (file)
@@ -1431,15 +1431,15 @@ function apply_content_filter($html, array $reasons)
 {
        if (count($reasons)) {
                $rnd = random_string(8);
-               $content_filter_html = '<ul>';
+               $content_filter_html = '<ul class="content-filter-reasons">';
                foreach ($reasons as $reason) {
                        $content_filter_html .= '<li>' . htmlspecialchars($reason) . '</li>' . PHP_EOL;
                }
                $content_filter_html .= '</ul>
-                       <div id="content-filter-wrap-' . $rnd . '" class="fakelink" onclick=openClose(\'content-filter-' . $rnd . '\'); >' .
+                       <p><span id="content-filter-wrap-' . $rnd . '" class="fakelink content-filter-button" onclick=openClose(\'content-filter-' . $rnd . '\'); >' .
                        L10n::t('Click to open/close') .
-                       '</div>
-                       <div id="content-filter-' . $rnd . '" style="display: none;">';
+                       '</span></p>
+                       <div id="content-filter-' . $rnd . '" class="content-filter-content" style="display: none;">';
 
                $html = $content_filter_html . $html . '</div>';
        }