diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-09-18 05:53:44 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-09-18 05:54:23 +0200 |
commit | ec20fdef7badebc12621e20c0d66de94243fdb1a (patch) | |
tree | da41981a4f7953714b2697c4ee1d66c90f99e669 /xP/public/xP.css | |
parent | 21e5d80ab1505442c96e11075f09d98bcaa211ba (diff) | |
download | xK-ec20fdef7badebc12621e20c0d66de94243fdb1a.tar.gz xK-ec20fdef7badebc12621e20c0d66de94243fdb1a.tar.xz xK-ec20fdef7badebc12621e20c0d66de94243fdb1a.zip |
xP: show all completion options
Diffstat (limited to 'xP/public/xP.css')
-rw-r--r-- | xP/public/xP.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/xP/public/xP.css b/xP/public/xP.css index c231620..96d6525 100644 --- a/xP/public/xP.css +++ b/xP/public/xP.css @@ -91,6 +91,7 @@ button { display: flex; flex-direction: column; overflow: hidden; + position: relative; } .filler { flex: auto; @@ -170,6 +171,22 @@ button { font-family: monospace; } +.completions { + position: absolute; + left: 0; + right: 0; + bottom: 0; + background: #fff; + padding: .05em .3em; + border-top: 1px solid #888; + + max-height: 50%; + display: flex; + flex-flow: column wrap; + column-gap: .6em; + overflow-x: auto; +} + textarea { font: inherit; padding: .05em .3em; |