viewing source for "style.css"
last commit
commit 674d019ce43c109771154b7f46950299859acdb7
Date: Mon Mar 12 21:28:58 2007 +0000
source code
01: /* This is an empty CSS file for the Expand Comments plugin
02: * (http://nymb.us/projects/show/212)
03: *
04: * The elements below represent the _default_ settings, you can change
05: * class names in the options window. It is recommened you try to set
06: * the classes to what your theme uses, you might not have to edit this
07: * file at all. Otherwise, using the below as a guide, you should be able
08: * to copy your theme
09: *
10: */
11:
12: /* This is the main div that holds all of the comments,
13: * and the comment form
14: */
15: div.commentlist {
16: }
17:
18: /* This would be one way to set the values for the even comments
19: * Note: this is commented out because by default, the even class
20: * is the empty string. If you want to change the way even comments
21: * look, first set the even class name under options, then change the below
22: * to reference that class
23: */
24:
25: /*
26: div.commentlist div {
27: }
28: */
29:
30: /* This can be used to change the style for odd comments in the list
31: */
32: div.commentlist div.alt {
33: }
34:
35: /* This can be used to change the style of the original post's author's comments
36: */
37: div.commentlist div.postauthor {
38: }
39:
40: /* This is the interior div holding what the commenter said
41: */
42: div.commentlist div div.commentcontent {
43: }
44:
45: /* This is the cite block around the comment author's name */
46: div.commentlist div cite.commentauthor {
47: }
48:
49: /* This is the small block around the comment's meta data (date posted, etc)
50: */
51: div.commentlist div small.commentmetadata {
52: }
53:
54: /* This is the div holding the 'Collapse Comments' link at the bottom of
55: * the comments
56: */
57: div.commentlist div.collapsediv {
58: }
59:
60: /* This is the div that displays the Loading text. This div can be set to
61: * hold anything you want (images, links, etc)
62: */
63: div.commentsloading {
64: font-size: 1.5em;
65: text-align: center;
66: font-weight: bold;
67: }
68:
69: /* This is just an example way of styling the submit form
70: */
71: div.commentlist form {
72: }
73:
74: div.commentlist textarea {
75: }