]> BookStack Code Mirror - bookstack/blob - resources/assets/sass/_comments.scss
Merge pull request #11 from BookStackApp/master
[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: none;
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: 4px;
18         ul {
19             padding-left: 0px;
20             margin-bottom: 5px;
21         }
22         li {
23             float: left;
24             list-style-type: none;
25         }
26         
27         li:after {
28             content: '•';
29             color: #707070;
30             padding: 0 5px;
31             font-size: 1em;
32         }
33         
34         li:last-child:after {
35             content: none;
36         }
37     }
38     
39     .comment-header {
40         font-size: 1.25em;
41         margin-top: 0.6em;
42     }
43     
44     .comment-body {
45         
46     }
47     
48     .user-image {
49         float: left;
50         margin-right: 10px;
51         width: 32px;
52         img {
53             width: 100%;
54         }
55     }    
56 }
57
58 .comment-editor {
59     margin-top: 2em;
60     
61     textarea {
62         display: block;
63         width: 100%;
64         max-width: 100%;
65         min-height: 120px;
66     }
67 }