diff options
author | crupest <crupest@outlook.com> | 2023-08-15 01:37:16 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-08-15 01:37:16 +0800 |
commit | 3a54aa6171ad14854e877e1b4f320f808ed61811 (patch) | |
tree | cc474f40f4ba4962273a473fa602c5ec020b4262 /FrontEnd/src/pages/timeline/TimelinePostCreateView.css | |
parent | 93bc2b9688ebc0dde2ae8d5cf3e3f2628d636ff0 (diff) | |
download | timeline-3a54aa6171ad14854e877e1b4f320f808ed61811.tar.gz timeline-3a54aa6171ad14854e877e1b4f320f808ed61811.tar.bz2 timeline-3a54aa6171ad14854e877e1b4f320f808ed61811.zip |
...
Diffstat (limited to 'FrontEnd/src/pages/timeline/TimelinePostCreateView.css')
-rw-r--r-- | FrontEnd/src/pages/timeline/TimelinePostCreateView.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/FrontEnd/src/pages/timeline/TimelinePostCreateView.css b/FrontEnd/src/pages/timeline/TimelinePostCreateView.css index d33d4bb7..f54c5103 100644 --- a/FrontEnd/src/pages/timeline/TimelinePostCreateView.css +++ b/FrontEnd/src/pages/timeline/TimelinePostCreateView.css @@ -16,6 +16,17 @@ .timeline-post-create-edit-text {
width: 100%;
height: 100%;
+ background-color: var(--cru-background-color);
+ color: var(--cru-text-primary-color);
+ border: 1px solid transparent;
+}
+
+.timeline-post-create-edit-text:hover {
+ border-color: var(--cru-button-secondary-normal-color)
+}
+
+.timeline-post-create-edit-text:focus {
+ border-color: var(--cru-button-secondary-normal-color)
}
.timeline-post-create-image {
|