aboutsummaryrefslogtreecommitdiff
path: root/src/public
diff options
context:
space:
mode:
authorAkshay <[email protected]>2024-12-19 16:12:08 +0000
committerAkshay <[email protected]>2024-12-19 16:14:49 +0000
commitf8bef76385f8af54b2f3de24879c1fe04d277c11 (patch)
tree8764a7d77bcdc541c2b26c03c8e8eb3663ee0ab5 /src/public
parent79b7e7ebcfabc46cbaac0d13b769203b1d3a10e9 (diff)
add `edited` indicator to comments
Diffstat (limited to 'src/public')
-rw-r--r--src/public/styles.css11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/public/styles.css b/src/public/styles.css
index 754eb54..3db6790 100644
--- a/src/public/styles.css
+++ b/src/public/styles.css
@@ -25,7 +25,7 @@
25 --link-color: #79ffe1; 25 --link-color: #79ffe1;
26 --link-visited-color: #999; 26 --link-visited-color: #999;
27 --accent: var(--link-color); 27 --accent: var(--link-color);
28 --error-text-color: lightcoral; 28 --error-text-color: lightcoral;
29 } 29 }
30} 30}
31 31
@@ -307,6 +307,13 @@ form {
307 align-items: center; 307 align-items: center;
308} 308}
309 309
310.post-container:target {
311 outline: 4px solid var(--bg-color-muted);
312 background: var(--bg-color-muted);
313 border-radius: 2px;
314 padding: 5px;
315}
316
310.post-text { 317.post-text {
311 display: flex; 318 display: flex;
312 flex-direction: column; 319 flex-direction: column;
@@ -464,7 +471,7 @@ a {
464 471
465button { 472button {
466 border: 0px solid; 473 border: 0px solid;
467 border-radius: 4px; 474 border-radius: 2px;
468 background-color: var(--bg-color-muted); 475 background-color: var(--bg-color-muted);
469 color: var(--text-color); 476 color: var(--text-color);
470 padding: 5px; 477 padding: 5px;