diff options
author | crupest <crupest@outlook.com> | 2023-09-14 23:47:16 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-16 23:06:31 +0800 |
commit | aef14be13c3bd9e93eeea598dbfbf707ba98d448 (patch) | |
tree | bb0a4199849dec57c5f0c190cb213fc22296622c /FrontEnd/src/pages/timeline/edit/MarkdownPostEdit.css | |
parent | 754597d49cd2d3f6295e5fe3ed68c6210bf4e8a5 (diff) | |
download | timeline-aef14be13c3bd9e93eeea598dbfbf707ba98d448.tar.gz timeline-aef14be13c3bd9e93eeea598dbfbf707ba98d448.tar.bz2 timeline-aef14be13c3bd9e93eeea598dbfbf707ba98d448.zip |
...
Diffstat (limited to 'FrontEnd/src/pages/timeline/edit/MarkdownPostEdit.css')
-rw-r--r-- | FrontEnd/src/pages/timeline/edit/MarkdownPostEdit.css | 34 |
1 files changed, 12 insertions, 22 deletions
diff --git a/FrontEnd/src/pages/timeline/edit/MarkdownPostEdit.css b/FrontEnd/src/pages/timeline/edit/MarkdownPostEdit.css index 33a77943..c5b41b40 100644 --- a/FrontEnd/src/pages/timeline/edit/MarkdownPostEdit.css +++ b/FrontEnd/src/pages/timeline/edit/MarkdownPostEdit.css @@ -1,34 +1,24 @@ -.timeline-markdown-post-edit-page {
- overflow: auto;
- max-height: 300px;
+.timeline-edit-markdown-tab-page {
+ min-height: 8em;
+ display: flex;
}
-.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-edit-markdown-text {
+ width: 100%;
}
-.timeline-post-create-markdown-edit-area:hover {
- border: 1px solid var(--cru-clickable-primary-normal-color);
- border-top: none;
+.timeline-edit-markdown-images {
+ display: flex;
+ flex-wrap: wrap;
}
-.timeline-markdown-post-edit-image-container {
- position: relative;
- text-align: center;
- margin-bottom: 1em;
+.timeline-edit-markdown-images img {
+ max-width: 100%;
+ max-height: 200px;
}
-.timeline-markdown-post-edit-image {
+.timeline-edit-markdown-preview img {
max-width: 100%;
max-height: 200px;
}
-.timeline-markdown-post-edit-image-delete-button {
- position: absolute;
- right: 10px;
- top: 2px;
-}
|