summaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-25 16:34:45 -0700
committerAndrew Godwin2022-11-25 16:34:45 -0700
commit48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb (patch)
treee3b068209ae06ce4baebc2e14ff527a8bd17c31e /static
parent79002e1eaf96e9cfcd2993715b67cf3a61e02fb3 (diff)
downloadtakahe-48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb.tar.gz
takahe-48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb.tar.bz2
takahe-48ab05d28542ab3d9ddb654bc7f61e5dbe59a0fb.zip
Better reply UI on compose form
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
index 8660ae2..737d9bf 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -693,23 +693,41 @@ h1.identity small {
overflow: hidden;
}
+.post.mini {
+ font-size: 14px;
+}
+
.left-column .post {
background: var(--color-bg-box);
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
padding: 10px;
}
+.left-column form .post {
+ background-color: var(--color-bg-main);
+}
+
.post .icon {
height: 48px;
width: auto;
float: left;
}
+.post.mini .icon {
+ height: 28px;
+ width: auto;
+ float: left;
+}
+
.post .handle {
display: block;
padding: 7px 0 0 64px;
}
+.post.mini .handle {
+ padding: 7px 0 0 36px;
+}
+
.post time {
display: block;
float: right;
@@ -750,6 +768,10 @@ h1.identity small {
margin-left: 64px;
}
+.post.mini .content {
+ margin-left: 0px;
+}
+
.post .content.hidden {
display: none;
}