mirror of
https://github.com/marcominerva/SqlDatabaseVectorSearch.git
synced 2026-08-04 09:48:57 +00:00
9f0d4f6402
Update icon choices and colors across the Blazor app for improved visual clarity and consistency. Use explicit InteractiveServerRenderMode in App.razor. Replace sidebar, header, and navigation icons with filled or colorized variants in MainLayout.razor. Update Ask.razor and Documents.razor with more descriptive icons. Enhance reconnect modal messaging and button visibility. Adjust app.css for individual sidebar icon colors and brand icon styling. Remove EFCore.SqlServer.VectorSearch from the home page feature list to focus on Agent Framework. These changes improve UI feedback, accessibility, and maintainability.
32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
<script type="module" src="@Assets["Components/Layout/ReconnectModal.razor.js"]"></script>
|
|
|
|
<dialog id="components-reconnect-modal" data-nosnippet>
|
|
<div class="components-reconnect-container">
|
|
<div class="components-rejoining-animation" aria-hidden="true">
|
|
<div></div>
|
|
<div></div>
|
|
</div>
|
|
<p class="components-reconnect-first-attempt-visible">
|
|
Rejoining the server...
|
|
</p>
|
|
<p class="components-reconnect-repeated-attempt-visible">
|
|
Rejoin failed... trying again in <span id="components-seconds-to-next-attempt"></span> seconds.
|
|
</p>
|
|
<p class="components-reconnect-failed-visible">
|
|
Failed to rejoin.<br />Please retry or reload the page.
|
|
</p>
|
|
<button id="components-reconnect-button" class="components-reconnect-failed-visible">
|
|
Retry
|
|
</button>
|
|
<p class="components-pause-visible">
|
|
The session has been paused by the server.
|
|
</p>
|
|
<p class="components-resume-failed-visible">
|
|
Failed to resume the session.<br />Please retry or reload the page.
|
|
</p>
|
|
<button id="components-resume-button" class="components-pause-visible components-resume-failed-visible">
|
|
Resume
|
|
</button>
|
|
</div>
|
|
</dialog>
|