diff options
| author | Copilot <198982749+Copilot@users.noreply.github.com> | 2025-11-14 17:34:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-14 17:34:28 +0100 |
| commit | 80f6263516e307bcc6d887f6f91757bc73ae63f2 (patch) | |
| tree | a298f5f026e2c0d11db61997eb88b4a990219201 /src/frontend/app/routes/estimates-$id.css | |
| parent | 033df2ee521fb8b4a1e091a0ccdc82e142488685 (diff) | |
Add loading states, error handling, and refresh feedback to stops-$id page (#89)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com>
Diffstat (limited to 'src/frontend/app/routes/estimates-$id.css')
| -rw-r--r-- | src/frontend/app/routes/estimates-$id.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/frontend/app/routes/estimates-$id.css b/src/frontend/app/routes/estimates-$id.css index 0658156..81fba1d 100644 --- a/src/frontend/app/routes/estimates-$id.css +++ b/src/frontend/app/routes/estimates-$id.css @@ -268,3 +268,28 @@ [data-theme="dark"] .experimental-notice strong { color: #ffd966; } + +.refresh-status { + display: flex; + align-items: center; + gap: 0.5rem; + justify-content: center; + padding: 0.75rem 1rem; + margin-bottom: 1rem; + background-color: rgba(0, 123, 255, 0.1); + border: 1px solid rgba(0, 123, 255, 0.2); + border-radius: 8px; + color: var(--primary-color); + font-size: 0.9rem; + font-weight: 500; +} + +.refresh-status .refresh-icon { + width: 1rem; + height: 1rem; +} + +[data-theme="dark"] .refresh-status { + background-color: rgba(0, 123, 255, 0.15); + border-color: rgba(0, 123, 255, 0.3); +} |
