]> git.mjollnir.org Git - s9y.git/commitdiff
Add div.serendipity_section_(comments|trackbacks|commentform) containers
authorgarvinhicking <garvinhicking>
Mon, 30 May 2005 08:13:34 +0000 (08:13 +0000)
committergarvinhicking <garvinhicking>
Mon, 30 May 2005 08:13:34 +0000 (08:13 +0000)
for CSS styling. Solves RFE #1210889

docs/NEWS
templates/default/entries.tpl

index f0ff153b3f9b2725328556e88bec7521b94307a5..68acb1862d2c6e9d31179192145efad133d5c2e8 100644 (file)
--- a/docs/NEWS
+++ b/docs/NEWS
@@ -3,9 +3,14 @@
 Version 0.9 ()
 ------------------------------------------------------------------------
 
+    * TEMPLATES: Added div.serendipity_section_(comments|trackbacks|commentform)
+      containers inside the Default Template's entries.tpl file to be
+      able to customize certain containers via CSS.
+      Solves RFE #1210889 (garvinhicking)
+
     * TEMPLATES: Added div.serendipity_search_* wrapping elements to be
       able to style the search result messages specifically. Added new
-      Smarty variables $searchresult_* (content.tpl).
+      Smarty variables $searchresult_* (default/content.tpl).
       Solves RFE #1210676 (garvinhicking)
 
     * Fix editing a draft article to be properly displayed as draft
index 4ec6a0fe706553377b2e6d018e1b40141ab4e9c8..04a1ef5b27fd4d0c5603b8d9f861d51e45517131 100644 (file)
                 <br /><div class="serendipity_center serendipity_msg_notice">{$CONST.DATA_COMMENT_APPROVED|@sprintf:$CONST.COMMENT_APPROVED}</div><br />
             {/if}
 
-            <div class="serendipity_comments">
+            <div class="serendipity_comments serendipity_section_trackbacks">
                 <br />
                 <a id="trackbacks"></a>
                 <div class="serendipity_commentsTitle">{$CONST.TRACKBACKS}</div>
         {/if}
 
         {if $is_single_entry and not $is_preview}
-            <div class="serendipity_comments">
+            <div class="serendipity_comments serendipity_section_comments">
                 <br />
                 <a id="comments"></a>
                 <div class="serendipity_commentsTitle">{$CONST.COMMENTS}</div>
                 {else}
 
                 <br />
-                <div class="serendipity_commentsTitle">{$CONST.ADD_COMMENT}</div>
-                {$COMMENTFORM}
+                <div class="serendipity_section_commentform">
+                       <div class="serendipity_commentsTitle">{$CONST.ADD_COMMENT}</div>
+                       {$COMMENTFORM}
+                               </div>
 
                 {/if}
             </div>