diff options
Diffstat (limited to 'xP/public')
| -rw-r--r-- | xP/public/xP.css | 3 | ||||
| -rw-r--r-- | xP/public/xP.js | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/xP/public/xP.css b/xP/public/xP.css index bdd355e..bf5a66e 100644 --- a/xP/public/xP.css +++ b/xP/public/xP.css @@ -66,6 +66,9 @@ body { bottom: -1px; background: #ccc; } +.invisible { + visibility: hidden; +} .toolbar { display: flex; diff --git a/xP/public/xP.js b/xP/public/xP.js index 33d7d2a..6806081 100644 --- a/xP/public/xP.js +++ b/xP/public/xP.js @@ -1,4 +1,4 @@ -// Copyright (c) 2022 - 2025, Přemysl Eric Janouch <p@janouch.name> +// Copyright (c) 2022 - 2026, Přemysl Eric Janouch <p@janouch.name> // SPDX-License-Identifier: 0BSD import * as Relay from './proto.js' @@ -1127,7 +1127,9 @@ let Main = { overlay, m('.title', {}, [ m('span', [ - rpc.busy ? '⋯ ' : undefined, + // Midline Horizontal Ellipsis, No-Break Space + m('span', {class: rpc.busy ? undefined : 'invisible'}, + `\u22EF\u00A0`), m('b', {}, `xP`), ]), m(Topic), |
