blob: 5986e5664b4b80e4f5b556807ccc5ce791684266 (
plain)
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
|
.timeline-post-create-card {
position: sticky !important;
top: 106px;
z-index: 100;
margin-right: 200px;
}
.timeline-post-create {
display: flex;
}
.timeline-post-create-edit-area {
flex-grow: 1;
}
.timeline-post-create-edit-text {
width: 100%;
height: 100%;
background-color: var(--cru-background-color);
color: var(--cru-text-primary-color);
border: 1px solid var(--cru-text-primary-color);
padding: 0.5em;
border-radius: 5px;
}
.timeline-post-create-edit-text:hover {
border-color: var(--cru-clickable-secondary-normal-color)
}
.timeline-post-create-edit-text:focus {
border-color: var(--cru-clickable-secondary-normal-color)
}
.timeline-post-create-image {
max-width: 100px;
max-height: 100px;
}
.timeline-post-create-right-area {
display: flex;
flex-direction: column;
align-items: center;
margin-left: 1em;
}
|