diff options
author | crupest <crupest@outlook.com> | 2023-09-14 18:58:44 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-09-15 21:39:52 +0800 |
commit | 754597d49cd2d3f6295e5fe3ed68c6210bf4e8a5 (patch) | |
tree | 342a27eb79319a98c95838b4f88149196dbe0ed8 /FrontEnd/src/pages/timeline/edit/PlainTextPostEdit.css | |
parent | 40b4871c3f7bfe04f332ae7fb687fd7d9ae34734 (diff) | |
download | timeline-754597d49cd2d3f6295e5fe3ed68c6210bf4e8a5.tar.gz timeline-754597d49cd2d3f6295e5fe3ed68c6210bf4e8a5.tar.bz2 timeline-754597d49cd2d3f6295e5fe3ed68c6210bf4e8a5.zip |
Fix mobile post create.
Diffstat (limited to 'FrontEnd/src/pages/timeline/edit/PlainTextPostEdit.css')
-rw-r--r-- | FrontEnd/src/pages/timeline/edit/PlainTextPostEdit.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/FrontEnd/src/pages/timeline/edit/PlainTextPostEdit.css b/FrontEnd/src/pages/timeline/edit/PlainTextPostEdit.css index 0f2b9dbd..4a608304 100644 --- a/FrontEnd/src/pages/timeline/edit/PlainTextPostEdit.css +++ b/FrontEnd/src/pages/timeline/edit/PlainTextPostEdit.css @@ -1,4 +1,4 @@ -.timeline-post-create-edit-text { +.timeline-edit-plain-text-input { width: 100%; height: 100%; background-color: var(--cru-background-color); @@ -6,13 +6,14 @@ border: 1px solid var(--cru-text-major-color); padding: 0.5em; border-radius: 5px; + transition: border-color 0.5s; } -.timeline-post-create-edit-text:hover { +.timeline-edit-plain-text-input:hover { border-color: var(--cru-clickable-secondary-normal-color); } -.timeline-post-create-edit-text:focus { +.timeline-edit-plain-text-input:focus { border-color: var(--cru-clickable-secondary-normal-color); } |