blob: 33a77943641ddc34ef7b7d998f2aeb6bb9b29263 (
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
|
.timeline-markdown-post-edit-page {
overflow: auto;
max-height: 300px;
}
.timeline-post-create-markdown-edit-area {
border: 1px solid var(--cru-clickable-primary-normal-color);
border-top: none;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
padding: 0.6em;
}
.timeline-post-create-markdown-edit-area:hover {
border: 1px solid var(--cru-clickable-primary-normal-color);
border-top: none;
}
.timeline-markdown-post-edit-image-container {
position: relative;
text-align: center;
margin-bottom: 1em;
}
.timeline-markdown-post-edit-image {
max-width: 100%;
max-height: 200px;
}
.timeline-markdown-post-edit-image-delete-button {
position: absolute;
right: 10px;
top: 2px;
}
|