fnp
/
fnpeditor.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
140e836bd576d975b88162ddf21d8bb60225aed6
[fnpeditor.git]
/
src
/
editor
/
modules
/
documentCanvas
/
canvas
/
comments
/
comments.less
1
.comments {
2
@borderColor: darken(#FFFCB7, 45%);
3
4
font-size: 12px;
5
6
.comment {
7
8
border-color: @borderColor;
9
border-style: solid;
10
border-width: 1px 0;
11
margin-top: -1px;
12
padding-bottom: 10px;
13
14
&:first-child {
15
margin-top:0;
16
}
17
18
.header {
19
padding: 0 3px;
20
font-size: 10px;
21
22
.author {
23
24
}
25
.date {
26
float: right;
27
}
28
}
29
30
.content {
31
padding: 5px;
32
}
33
34
.edit {
35
display: none;
36
}
37
}
38
39
.newComment {
40
margin-top: 10px;
41
42
43
}
44
45
textarea {
46
display: block;
47
width: calc(~'100% - 4px');
48
padding: 2px 2px;
49
margin: 0 0 10px 0;
50
font-size: 12px;
51
resize: vertical;
52
outline: none !important;
53
box-shadow: none;
54
55
}
56
57
}