diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-09-07 19:42:18 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-09-08 01:28:51 +0200 |
commit | 4ba28c6ed3b952a06aba8ae96220c429d4d02365 (patch) | |
tree | 30b9ef26d0652451e0c28aa65343950594239c15 /xP/public/xP.css | |
parent | 45aa0e8dfba2a51d26b6a4fe4990a1686ab4af65 (diff) | |
download | xK-4ba28c6ed3b952a06aba8ae96220c429d4d02365.tar.gz xK-4ba28c6ed3b952a06aba8ae96220c429d4d02365.tar.xz xK-4ba28c6ed3b952a06aba8ae96220c429d4d02365.zip |
xC/xP: mark highlights and buffer activity
And more or less finalize out the protocol for this use case.
Diffstat (limited to 'xP/public/xP.css')
-rw-r--r-- | xP/public/xP.css | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/xP/public/xP.css b/xP/public/xP.css index a13afc6..81025c9 100644 --- a/xP/public/xP.css +++ b/xP/public/xP.css @@ -58,7 +58,13 @@ body { padding: .05rem .3rem; cursor: default; } -.item.active { +.item.highlighted { + color: #ff5f00; +} +.item.activity { + font-weight: bold; +} +.item.current { font-style: italic; background: #f8f8f8; border-top: 1px solid #eee; @@ -97,6 +103,11 @@ body { grid-column: span 2; font-weight: bold; } +.unread { + height: 1px; + grid-column: span 2; + background: #ff5f00; +} .time { padding: .1rem .3rem; background: #f8f8f8; |