diff options
author | Andrew Godwin | 2022-11-27 12:37:52 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-27 12:37:52 -0700 |
commit | 3217569df583829d776bcbaf77b80696d3527005 (patch) | |
tree | 8924b33d8dc2e768c1b594d99c9128b698499449 /static/css | |
parent | 03ba96ff26943f11b0ae1a21a0bcc39309b05901 (diff) | |
download | takahe-3217569df583829d776bcbaf77b80696d3527005.tar.gz takahe-3217569df583829d776bcbaf77b80696d3527005.tar.bz2 takahe-3217569df583829d776bcbaf77b80696d3527005.zip |
Link to post pages and show replies there
Fixes #60, #59
Diffstat (limited to 'static/css')
-rw-r--r-- | static/css/style.css | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css index 93ad329..772d527 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -695,10 +695,16 @@ h1.identity small { .post { margin-bottom: 20px; overflow: hidden; + cursor: pointer; } .post.mini { font-size: 14px; + cursor: inherit; +} + +.post.reply { + margin-left: 32px; } .left-column .post { @@ -778,7 +784,8 @@ h1.identity small { margin-left: 64px; } -.post.mini .content, .post.mini .edited { +.post.mini .content, +.post.mini .edited { margin-left: 0px; } |