xref: /template/writr/css/plugins/discussion.less (revision 0a061faf71358f054b1487af502591d5fd93663e)
1/* =Discussion & Avatar Plugin
2----------------------------------------------- */
3
4.dokuwiki .vcard img.photo {
5    border-radius: 50%;
6}
7
8.dokuwiki div.comment_wrapper {
9    margin: 0 -40px;
10    padding: 20px 40px;
11    border-top: 3px solid @ini_text_alt;
12    background-color: @ini_background;
13
14    h2 a {
15        color: @ini_text_alt;
16    }
17
18    div.hentry {
19        padding-bottom: 10px;
20        margin-bottom: 20px;
21        border-bottom: 3px solid @ini_background_alt;
22
23        div.comment_head {
24            color: @ini_text_alt;
25        }
26
27        div.comment_buttons {
28            text-align: right;
29        }
30        input.button {
31            font-size: 12px;
32            padding: 5px 10px;
33        }
34
35        /* dead code for now due to bug in discussion plugin */
36        div.comment_head span.author {
37            background-position: -2px 3px;
38        }
39        div.comment_head abbr.published {
40            background-position: -1px 4px;
41        }
42        div.comment_body {
43            border-bottom-width: 0;
44        }
45    }
46
47    div.comment_form div.toolbar {
48        padding-top: 10px;
49    }
50
51    div.comment_preview {
52        padding: 0;
53        border-width: 0;
54        background: @ini_background_alt;
55    }
56}
57