Forum: Missing translation
[edumed.git] / edumed / static / css / forum.scss
1 @import "mixins";
2
3
4 ul.breadcrumb {
5     margin: 0;
6     padding: 0;
7     list-style: none;
8     li {
9         display: inline;
10     }
11 }
12
13
14
15 .forum-body {
16     .pagination {
17         ul {
18             margin: 0;
19             padding: 0;
20             list-style: none;
21
22             li {
23                 display: inline-block;
24                 a {
25                     display: block;
26                     padding: .5em;
27                 }
28             }
29
30             .disabled {
31                 a {
32                     color: black;
33                 }
34             }
35         }
36     }
37
38     .table {
39         width: 100%;
40         margin: 1em 0;
41     }
42
43     .forum-description {
44         margin: 5px;
45     }
46
47     .forum-row, .topic-row {
48         width: 100%;
49     }
50
51     .forum-name, .topic-name {
52         width: 40%;
53         text-align: left;
54     }
55
56     .forum-topic-count, .forum-post-count, .topic-post-count, .topic-view-count {
57         width: 10%;
58         text-align: center;
59     }
60
61     .forum-last-post, .topic-last-post {
62         width: 32%;
63         text-align: center;
64     }
65
66     .first-unread-post-link, .first-unread-post-link:hover {
67         text-decoration: none;
68     }
69
70
71
72     .post:nth-child(4n+4) {
73         background-color: lighten(#D0D0D0 , 10%);
74     }
75
76     .post-header {
77        padding: 3px 0 3px 20px;
78        th {
79             text-align: left;
80        }
81     }
82
83     .post-info {
84         width: 200px;
85         padding: 10px;
86
87         .avatar {
88
89         }
90
91         .post-author {
92             padding: 5px 0;
93         }
94
95         .post-extra-info {
96         }
97
98         .post-controls {
99         }
100     }
101
102     .post-content {
103         vertical-align: top;
104         padding: 10px;
105     }
106
107     .post-signature {
108         color: #CCC;
109         margin-top: 15px;
110         border-top: 1px dotted #CCC;
111         display: block;
112     }
113
114     .post-related {
115         margin-top: 20px;
116     }
117
118
119
120
121     .forum-headline {
122         margin-top: 10px;
123     }
124
125     .attachments-form {
126         padding-bottom: 15px;
127     }
128
129     .attachment-link {
130         border-bottom: 1px dotted;
131     }
132
133     /* --- Unread --- */
134
135     .state-indicator {
136         display: block;
137         float: left;
138         height: 10px;
139         width: 10px;
140         margin: 3px 5px;
141     }
142
143     .topic-unread, .forum-unread {
144         a {
145             font-weight: bold;
146         }
147         .state-indicator {
148         }
149     }
150
151     /* --- Moderation --- */
152     .on-moderation {
153         background: #ffcccc;
154     }
155
156     /* --- Mini pagination --- */
157     .mini-pagination {
158         padding: 3px 0 3px 10px;
159     }
160
161
162     .post-form {
163         input, textarea {
164             @include base-font;
165             font-size: 1.6em;
166         }
167         #id_name {
168             width: 698px;
169         }
170     }
171 }