Projet

Général

Profil

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

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

1

    
2
/*
3
This file contains colors, graphics, and text effects. For structural markup,
4
see advanced_forum-structure.css.
5
*/
6

    
7
/*** PAGER *******************************************************************/
8

    
9
/* This is the pager on the topics in the list */
10
.topic-pager {
11
  font-style: italic;
12
}
13

    
14
/* Other pagers in the forum */
15
.forum-pager .pager a,
16
#forum-comments .pager a {
17
  font-weight: bold;
18
}
19

    
20
.forum-pager .pager a:link,
21
.forum-pager .pager a:visited,
22
#forum-comments .pager a:link,
23
#forum-comments .pager a:visited {
24
  text-decoration: none;
25
  border: 1px solid #91CDF5;
26
  background: #EDF5FA;
27
  background: -webkit-gradient(linear, left top, left bottom, from(#CBE2F1), to(#EDF5FA));
28
  background: -moz-linear-gradient(top, #CBE2F1, #EDF5FA);
29
  font-weight: bold;
30
}
31

    
32
.forum-pager .pager-current,
33
.forum-pager .pager a:hover,
34
#forum-comments .pager-current,
35
#forum-comments .pager a:hover {
36
  color: #0062A0;
37
}
38

    
39
.forum-pager .pager a.active,
40
#forum-comments .pager a.active {
41
  background: #EDF5FA;
42
  background: -webkit-gradient(linear, left top, left bottom, from(#CBE2F1), to(#EDF5FA));
43
  background: -moz-linear-gradient(top, #CBE2F1, #EDF5FA);
44
  color: #0062A0;
45
}
46

    
47
/*** FORUM & TOPIC LIST ******************************************************/
48

    
49
/* Forum list and topic list tables */
50
.forum-table {
51
  border: 1px solid #2587C4;
52
}
53

    
54
/* Table name and description on forum list and table header on topic list */
55
.forum-table-wrap .forum-table-superheader,
56
.forum-table-topics thead tr  {
57
  border-top: 1px solid #2587C4;
58
  background: #2587C4;
59
  background: -webkit-gradient(linear, left top, left bottom, from(#2587C4), to(#58B3ED));
60
  background: -moz-linear-gradient(top, #2587C4, #58B3ED);
61
  color: #EDF5FA;
62
}
63

    
64
/* Table name on forum list */
65
.forum-table-superheader .forum-table-name,
66
.forum-table-superheader .forum-table-name a {
67
 font-weight: bold;
68
}
69

    
70

    
71
.forum-table th a,
72
.forum-table th a:visited,
73
.forum-table th a:link {
74
  color: #ffffff;
75
}
76

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

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

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

    
96

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

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

    
113
/* Individual cells on both tables */
114
.forum-table td {
115
  border: none;
116
}
117

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

    
123
/*** Sticky topics ***/
124
.forum-table tr.sticky {
125
  background-color: #E6EDEC;
126
}
127

    
128
.forum-table tr.forum-last-sticky {
129
  border-bottom: 10px solid #91CDF5;
130
}
131

    
132
.forum-table .sticky-label {
133
  font-weight: bold;
134
}
135

    
136
/*** FORUM STATISTICS *******************************************************/
137

    
138
#forum-statistics {
139
  border: 1px solid #91CDF5;
140
}
141

    
142
#forum-statistics-header {
143
  border-top: 1px solid #2587C4;
144
  background: #2587C4;
145
  background: -webkit-gradient(linear, left top, left bottom, from(#2587C4), to(#58B3ED));
146
  background: -moz-linear-gradient(top, #2587C4, #58B3ED);
147
  color: #ffffff;
148
  font-weight: bold;
149
  border-bottom: 1px solid #2587C4;
150

    
151
}
152

    
153
.forum-statistics-sub-header {
154
  background-color: #CBE2F1;
155
  font-weight: bold;
156
}
157

    
158
.forum-statistics-sub-body {
159
  background-color: #F5F5F5;
160
}
161

    
162

    
163
/*** FORUM TOPICS **********************************************************/
164

    
165
div.forum-post {
166
  border: 2px solid #2587C4;
167
}
168

    
169
/* Header at the top of each post */
170
.forum-post-info {
171
  border-top: 1px solid #2587C4;
172
  background: #2587C4;
173
  background: -webkit-gradient(linear, left top, left bottom, from(#2587C4), to(#58B3ED));
174
  background: -moz-linear-gradient(top, #2587C4, #58B3ED);
175
  color: #ffffff;
176
  font-weight: bold;
177
  border-bottom: 1px solid #2587C4;
178
}
179

    
180
.forum-posted-on {
181
  font-weight: bold;
182
}
183

    
184
.forum-forum-post .new {
185
  color: #ffffff;
186
}
187

    
188
.forum-post-number a {
189
  color: #ffffff !important;
190
}
191

    
192
/* Wrapper around author pane and content */
193
.forum-post-wrapper {
194
  background-color: #EDF5FA;
195
}
196

    
197
/* Author information pane */
198
.forum-post-panel-sub .author-pane .author-name {
199
  font-weight: bold;
200
}
201

    
202
.forum-post-panel-sub .author-pane .picture img {
203
  border: 1px solid #2587C4;
204
  background-color: #FFFFFF;
205
}
206

    
207
.forum-post-panel-sub .author-pane .author-pane-label {
208
  font-weight: bold;
209
}
210

    
211
/* Post text area */
212
.forum-post-panel-main {
213
  background-color: #FFFFFF;
214
  border-left: 1px solid #2587C4;
215
}
216

    
217
.forum-post-title {
218
  font-weight: bold;
219
  border-bottom: 1px solid #2587C4;
220
}
221

    
222
/* Post footer */
223
.forum-post-footer {
224
  background-color: #FFFFFF;
225
  border-top: 1px solid #2587C4;
226
}
227

    
228
/* Box under top post before first reply */
229
.forum-top-post-footer {
230
  border: 2px solid #2587C4;
231
  background: #EDF5FA;
232
  background: -webkit-gradient(linear, left top, left bottom, from(#CBE2F1), to(#EDF5FA));
233
  background: -moz-linear-gradient(top, #CBE2F1, #EDF5FA);
234
}
235

    
236
/* Topic navigation */
237
.forum-topic-navigation {
238
  border: 2px solid #2587C4;
239
  background: #EDF5FA;
240
  background: -webkit-gradient(linear, left top, left bottom, from(#CBE2F1), to(#EDF5FA));
241
  background: -moz-linear-gradient(top, #CBE2F1, #EDF5FA);
242
}
243

    
244

    
245