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