Projet

Général

Profil

Paste
Télécharger (5,61 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / advanced_forum / styles / silver_bells / advanced-forum.silver_bells.style.css @ c169e7c4

1

    
2
/*
3
This file contains colors, graphics, and text effects.
4

5
Colors used:
6
  #C1C1C1 Borders, post seperator, avatar frame, statistics subheader.
7
  #333333 Table header font color.
8
  #F5F5F5 to #DDDDDD Gradient on table headers, post info, stats header, top
9
                     post footer, topic navigation.
10
  #F5F5F5 to #EFEFEF Gradient on topic list background.
11
  #F5F5F5 Stats section background.
12
  #FAFAFA Text area on posts.
13
*/
14

    
15
/*** PAGER *******************************************************************/
16

    
17
/* This is the pager on the topics in the list */
18
.topic-pager {
19
  font-style: italic;
20
}
21

    
22
.forum-pager .pager a,
23
#forum-comments .pager a {
24
  font-weight: bold;
25
}
26

    
27
.forum-pager .pager a:link,
28
.forum-pager .pager a:visited,
29
#forum-comments .pager a:link,
30
#forum-comments .pager a:visited {
31
  text-decoration: none;
32
  border: 1px solid #C1C1C1;
33
  background: #EFEFEF;
34
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#EFEFEF));
35
  background: -moz-linear-gradient(top, #F5F5F5, #EFEFEF);
36
}
37

    
38
.forum-pager .pager-current,
39
.forum-pager .pager a:hover,
40
#forum-comments .pager-current,
41
#forum-comments .pager a:hover {
42
  background: #333333;
43
  color: #FFFFFF !important;
44
}
45

    
46
.forum-pager .pager a.active,
47
#forum-comments .pager a.active {
48
  color: #333333;
49
}
50

    
51
/*** FORUM & TOPIC LISTS ******************************************************/
52

    
53
/* Forum list and topic list tables */
54
.forum-table {
55
  border: 1px solid #C1C1C1;
56
}
57

    
58
/* Table name and description on forum list and table header on topic list */
59
.forum-table-wrap .forum-table-superheader,
60
.forum-table-topics thead tr  {
61
  border: 1px solid #C1C1C1;
62
  background: #DDDDDD;
63
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#DDDDDD));
64
  background: -moz-linear-gradient(top, #F5F5F5, #DDDDDD);
65
  color: #333333;
66
}
67

    
68
/* Table name on forum list */
69
.forum-table-superheader .forum-table-name,
70
.forum-table-superheader .forum-table-name a {
71
  color: #333333;
72
  font-weight: bold;
73
  color: #333333;
74
  font-weight: bold;
75
  border-bottom: none;
76
}
77

    
78
/* Table header on forum list */
79
.forum-table-wrap thead tr {
80
  background-color: #F5F5F5;
81
  border: 1px solid #C1C1C1;
82
}
83

    
84
/* Table header on forum list and topic list */
85
.forum-table thead tr a,
86
.forum-table thead tr a:visited,
87
.forum-table thead tr a:link {
88
  color: #333333;
89
  font-weight: bold;
90
}
91

    
92
/* Reset to avoid bleed-thru from theme */
93
.forum-table thead th {
94
  border-bottom: none;
95
}
96

    
97
/* Rows on both tables */
98
.forum-table tr.even,
99
.forum-table tr.odd {
100
  border-top: 1px solid #C1C1C1;
101
  background: #EFEFEF;
102
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#DDDDDD));
103
  background: -moz-linear-gradient(top, #F5F5F5, #DDDDDD);
104
}
105

    
106
/* Active column on both tables - reset to prevent bleed thru from theme */
107
.forum-table tr.even td.active,
108
.forum-table tr.odd td.active{
109
  background-color: transparent;
110
}
111

    
112
/* Individual cells on both tables */
113
.forum-table td {
114
  border: 1px solid #C1C1C1;
115
}
116

    
117
/* Placeholder when there are no topics in the list */
118
.view-advanced-forum-topic-list .view-empty {
119
  border: 3px solid #C1C1C1;
120
}
121

    
122
/*** Sticky topics ***/
123
.forum-table tr.forum-last-sticky {
124
  border-bottom: 10px solid #C1C1C1;
125
}
126

    
127
.forum-table .sticky-label {
128
  font-weight: bold;
129
}
130

    
131
/*** FORUM STATISTICS *********************************************************/
132

    
133
#forum-statistics {
134
  border: 1px solid #C1C1C1;
135
}
136

    
137
#forum-statistics-header {
138
  border-top: 1px solid #C1C1C1;
139
  background: #DDDDDD;
140
  background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#DDDDDD));
141
  background: -moz-linear-gradient(top, #EFEFEF, #DDDDDD);
142
  color: #333333;
143
  font-weight: bold;
144
}
145

    
146
.forum-statistics-sub-header {
147
  border-top: 1px solid #C1C1C1;
148
  border-bottom: 1px solid #C1C1C1;
149
  font-weight: bold;
150
}
151

    
152
.forum-statistics-sub-body {
153
  background-color: #F5F5F5;
154
}
155

    
156
/*** FORUM TOPICS **********************************************************/
157

    
158
div.forum-post {
159
  border: 1px solid #C1C1C1;
160
}
161

    
162
/* Header at the top of each post */
163
.forum-post-info {
164
  border-top: 1px solid #FAFAFA;
165
  background: #DDDDDD;
166
  background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(#DDDDDD));
167
  background: -moz-linear-gradient(top, #EFEFEF, #DDDDDD);
168
  color: #333333;
169
  font-weight: bold;
170
  border-bottom: 1px solid #C1C1C1;
171
}
172

    
173
.forum-posted-on {
174
  font-weight: bold;
175
}
176

    
177
.forum-post-number a {
178
  color: #333333 !important;
179
}
180

    
181
/* Wrapper around author pane and content */
182
.forum-post-wrapper {
183
  background-color: #F5F5F5;
184
}
185

    
186
/* Author information pane */
187
.forum-post-panel-sub .author-pane .author-name {
188
  font-weight: bold;
189
}
190

    
191
.forum-post-panel-sub .author-pane .picture img {
192
  border: 1px solid #C1C1C1;
193
  background-color: #FFFFFF;
194
}
195

    
196
.forum-post-panel-sub .author-pane .author-pane-label {
197
  font-weight: bold;
198
}
199

    
200
/* Post text area */
201
.forum-post-panel-main {
202
  border-left: 1px solid #C1C1C1;
203
  background-color: #FAFAFA;
204
}
205

    
206
.forum-post-title {
207
  font-weight: bold;
208
  border-bottom: 1px solid #C1C1C1;
209
}
210

    
211
/* Signature */
212
.author-signature {
213
  font-size: .8em;
214
}
215

    
216
/* Post footer */
217
.forum-post-footer {
218
  border-top: 1px solid #C1C1C1;
219
}
220

    
221
.forum-jump-links {
222
  border-right: none;
223
}
224

    
225
/* Box under top post before first reply */
226
.forum-top-post-footer {
227
  border: 1px solid #C1C1C1;
228
  background: #DDDDDD;
229
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#DDDDDD));
230
  background: -moz-linear-gradient(top, #F5F5F5, #DDDDDD);
231
}
232

    
233
/* Topic navigation */
234
.forum-topic-navigation {
235
  border: 1px solid #C1C1C1;
236
  background: #DDDDDD;
237
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#DDDDDD));
238
  background: -moz-linear-gradient(top, #F5F5F5, #DDDDDD);
239
}