Project

General

Profile

Download (1.94 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * @file
3
 * Comment Styling
4
 */
5

    
6

    
7
.comments { /* Wrapper for the list of comments and its title */
8
  margin: 1.5em 0;
9
}
10

    
11
.comments h2.title { /* Heading for the list of comments */
12
}
13

    
14
.comments h2.comment-form { /* Heading for the comment form */
15
}
16

    
17
.comment { /* Wrapper for a single comment */
18
}
19

    
20
.comment-preview { /* Preview of the comment before submitting new or updated comment */
21
  background-color: #ffffea; /* Drupal core will use a #ffffea background. See #1110842 */
22
}
23

    
24
.comment.new { /* A new comment since the user last viewed the page. */
25
}
26

    
27
.comment.first { /* The first comment in the list of comments */
28
}
29

    
30
.comment.last { /* The last comment in the list of comments */
31
}
32

    
33
.comment.odd { /* An odd-numbered comment in the list of comments */
34
}
35

    
36
.comment.even { /* An even-numbered comment in the list of comments */
37
}
38

    
39
.comment-by-anonymous { /* A comment created by an anonymous user */
40
}
41

    
42
.comment-by-node-author { /* A comment created by the node's author */
43
}
44

    
45
.comment-by-viewer { /* A comment created by the current user */
46
}
47

    
48
h3.comment-title { /* Comment title */
49
}
50

    
51
.comment .new { /* "New" marker for comments that are new for the current user */
52
  color: #c00;
53
}
54

    
55
.comment .user-picture { /* The picture of the comment author */
56
}
57

    
58
.comment .submitted { /* The "posted by" information */
59
}
60

    
61
.comment .permalink { /* Comment's permalink wrapper */
62
  text-transform: uppercase;
63
  font-size: 75%;
64
}
65

    
66
.comment .user-signature { /* The user's signature */
67
}
68

    
69
.comment ul.links { /* Comment links. See also the ul.links declaration in the pages.css. */
70
}
71

    
72
.indented { /* Nested comments are indented */
73
  margin-left: 30px; /* Drupal core uses a 25px left margin */
74
}
75

    
76
.comment-unpublished { /* Unpublished comments */
77
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
78
}
79

    
80
.comment-unpublished p.unpublished { /* The word "Unpublished" displayed underneath the content. See also the div.unpublished declaration in the nodes.css. */
81
}
(3-3/19)