]> BookStack Code Mirror - bookstack/blob - resources/assets/sass/_comments.scss
Removes some unused code.
[bookstack] / resources / assets / sass / _comments.scss
1 .comments-list {
2     .comment-box {
3         border-bottom: 1px solid $comment-border;
4     }
5
6     .comment-box:last-child {
7         border-bottom: 0px;
8     }
9 }
10 .page-comment {
11     .comment-container {
12         margin-left: 42px;
13     }
14
15     .comment-actions {
16         font-size: 0.8em;
17         padding-bottom: 2px;
18
19         ul {
20             padding-left: 0px;
21             margin-bottom: 2px;
22         }
23         li {
24             float: left;
25             list-style-type: none;
26         }
27
28         li:after {
29             content: '•';
30             color: #707070;
31             padding: 0 5px;
32             font-size: 1em;
33         }
34
35         li:last-child:after {
36             content: none;
37         }
38     }
39
40     .comment-actions {
41         border-bottom: 1px solid #DDD;
42     }
43
44     .comment-actions:last-child {
45         border-bottom: 0px;
46     }
47
48     .comment-header {
49         font-size: 1.25em;
50         margin-top: 0.6em;
51     }
52
53     .comment-body p {
54         margin-bottom: 1em;
55     }
56
57     .comment-inactive {
58         font-style: italic;
59         font-size: 0.85em;
60         padding-top: 5px;
61     }
62
63     .user-image {
64         float: left;
65         margin-right: 10px;
66         width: 32px;
67         img {
68             width: 100%;
69         }
70     }
71 }
72
73 .comment-editor {
74     margin-top: 2em;
75
76     textarea {
77         display: block;
78         width: 100%;
79         max-width: 100%;
80         min-height: 120px;
81     }
82 }