aboutsummaryrefslogtreecommitdiff
path: root/xP/public/xP.css
Commit message (Collapse)AuthorAgeFilesLines
* xP: use a dotted border for button focusPřemysl Eric Janouch2022-09-251-1/+1
| | | | It's visible enough.
* xP: make the overlay actually overlayPřemysl Eric Janouch2022-09-231-0/+1
|
* xP: add formatting buttonsPřemysl Eric Janouch2022-09-231-1/+5
| | | | | | And fix autoscroll autoenabler, as well as toolbar padding. Only add the basic toggles, which should be well supported.
* xP: produce a custom font for IRC formattingPřemysl Eric Janouch2022-09-221-2/+9
| | | | | | Given that the generated file needs a manual adjustment, its small size, and the dependencies involved, it will be checked in to the repository.
* xC/xP: relay and render channel topicsPřemysl Eric Janouch2022-09-211-2/+9
|
* xP: improve pagingPřemysl Eric Janouch2022-09-211-0/+23
|
* xP: make the prompt look more xC-likePřemysl Eric Janouch2022-09-191-5/+19
|
* xP: show all completion optionsPřemysl Eric Janouch2022-09-181-0/+17
|
* xP: make non-connected states more apparentPřemysl Eric Janouch2022-09-161-0/+10
|
* xP: adjust buffer list iteration and stylingPřemysl Eric Janouch2022-09-131-6/+2
| | | | | | | | M-a and M-! should iterate, rather than keep jumping back to the same buffers. The current item wasn't visible enough, and it jumped around in my 1.5-scale Firefox.
* xP: indicate hidden buffer linesPřemysl Eric Janouch2022-09-111-2/+11
|
* xC/xP: send buffer type and server statePřemysl Eric Janouch2022-09-111-5/+4
| | | | Also make PM highlighting behaviour consistent.
* xP: only allow vertical textarea resizingPřemysl Eric Janouch2022-09-101-0/+1
|
* xP: improve line wrappingPřemysl Eric Janouch2022-09-101-7/+7
|
* xP: enhance mobile experiencePřemysl Eric Janouch2022-09-081-11/+15
| | | | The left column used to jump around, and phones were near-unusable.
* xC/xP: mark highlights and buffer activityPřemysl Eric Janouch2022-09-081-1/+12
| | | | And more or less finalize out the protocol for this use case.
* xP: resolve various issues, mostly in stylingPřemysl Eric Janouch2022-09-071-9/+38
|
* xP: implement buffer line leakagePřemysl Eric Janouch2022-09-071-0/+3
| | | | Rather than on redisplay, these get cleared on reconnect.
* xP: support showing buffer logsPřemysl Eric Janouch2022-09-071-0/+10
|
* xP: convert links to link elementsPřemysl Eric Janouch2022-09-061-5/+5
|
* xC/xP: turn the action asterisk into a renditionPřemysl Eric Janouch2022-09-051-0/+3
|
* Start X11 and web frontends for xCPřemysl Eric Janouch2022-09-051-0/+109
For this, we needed a wire protocol. After surveying available options, it was decided to implement an XDR-like protocol code generator in portable AWK. It now has two backends, per each of: - xF, the X11 frontend, is in C, and is meant to be the primary user interface in the future. - xP, the web frontend, relies on a protocol proxy written in Go, and is meant for use on-the-go (no pun intended). They are very much work-in-progress proofs of concept right now, and the relay protocol is certain to change.