1// $Id$
2
3$imagePath: "../../../img/";
4
5//***** Forums *****/
6body.tiki_forums .normal {
7	margin: auto;
8}
9
10#forumpostopen {
11	display: block;
12}
13
14.post .postbody {
15	clear: both;
16	margin: 0;
17	padding: 0;
18}
19
20.post .postbody .content {
21	padding: 0 3px 3px 3px;
22	margin: 0;
23	text-align: left;
24}
25
26.post .postbody-title {
27	overflow: hidden;
28}
29
30.post .postbody-title .checkbox {
31	float: left;
32}
33
34.post .postbody-title .title {
35	margin-left: 5px;
36	margin-top: 3px;
37}
38
39.post .author_post_info {
40	padding-left: 4px;
41	padding-bottom: 4px;
42}
43
44.post .author_info .icons {
45	display: block;
46}
47
48.post .author_info .icons .actions {
49	margin-right: 10px;
50}
51
52.commentStyle_headers .author_info {
53	float: left;
54}
55
56.post .postbody .attachments {
57	clear: both;
58	margin-top: 5px;
59}
60
61.post .postbody .attachments img {
62	vertical-align: text-bottom;
63}
64
65.post .postfooter .rating {
66	display: inline;
67}
68
69.post .avatar {
70	float: right;
71	margin-bottom: 5px;
72	margin-left: 4px;
73	padding: 3px
74}
75
76.post .forumDeliberationRatingForm {
77	width: 100%;
78	float: none !important;
79	text-align: right;
80}
81
82.postfooter-nav {
83	width: 100%;
84	display: block;
85	margin-top: 1em;
86}
87
88.postfooter-nav .postfooter-nav-prev {
89	text-align: left;
90	float: left;
91	width: 50%;
92}
93
94.postfooter-nav .postfooter-nav-next {
95	text-align: right;
96	float: right;
97	width: 50%;
98}
99
100.sub_comment {
101	padding-left: 20px;
102}
103
104.sub_comment_area {
105	clear: both;
106	background: url('#{$imagePath}edge.gif') no-repeat top left;
107}
108
109.forum_actions .actions {
110	clear: both;
111	padding: 3px;
112	vertical-align: middle;
113}
114
115.forum_actions .actions .action {
116	margin-right: 10px;
117}
118
119.forum_actions .headers {
120	vertical-align: bottom;
121}
122
123.forum_actions .headers .title {
124	float: left;
125	border-bottom: 0;
126	padding: 1px;
127}
128
129.forum_actions .headers .infos {
130	float: right;
131	padding-top: 2px;
132}
133
134.nb_replies {
135	white-space: nowrap;
136}
137
138.post_preview,
139.top_post {
140	margin-bottom: 15px;
141}
142
143//* Forum filter collapsible panel. Adds +/-*/
144.filter-panel-heading a:after {
145//	font-family: 'Font-Awesome'; // Is this change ok? Todo
146	content: "\2212";
147	float: left;
148	margin-right: 15px;
149	//	color: $gray; (moved to _tiki-selectors.scss)
150}
151
152.filter-panel-heading a.collapsed:after {
153	content: "\2b";
154}
155