blob: 372792c4a1dc019add440946b8754c903afe26c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#create-post {
width: 100%;
margin-top: 1em;
}
#new-post-message {
min-height: 1.5em;
resize: vertical;
}
#attachments-btns {
padding: 0.5em 0;
}
#attachments-btns img, .file-button > input {
height: 1.4em;
width: 1.4em;
}
#new-post-attachments {
margin-bottom: 0.5em;
}
.file-button {
position: relative;
}
.file-button > img {
position: absolute;
pointer-events: none;
}
.file-button > input {
font-size: inherit;
color: transparent;
}
|