diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-08-05 23:36:20 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-08-05 23:36:20 +0200 |
| commit | b04fd7d33d07f9eddea2eb53e1389d5ca5453413 (patch) | |
| tree | fec6f44639514ee4af70031f09a39fb1c808623f /src/frontend/app/routes/estimates-$id.css | |
| parent | c18063cc107c3126a9b62caa857e37062ab86c9c (diff) | |
Add timetable feature with caching and localization support
Diffstat (limited to 'src/frontend/app/routes/estimates-$id.css')
| -rw-r--r-- | src/frontend/app/routes/estimates-$id.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/frontend/app/routes/estimates-$id.css b/src/frontend/app/routes/estimates-$id.css index 3905f3e..8906147 100644 --- a/src/frontend/app/routes/estimates-$id.css +++ b/src/frontend/app/routes/estimates-$id.css @@ -103,3 +103,49 @@ .edit-icon:hover { color: var(--star-color); } + +/* Timetable section styles */ +.timetable-section { + padding-top: 1.5rem; + padding-bottom: 3rem; /* Add bottom padding before footer */ +} + +/* Timetable cards should be single column */ +.timetable-section .timetable-cards { + display: flex; + flex-direction: column; + gap: 0.75rem; +} + +.timetable-section .timetable-card { + padding: 0.875rem; +} + +.timetable-actions { + margin-top: 1.5rem; + text-align: center; +} + +.view-all-link { + display: inline-flex; + align-items: center; + gap: 0.5rem; + color: var(--link-color, #007bff); + text-decoration: none; + font-weight: 500; + padding: 0.5rem 1rem; + border: 1px solid var(--link-color, #007bff); + border-radius: 6px; + transition: all 0.2s ease; +} + +.view-all-link:hover { + background-color: var(--link-color, #007bff); + color: white; + text-decoration: none; +} + +.external-icon { + width: 1rem; + height: 1rem; +} |
