Add loading screen; add support for showing mentions; add support for mentioning.
Some checks failed
Build Vite / build (24.x) (push) Has been cancelled
Some checks failed
Build Vite / build (24.x) (push) Has been cancelled
This commit is contained in:
parent
f87966aa15
commit
75ef93ed80
8 changed files with 248 additions and 94 deletions
15
web/app.html
15
web/app.html
|
|
@ -14,6 +14,19 @@
|
|||
<link rel="manifest" href="./manifest.json">
|
||||
</head>
|
||||
<body>
|
||||
<div id="loading-screen">
|
||||
<h1>Pandora</h1>
|
||||
<p id="loading-screen-status">Please wait...</p>
|
||||
<div class='loading-animation-wrapper'>
|
||||
<div class="animation">
|
||||
<div class="dot"></div>
|
||||
<div class="dot"></div>
|
||||
<div class="dot"></div>
|
||||
<div class="dot"></div>
|
||||
<div class="dot"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="app-container no-active-chat">
|
||||
<div class="main-holder">
|
||||
<aside id="desktop-aside">
|
||||
|
|
@ -93,6 +106,8 @@
|
|||
</div>
|
||||
|
||||
<!-- Input Panel -->
|
||||
<div id="mentioning-indicator" class="collapsed">
|
||||
</div>
|
||||
<footer id="chat-input-panel" class="chat-input-panel">
|
||||
<div class="input-actions-left">
|
||||
<button id="chat-bottom-bar-btn" class="chat-footer-btn icon-btn mif-expand-less mif-3x" title="Expand"></button>
|
||||
|
|
|
|||
Loading…
Reference in a new issue