blob: 4f2ae60ab52c99773ee7d5270a4de0e490aaa549 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#content {
justify-content: flex-start !important;
}
#content > * {
width: 100%;
}
.many-buttons {
width: 100%;
display: flex;
}
.many-buttons > * {
flex: 1;
margin-right: .3em;
}
.many-buttons > *:last-of-type {
margin-right: 0;
}
#editPost {
display: flex;
position: relative;
}
#new-message-input {
flex: 1;
box-sizing: border-box;
}
#file-upload {
font-size: inherit;
color: transparent;
width: 1.99em;
height: 1.99em;
margin-left: .3em;
}
#file-upload:hover {
cursor: pointer;
}
#file-upload::-webkit-file-upload-button {
visibility: hidden;
}
#attachment-img {
height: 1.99em;
width: 1.99em;
position: absolute;
right: 0;
pointer-events: none;
}
.submit-btn {
margin: 0 auto;
margin-bottom: .5em;
}
|