2026-05-16 19:41:58 +00:00
|
|
|
/* app.css — dashboard shell, sidebar, and project-card CSS */
|
|
|
|
|
/* Ported verbatim from go-backend/internal/web/ui/app.css */
|
|
|
|
|
/* All color values use var(--...) design tokens — no hard-coded hex values */
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 1 — Dashboard shell and sidebar grid
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.dashboard-shell {
|
|
|
|
|
background: var(--gradient-shell);
|
|
|
|
|
color: var(--foreground);
|
feat(18): restyle sidebar and header to match production design
- Sidebar: Tailwind utilities, French labels (Aperçu/Tâches/Projets/Planning/Discussions/Fichiers), hr separators, collapse button on group hover, tablo list with circle icons, org footer with avatar + "1 membre"
- Header: 75px height, border-b #EAECF0, search input left, bell + avatar-dropdown right (no breadcrumb visible — retained sr-only for a11y + tests)
- Layout: flex instead of grid, dashboard-main no padding, dashboard-main-content wrapper at 2rem
- Tests updated for new search-input assertion
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-17 14:00:26 +00:00
|
|
|
display: flex;
|
2026-05-16 19:41:58 +00:00
|
|
|
min-height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard-sidebar {
|
feat(18): restyle sidebar and header to match production design
- Sidebar: Tailwind utilities, French labels (Aperçu/Tâches/Projets/Planning/Discussions/Fichiers), hr separators, collapse button on group hover, tablo list with circle icons, org footer with avatar + "1 membre"
- Header: 75px height, border-b #EAECF0, search input left, bell + avatar-dropdown right (no breadcrumb visible — retained sr-only for a11y + tests)
- Layout: flex instead of grid, dashboard-main no padding, dashboard-main-content wrapper at 2rem
- Tests updated for new search-input assertion
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-17 14:00:26 +00:00
|
|
|
width: 12rem; /* w-48 = 192px */
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
transition: width 0.3s ease;
|
2026-05-16 19:41:58 +00:00
|
|
|
padding-left: env(safe-area-inset-left, 0px);
|
|
|
|
|
}
|
|
|
|
|
|
feat(18): restyle sidebar and header to match production design
- Sidebar: Tailwind utilities, French labels (Aperçu/Tâches/Projets/Planning/Discussions/Fichiers), hr separators, collapse button on group hover, tablo list with circle icons, org footer with avatar + "1 membre"
- Header: 75px height, border-b #EAECF0, search input left, bell + avatar-dropdown right (no breadcrumb visible — retained sr-only for a11y + tests)
- Layout: flex instead of grid, dashboard-main no padding, dashboard-main-content wrapper at 2rem
- Tests updated for new search-input assertion
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-17 14:00:26 +00:00
|
|
|
/* Collapsed sidebar */
|
|
|
|
|
.dashboard-shell.sidebar-is-collapsed .dashboard-sidebar {
|
|
|
|
|
width: 4rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-16 19:41:58 +00:00
|
|
|
/* ============================================================
|
|
|
|
|
Section 2 — Sidebar nav shell
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-nav-shell {
|
|
|
|
|
background: var(--color-surface-elevated);
|
|
|
|
|
border-right: 1px solid var(--color-border-panel);
|
|
|
|
|
box-shadow: var(--shadow-sidebar);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: env(safe-area-inset-top, 0px) 0.75rem env(safe-area-inset-bottom, 0px) 0;
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 3 — Sidebar brand
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-brand {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 0.75rem 0.5rem;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-brand-link {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-brand-logo {
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
height: 4rem;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
width: 4rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-brand-title {
|
|
|
|
|
color: var(--color-text-heading-alt);
|
|
|
|
|
font-size: 1.125rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 4 — Sidebar collapse button
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-collapse-button {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: var(--color-surface-elevated-strong);
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
box-shadow: var(--shadow-floating-control);
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
height: 1.5rem;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 0.25rem;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0.75rem;
|
|
|
|
|
top: 0.5rem;
|
|
|
|
|
width: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-collapse-button svg {
|
|
|
|
|
height: 1rem;
|
|
|
|
|
width: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 5 — Sidebar primary, list, divider
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-primary {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 0;
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0.75rem 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-divider {
|
|
|
|
|
margin: 0.5rem 0;
|
|
|
|
|
padding: 0 0.875rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-divider hr,
|
|
|
|
|
.sidebar-projects hr {
|
|
|
|
|
border: 0;
|
|
|
|
|
border-top: 1px solid var(--color-border-panel-muted);
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 6 — Sidebar nav items
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-nav-item {
|
|
|
|
|
border-radius: 0.9rem;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
margin: 0 0.5rem;
|
|
|
|
|
padding: 0.15rem 0;
|
|
|
|
|
transition: background-color 0.2s ease, color 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-nav-item:hover {
|
|
|
|
|
background: var(--overlay-dark-soft);
|
|
|
|
|
color: var(--color-surface-muted-inverse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-nav-item.is-active {
|
|
|
|
|
background: var(--overlay-brand-soft-strong);
|
|
|
|
|
color: var(--color-text-brand);
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 7 — Sidebar nav link and inner elements
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-nav-link {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-nav-link-inner {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
padding: 0.6rem 0.95rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-nav-icon {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-nav-icon svg {
|
|
|
|
|
height: 1.35rem;
|
|
|
|
|
width: 1.35rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-nav-label {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 8 — Sidebar projects section
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-projects {
|
|
|
|
|
margin-top: 0.4rem;
|
|
|
|
|
padding: 0 0.75rem 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-section-label {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-size: 0.625rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
letter-spacing: 0.14em;
|
|
|
|
|
margin: 0.9rem 0 0.65rem;
|
|
|
|
|
padding: 0 0.5rem;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-project-list {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 0.1rem;
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 9 — Sidebar project links
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-project-link {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-radius: 0.85rem;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.65rem;
|
|
|
|
|
padding: 0.48rem 0.5rem;
|
|
|
|
|
transition: background-color 0.2s ease, color 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-project-link:hover {
|
|
|
|
|
background: var(--overlay-dark-soft);
|
|
|
|
|
color: var(--color-surface-muted-inverse);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-project-icon {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border: 1px solid var(--color-border-panel-strong);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
height: 1.55rem;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 1.55rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-project-icon svg {
|
|
|
|
|
height: 0.9rem;
|
|
|
|
|
width: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.sidebar-project-label {
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 10 — Sidebar footer links
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-footer-links {
|
|
|
|
|
margin-top: auto;
|
|
|
|
|
padding-bottom: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 11 — Sidebar organization footer
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.sidebar-organization {
|
|
|
|
|
background: var(--color-surface-elevated);
|
|
|
|
|
padding: 0 0.5rem 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.organization-button {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-radius: 0.95rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.65rem;
|
|
|
|
|
padding: 0.55rem 0.65rem;
|
|
|
|
|
text-align: left;
|
|
|
|
|
transition: background-color 0.2s ease;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.organization-button:hover {
|
|
|
|
|
background: var(--overlay-dark-soft);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.organization-avatar {
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
height: 1.75rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
width: 1.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.organization-avatar img {
|
|
|
|
|
aspect-ratio: 1;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.organization-copy {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.organization-name {
|
|
|
|
|
color: var(--color-text-body-subtle);
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.organization-meta {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-17 13:30:42 +00:00
|
|
|
/* ============================================================
|
|
|
|
|
Section 11b — Sidebar collapse state
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
/* When sidebar-is-collapsed is toggled on the shell, shrink the grid column */
|
|
|
|
|
.dashboard-shell.sidebar-is-collapsed {
|
|
|
|
|
grid-template-columns: 4rem 1fr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide text labels and section headings in collapsed state */
|
|
|
|
|
.dashboard-shell.sidebar-is-collapsed .sidebar-brand-title,
|
|
|
|
|
.dashboard-shell.sidebar-is-collapsed .sidebar-section-label,
|
|
|
|
|
.dashboard-shell.sidebar-is-collapsed .sidebar-nav-label,
|
|
|
|
|
.dashboard-shell.sidebar-is-collapsed .sidebar-project-label {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Center icons in collapsed state */
|
|
|
|
|
.dashboard-shell.sidebar-is-collapsed .sidebar-nav-link-inner {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide the full project list in collapsed state (icons not present for projects) */
|
|
|
|
|
.dashboard-shell.sidebar-is-collapsed .sidebar-project-list {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Flip the collapse button chevron when collapsed */
|
|
|
|
|
.dashboard-shell.sidebar-is-collapsed .sidebar-collapse-button svg {
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
|
|
|
|
|
feat(18-03): add page-header CSS, /settings stub route, and header tests
- Add page-header, breadcrumb, header-search-placeholder, header-icon-button, header-avatar-menu, header-avatar-dropdown CSS rules to app.css
- Regenerate tailwind.css with new page-header and avatar dropdown classes
- Add GET /settings stub route returning 200 with "Coming soon" content (D-06)
- Add page-header and breadcrumb assertions to TestTablosDashboard_Sidebar
- Add new TestTablosDashboard_Header test asserting page-header, header-avatar-menu, Dashboard breadcrumb, header-search-placeholder
2026-05-17 13:34:58 +00:00
|
|
|
/* ── Page header bar ───────────────────────────────────────────────── */
|
feat(18): restyle sidebar and header to match production design
- Sidebar: Tailwind utilities, French labels (Aperçu/Tâches/Projets/Planning/Discussions/Fichiers), hr separators, collapse button on group hover, tablo list with circle icons, org footer with avatar + "1 membre"
- Header: 75px height, border-b #EAECF0, search input left, bell + avatar-dropdown right (no breadcrumb visible — retained sr-only for a11y + tests)
- Layout: flex instead of grid, dashboard-main no padding, dashboard-main-content wrapper at 2rem
- Tests updated for new search-input assertion
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-17 14:00:26 +00:00
|
|
|
/* Styling is now handled via Tailwind utilities in PageHeader templ component. */
|
|
|
|
|
/* This class is retained for test assertions. */
|
feat(18-03): add page-header CSS, /settings stub route, and header tests
- Add page-header, breadcrumb, header-search-placeholder, header-icon-button, header-avatar-menu, header-avatar-dropdown CSS rules to app.css
- Regenerate tailwind.css with new page-header and avatar dropdown classes
- Add GET /settings stub route returning 200 with "Coming soon" content (D-06)
- Add page-header and breadcrumb assertions to TestTablosDashboard_Sidebar
- Add new TestTablosDashboard_Header test asserting page-header, header-avatar-menu, Dashboard breadcrumb, header-search-placeholder
2026-05-17 13:34:58 +00:00
|
|
|
.page-header {
|
feat(18): restyle sidebar and header to match production design
- Sidebar: Tailwind utilities, French labels (Aperçu/Tâches/Projets/Planning/Discussions/Fichiers), hr separators, collapse button on group hover, tablo list with circle icons, org footer with avatar + "1 membre"
- Header: 75px height, border-b #EAECF0, search input left, bell + avatar-dropdown right (no breadcrumb visible — retained sr-only for a11y + tests)
- Layout: flex instead of grid, dashboard-main no padding, dashboard-main-content wrapper at 2rem
- Tests updated for new search-input assertion
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-17 14:00:26 +00:00
|
|
|
/* Tailwind handles layout; this class is an anchor for tests */
|
feat(18-03): add page-header CSS, /settings stub route, and header tests
- Add page-header, breadcrumb, header-search-placeholder, header-icon-button, header-avatar-menu, header-avatar-dropdown CSS rules to app.css
- Regenerate tailwind.css with new page-header and avatar dropdown classes
- Add GET /settings stub route returning 200 with "Coming soon" content (D-06)
- Add page-header and breadcrumb assertions to TestTablosDashboard_Sidebar
- Add new TestTablosDashboard_Header test asserting page-header, header-avatar-menu, Dashboard breadcrumb, header-search-placeholder
2026-05-17 13:34:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-header-right {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page-header-actions {
|
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Breadcrumb */
|
|
|
|
|
.breadcrumb {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.375rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.breadcrumb-separator {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.breadcrumb-item {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.breadcrumb-item--link {
|
|
|
|
|
color: var(--color-text-brand);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.breadcrumb-item--link:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.breadcrumb-item--current {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Search placeholder */
|
|
|
|
|
.header-search-placeholder {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
padding: 0.375rem 0.75rem;
|
|
|
|
|
border: 1px solid var(--color-border-panel);
|
|
|
|
|
border-radius: 0.375rem;
|
|
|
|
|
background: var(--color-surface-muted-inverse);
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
min-width: 16rem;
|
|
|
|
|
max-width: 28rem;
|
|
|
|
|
width: 100%;
|
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Icon buttons (bell, inbox) */
|
|
|
|
|
.header-icon-button {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 2rem;
|
|
|
|
|
height: 2rem;
|
|
|
|
|
border-radius: 0.375rem;
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-icon-button:hover {
|
|
|
|
|
background: var(--overlay-dark-soft);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-icon-button:disabled {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Avatar dropdown */
|
|
|
|
|
.header-avatar-menu {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-avatar-menu > summary {
|
|
|
|
|
list-style: none;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-avatar-menu > summary::-webkit-details-marker {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-avatar-button {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 2rem;
|
|
|
|
|
height: 2rem;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background: var(--color-text-brand);
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: none;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-avatar-initial {
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-avatar-dropdown {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: calc(100% + 0.5rem);
|
|
|
|
|
min-width: 14rem;
|
|
|
|
|
background: var(--color-surface-elevated);
|
|
|
|
|
border: 1px solid var(--color-border-panel);
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
box-shadow: var(--shadow-floating-control);
|
|
|
|
|
z-index: 50;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-dropdown-workspace {
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.125rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-dropdown-workspace-name {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-dropdown-workspace-meta {
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-dropdown-divider {
|
|
|
|
|
border: none;
|
|
|
|
|
border-top: 1px solid var(--color-border-panel-muted);
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-dropdown-item {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0.625rem 1rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
text-align: left;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-dropdown-item:hover {
|
|
|
|
|
background: var(--overlay-dark-soft);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-dropdown-item--danger {
|
|
|
|
|
color: #dc2626; /* red — logout action; no token for this; matches Figma red logout */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-dropdown-item--danger:hover {
|
|
|
|
|
background: #fef2f2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar-dropdown-logout-form {
|
|
|
|
|
display: contents; /* form element itself doesn't affect layout */
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-16 19:41:58 +00:00
|
|
|
/* ============================================================
|
|
|
|
|
Section 12 — Dashboard main content area
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.dashboard-main {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
feat(18): restyle sidebar and header to match production design
- Sidebar: Tailwind utilities, French labels (Aperçu/Tâches/Projets/Planning/Discussions/Fichiers), hr separators, collapse button on group hover, tablo list with circle icons, org footer with avatar + "1 membre"
- Header: 75px height, border-b #EAECF0, search input left, bell + avatar-dropdown right (no breadcrumb visible — retained sr-only for a11y + tests)
- Layout: flex instead of grid, dashboard-main no padding, dashboard-main-content wrapper at 2rem
- Tests updated for new search-input assertion
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-17 14:00:26 +00:00
|
|
|
flex: 1;
|
2026-05-16 19:41:58 +00:00
|
|
|
min-width: 0;
|
feat(18): restyle sidebar and header to match production design
- Sidebar: Tailwind utilities, French labels (Aperçu/Tâches/Projets/Planning/Discussions/Fichiers), hr separators, collapse button on group hover, tablo list with circle icons, org footer with avatar + "1 membre"
- Header: 75px height, border-b #EAECF0, search input left, bell + avatar-dropdown right (no breadcrumb visible — retained sr-only for a11y + tests)
- Layout: flex instead of grid, dashboard-main no padding, dashboard-main-content wrapper at 2rem
- Tests updated for new search-input assertion
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-17 14:00:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dashboard-main-content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 1.5rem;
|
2026-05-16 19:41:58 +00:00
|
|
|
padding: 2rem;
|
feat(18): restyle sidebar and header to match production design
- Sidebar: Tailwind utilities, French labels (Aperçu/Tâches/Projets/Planning/Discussions/Fichiers), hr separators, collapse button on group hover, tablo list with circle icons, org footer with avatar + "1 membre"
- Header: 75px height, border-b #EAECF0, search input left, bell + avatar-dropdown right (no breadcrumb visible — retained sr-only for a11y + tests)
- Layout: flex instead of grid, dashboard-main no padding, dashboard-main-content wrapper at 2rem
- Tests updated for new search-input assertion
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-17 14:00:26 +00:00
|
|
|
flex: 1;
|
2026-05-16 19:41:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 13 — Overview section heading
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.overview-section {
|
|
|
|
|
padding: 0.25rem 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.overview-section-heading {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-17 08:01:24 +00:00
|
|
|
.overview-section-heading h1,
|
2026-05-16 19:41:58 +00:00
|
|
|
.overview-section-heading h3,
|
|
|
|
|
.tasks-section-header h3 {
|
|
|
|
|
color: var(--color-surface-muted-inverse);
|
|
|
|
|
font-size: 1.6rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 14 — Project grid
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.project-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 1.25rem;
|
|
|
|
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 15 — Project card and top
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.project-card {
|
|
|
|
|
background: var(--color-surface-default);
|
|
|
|
|
border: 1px solid var(--color-border-subtle);
|
|
|
|
|
border-radius: 1rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
transition: box-shadow 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-card-top {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 16 — Project card icon button overrides
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.project-card-top .borderless-icon-button {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-card-top .ui-icon-button-ghost.ui-icon-button-neutral:hover {
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-card-top .ui-icon-button-ghost.ui-icon-button-danger:hover {
|
|
|
|
|
color: var(--color-status-danger-icon-hover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 17 — Project card title row and avatar
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.project-card-title-row {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-avatar {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: var(--project-color, var(--color-project-fallback));
|
|
|
|
|
border-radius: 0.85rem;
|
|
|
|
|
color: var(--color-text-inverse);
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
height: 3rem;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-avatar > svg {
|
|
|
|
|
height: 1.25rem;
|
|
|
|
|
width: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 18 — Project date row
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.project-date-row {
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
feat(16-01): append CSS Sections 19-25 to app.css
- Section 19: tasks-section block (task-row, task-check, task-body, task-meta, tasks-add-button)
- Section 20: project-progress-track and project-progress-bar
- Section 21: tab-nav, tab-nav-item, tab-nav-item.is-active, tab-nav-item:hover
- Section 22: tablo-metadata-row, tablo-metadata-date
- Section 23: kanban-column wrapper (width: 18rem) + scoped h3 override (1rem)
- Section 24: etape-group-header, etape-group-color-dot, etape-group-label
- Section 25: task-list-empty placeholder
- all values use var(--...) tokens; zero hardcoded hex values
2026-05-16 21:32:57 +00:00
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 19 — Tasks section (kanban column container)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.tasks-section {
|
|
|
|
|
background: var(--color-surface-default);
|
|
|
|
|
border: 1px solid var(--color-border-subtle);
|
|
|
|
|
border-radius: 1rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tasks-section-header {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 1.2rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tasks-add-button {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: var(--color-surface-default);
|
|
|
|
|
border: 1px solid var(--color-border-muted);
|
|
|
|
|
border-radius: 0.7rem;
|
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
min-height: 2.75rem;
|
|
|
|
|
padding: 0.7rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-16 21:58:51 +00:00
|
|
|
.task-drag-handle {
|
|
|
|
|
color: var(--color-text-faint);
|
|
|
|
|
cursor: grab;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-drag-handle:active {
|
|
|
|
|
cursor: grabbing;
|
|
|
|
|
}
|
|
|
|
|
|
feat(16-01): append CSS Sections 19-25 to app.css
- Section 19: tasks-section block (task-row, task-check, task-body, task-meta, tasks-add-button)
- Section 20: project-progress-track and project-progress-bar
- Section 21: tab-nav, tab-nav-item, tab-nav-item.is-active, tab-nav-item:hover
- Section 22: tablo-metadata-row, tablo-metadata-date
- Section 23: kanban-column wrapper (width: 18rem) + scoped h3 override (1rem)
- Section 24: etape-group-header, etape-group-color-dot, etape-group-label
- Section 25: task-list-empty placeholder
- all values use var(--...) tokens; zero hardcoded hex values
2026-05-16 21:32:57 +00:00
|
|
|
.task-row {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
padding: 0.9rem 1rem;
|
|
|
|
|
transition: background-color 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-row:hover {
|
|
|
|
|
background: var(--color-surface-neutral-hover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-check {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: var(--color-surface-default);
|
|
|
|
|
border: 2px solid var(--color-border-strong);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
color: var(--color-text-inverse);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
height: 2rem;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-check.is-complete {
|
|
|
|
|
background: var(--color-text-brand-strong);
|
|
|
|
|
border-color: var(--color-text-brand-strong);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-body {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-body p {
|
|
|
|
|
color: var(--color-surface-muted-inverse);
|
|
|
|
|
font-size: 0.95rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
margin: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-row.is-complete .task-body p {
|
|
|
|
|
color: var(--color-text-faint);
|
|
|
|
|
text-decoration: line-through;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-meta {
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
gap: 0.45rem;
|
|
|
|
|
margin-top: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 20 — Progress track and bar
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.project-progress-track {
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
height: 0.5rem;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-progress-bar {
|
|
|
|
|
background: var(--project-color, var(--color-project-fallback));
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-17 14:30:56 +00:00
|
|
|
/* ============================================================
|
|
|
|
|
Section 20b — Dashboard card progress row and list-row
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
/* Progress row wrapper on dashboard cards */
|
|
|
|
|
.project-card-progress-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.35rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* "Progression: X%" label text */
|
|
|
|
|
.project-card-progress-label {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Accent-colored progress bar for dashboard cards (overrides --project-color) */
|
|
|
|
|
.project-card-progress-bar {
|
|
|
|
|
background: var(--color-accent);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-17 20:24:45 +00:00
|
|
|
/* Grid/table view is toggled via .hidden Tailwind class on #tablos-grid / #tablos-table */
|
2026-05-17 20:11:31 +00:00
|
|
|
|
|
|
|
|
/* ── View toggle tabs ─────────────────────────────────────── */
|
|
|
|
|
|
|
|
|
|
.view-tab {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
padding-bottom: 0.75rem;
|
|
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
|
color: var(--color-text-muted, #6b7280);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
transition: color 0.15s, border-color 0.15s;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-tab:hover {
|
|
|
|
|
color: #374151;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-tab.is-active {
|
|
|
|
|
border-bottom-color: #9333ea;
|
|
|
|
|
color: #9333ea;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Filter tabs ───────────────────────────────────────────── */
|
|
|
|
|
|
|
|
|
|
.filter-tab {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.375rem;
|
|
|
|
|
padding: 0.625rem 1rem;
|
|
|
|
|
border: 1px solid #EAECF0;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #374151;
|
|
|
|
|
background: white;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background 0.15s, color 0.15s, border-color 0.15s;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filter-tab:hover {
|
|
|
|
|
background: #f9fafb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filter-tab.is-active {
|
|
|
|
|
border-color: #9333ea;
|
|
|
|
|
background: #faf5ff;
|
|
|
|
|
color: #9333ea;
|
2026-05-17 14:30:56 +00:00
|
|
|
}
|
|
|
|
|
|
2026-05-17 14:33:02 +00:00
|
|
|
/* ============================================================
|
|
|
|
|
Section 20c — View toggle button
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.view-toggle-btn {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: 1px solid var(--color-border-subtle);
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
height: 2rem;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 0;
|
|
|
|
|
transition: background-color 0.15s ease, color 0.15s ease;
|
|
|
|
|
width: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-toggle-btn:hover {
|
|
|
|
|
background: var(--color-surface-neutral-hover);
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
}
|
|
|
|
|
|
feat(16-01): append CSS Sections 19-25 to app.css
- Section 19: tasks-section block (task-row, task-check, task-body, task-meta, tasks-add-button)
- Section 20: project-progress-track and project-progress-bar
- Section 21: tab-nav, tab-nav-item, tab-nav-item.is-active, tab-nav-item:hover
- Section 22: tablo-metadata-row, tablo-metadata-date
- Section 23: kanban-column wrapper (width: 18rem) + scoped h3 override (1rem)
- Section 24: etape-group-header, etape-group-color-dot, etape-group-label
- Section 25: task-list-empty placeholder
- all values use var(--...) tokens; zero hardcoded hex values
2026-05-16 21:32:57 +00:00
|
|
|
/* ============================================================
|
|
|
|
|
Section 21 — Tab nav (tablo detail tab bar)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.tab-nav {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1.5rem;
|
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-nav-item {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
min-height: 44px;
|
|
|
|
|
padding-bottom: 0.75rem;
|
|
|
|
|
padding-inline: 0.25rem;
|
|
|
|
|
transition: color 0.15s ease, border-color 0.15s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-nav-item.is-active {
|
|
|
|
|
border-bottom-color: var(--color-brand-primary);
|
|
|
|
|
color: var(--color-text-brand);
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tab-nav-item:hover:not(.is-active) {
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 22 — Tablo detail metadata row
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.tablo-metadata-row {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
padding-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-metadata-date {
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-metadata-date svg {
|
|
|
|
|
height: 1rem;
|
|
|
|
|
width: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 23 — Kanban column wrapper
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.kanban-column {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 18rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Scope column h3 to 1rem — base rule is 1.6rem (full-width views).
|
|
|
|
|
18rem columns overflow at 1.6rem. Base rule left unchanged. */
|
|
|
|
|
.kanban-column .tasks-section-header h3 {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 24 — Etape group sub-headings inside kanban columns
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.etape-group-header {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.etape-group-color-dot {
|
|
|
|
|
background: var(--project-color, var(--color-project-fallback));
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
height: 0.5rem;
|
|
|
|
|
width: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.etape-group-label {
|
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.etape-group-label.is-unassigned {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 25 — Empty task list placeholder
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.task-list-empty {
|
|
|
|
|
color: var(--color-text-faint);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
}
|
2026-05-17 08:01:24 +00:00
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 26 — Discussion message bubbles (Phase 17)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
2026-05-17 10:58:26 +00:00
|
|
|
#discussion-messages {
|
|
|
|
|
max-height: 32rem;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-17 08:01:24 +00:00
|
|
|
.message-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-row.message-own {
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-row.message-other {
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-meta {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-author {
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-timestamp {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-bubble {
|
|
|
|
|
border-radius: 0.25rem 0.75rem 0.75rem 0.75rem;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
max-width: 70%;
|
|
|
|
|
padding: 0.75rem 1rem;
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
word-break: break-words;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-row.message-own .message-bubble {
|
2026-05-17 10:23:21 +00:00
|
|
|
background-color: color-mix(in srgb, var(--color-brand-primary) 10%, transparent);
|
2026-05-17 08:01:24 +00:00
|
|
|
border-radius: 0.75rem 0.75rem 0.25rem 0.75rem;
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.message-row.message-other .message-bubble {
|
|
|
|
|
background-color: var(--color-surface-default, #ffffff);
|
|
|
|
|
border: 1px solid var(--color-border-default, #e2e8f0);
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
}
|
feat(phase-20): port tablo detail restyle to backend/
Phase 20 work was executed against go-backend/ (prototype) instead of
backend/ (production). This commit ports the Figma-aligned restyle to
the correct codebase.
Changes:
- tablos.templ: replace project-card-top header with tablo-detail-header,
tablo-detail-avatar, tablo-detail-title; update tab bar to tablo-tab-bar;
localise tab labels to French (Vue d'ensemble, Tâches, Fichiers,
Discussion, Événements)
- tasks.templ: update KanbanBoard to tablo-kanban-board; KanbanColumn to
tablo-kanban-column with new header/count/empty classes; TaskCard to
card-style layout (task-card-top-row, task-card-title, task-card-delete)
- app.css: add sections 25–27 — tablo detail page, kanban board/columns,
and task card (card appearance, hover states)
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-05-18 14:31:05 +00:00
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 25 — Tablo detail page (Figma restyle)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.tablo-detail-page {
|
|
|
|
|
padding: 24px 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-detail-header {
|
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0;
|
|
|
|
|
padding-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-detail-title-row {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
padding-bottom: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-detail-avatar {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
height: 48px;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-detail-title {
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
font-size: 1.75rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Override the existing tablo-metadata-row for the detail page context */
|
|
|
|
|
.tablo-detail-header .tablo-metadata-row {
|
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
|
gap: 24px;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
padding-block: 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-meta-segment {
|
|
|
|
|
align-items: center;
|
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
|
display: flex;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-meta-progress {
|
|
|
|
|
align-items: center;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-progress-bar {
|
|
|
|
|
background: var(--color-brand-primary);
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
height: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-tab-bar {
|
|
|
|
|
border-bottom: 1px solid var(--color-border-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 24px;
|
|
|
|
|
padding-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-tab-bar .tab-nav-item {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
padding-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 26 — Kanban board & columns (Figma restyle)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.tablo-kanban-board {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 16px;
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
padding-bottom: 16px;
|
|
|
|
|
padding-top: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-kanban-column {
|
|
|
|
|
background: var(--color-surface-default);
|
|
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
|
border-radius: 0.75rem;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
width: 18rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-kanban-column-header {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-kanban-column-title {
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-kanban-task-count {
|
|
|
|
|
background: var(--color-surface-default);
|
|
|
|
|
border: 1px solid var(--color-border-muted);
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tablo-kanban-empty {
|
|
|
|
|
color: var(--color-text-faint);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
padding: 24px 16px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 27 — Task card (kanban card style)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.task-card {
|
|
|
|
|
background: var(--color-surface-default);
|
|
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin: 8px;
|
|
|
|
|
padding-block: 8px;
|
|
|
|
|
padding-inline: 12px;
|
|
|
|
|
transition: box-shadow 0.12s ease, border-color 0.12s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-card:hover {
|
|
|
|
|
border-color: var(--color-border-strong);
|
|
|
|
|
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-card-top-row {
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-card-title {
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-card-delete {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.12s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-card:hover .task-card-delete {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.task-card:hover .task-drag-handle {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
style(planning): implement Month/Week/Day calendar views from sketch 005
- Replace 14-day agenda list with three-view calendar (month/week/day)
- Add PlanningCalendar, CalendarDay, CalendarTimeEvent, MiniCalDay data structs
- Add BuildMonthCalendar, BuildWeekCalendar, BuildDayCalendar builder helpers
- Add MondayOf, PlanningMonthURL, PlanningWeekURL, PlanningDayURL URL helpers
- Handler now parses ?view=month|week|day with matching date params
- Month view: 7-col grid with event chips using tablo color via color-mix()
- Week/Day view: split layout with mini-month panel and hour timeline (07-20)
- Timeline events positioned via TopPx/HeightPx from start_time microseconds
- Append all calendar CSS to app.css (view-toggle, cal-grid, tl-* classes)
2026-05-18 14:56:44 +00:00
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section — Planning calendar views (Month / Week / Day)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
/* Page shell */
|
|
|
|
|
.planning-page {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.planning-header {
|
|
|
|
|
align-items: center;
|
|
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
gap: 12px;
|
|
|
|
|
padding: 16px 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.planning-period {
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.planning-month-body {
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 0 24px 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Small icon-button for prev/next arrows */
|
|
|
|
|
.icon-btn {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 5px 6px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
}
|
|
|
|
|
.icon-btn:hover {
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* View toggle */
|
|
|
|
|
.view-toggle {
|
|
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
display: flex;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-btn {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: transparent;
|
|
|
|
|
border: none;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-btn + .view-btn {
|
|
|
|
|
border-left: 1px solid var(--color-border-default);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-btn.active {
|
|
|
|
|
background: color-mix(in srgb, var(--color-brand-primary) 10%, transparent);
|
|
|
|
|
color: var(--color-brand-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---- Month view ---- */
|
|
|
|
|
|
|
|
|
|
.cal-header {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(7, 1fr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-dow {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 8px 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-grid {
|
|
|
|
|
border-left: 1px solid var(--color-border-default);
|
|
|
|
|
border-top: 1px solid var(--color-border-default);
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-auto-rows: minmax(80px, auto);
|
|
|
|
|
grid-template-columns: repeat(7, 1fr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-day {
|
|
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
|
|
|
|
border-right: 1px solid var(--color-border-default);
|
|
|
|
|
min-height: 80px;
|
|
|
|
|
padding: 6px 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-day.other-month {
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-day.today .day-num {
|
|
|
|
|
align-items: center;
|
|
|
|
|
background: var(--color-brand-primary);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
color: #fff;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
height: 24px;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 24px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.day-num {
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cal-event {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.6875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
margin-bottom: 2px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding: 2px 6px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ev-purple { background: #ede9fe; color: #804eec; }
|
|
|
|
|
.ev-blue { background: #dbeafe; color: #1d4ed8; }
|
|
|
|
|
.ev-amber { background: #fef3c7; color: #b45309; }
|
|
|
|
|
.ev-green { background: #d1fae5; color: #065f46; }
|
|
|
|
|
.ev-red { background: #fee2e2; color: #b91c1c; }
|
|
|
|
|
.ev-default {
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ---- Split layout (Week / Day) ---- */
|
|
|
|
|
|
|
|
|
|
.planning-split {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Mini-month sidebar panel */
|
|
|
|
|
.mini-panel {
|
|
|
|
|
border-right: 1px solid var(--color-border-default);
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
min-width: 220px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 16px 12px;
|
|
|
|
|
width: 220px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-month-label {
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
gap: 1px;
|
|
|
|
|
grid-template-columns: repeat(7, 1fr);
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-dow {
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-size: 0.6875rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 4px 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-day {
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: block;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
padding: 4px 2px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-day.today {
|
|
|
|
|
background: var(--color-brand-primary);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mini-day.in-week {
|
|
|
|
|
background: color-mix(in srgb, var(--color-brand-primary) 12%, transparent);
|
|
|
|
|
color: var(--color-brand-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Timeline (week / day) */
|
|
|
|
|
.timeline-outer {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-col-header {
|
|
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tl-gutter {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tl-day-header {
|
|
|
|
|
border-left: 1px solid var(--color-border-default);
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
padding: 8px 4px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tl-day-header.today {
|
|
|
|
|
color: var(--color-brand-primary);
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.timeline-body {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tl-time-col {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
width: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tl-hour-label {
|
|
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-size: 0.6875rem;
|
|
|
|
|
height: 48px;
|
|
|
|
|
padding-right: 8px;
|
|
|
|
|
padding-top: 4px;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tl-day-col {
|
|
|
|
|
border-left: 1px solid var(--color-border-default);
|
|
|
|
|
flex: 1;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tl-hour-row {
|
|
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
|
|
|
|
height: 48px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tl-event {
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 0.6875rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
left: 3px;
|
|
|
|
|
min-height: 20px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
padding: 3px 6px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 3px;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.now-line {
|
|
|
|
|
background: var(--color-brand-primary);
|
|
|
|
|
height: 2px;
|
|
|
|
|
left: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
z-index: 3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.now-dot {
|
|
|
|
|
background: var(--color-brand-primary);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
height: 8px;
|
|
|
|
|
left: -4px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -3px;
|
|
|
|
|
width: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 28 — Dashboard home layout (Sketch 001+002)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
/* Two-column layout wrapper rendered inside dashboard-main */
|
|
|
|
|
.home-layout {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-main {
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
padding: 28px 32px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.contacts-panel {
|
|
|
|
|
width: 220px;
|
|
|
|
|
min-width: 220px;
|
|
|
|
|
border-left: 1px solid var(--color-border-default);
|
|
|
|
|
padding: 24px 16px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Greeting */
|
|
|
|
|
.home-date-line {
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.home-greeting {
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
margin: 0 0 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Action pills row */
|
|
|
|
|
.action-pills-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
margin-bottom: 28px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-pill {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 6px;
|
|
|
|
|
padding: 7px 14px;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
|
background: #fff;
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background 0.15s, border-color 0.15s, color 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-pill:hover:not(:disabled) {
|
|
|
|
|
background: var(--color-brand-primary);
|
|
|
|
|
border-color: var(--color-brand-primary);
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-pill:disabled {
|
|
|
|
|
opacity: 0.45;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-pill.primary-pill {
|
|
|
|
|
background: var(--color-brand-primary);
|
|
|
|
|
border-color: var(--color-brand-primary);
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-pill.primary-pill:hover {
|
|
|
|
|
background: var(--color-brand-primary-hover, #6b3fd9);
|
|
|
|
|
border-color: var(--color-brand-primary-hover, #6b3fd9);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Section headers */
|
|
|
|
|
.section-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.see-all {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
color: var(--color-text-brand, var(--color-brand-primary));
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.see-all:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 29 — Project cards (Sketch 004)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.card-grid {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
gap: 16px;
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Override .project-card to match sketch 004 */
|
|
|
|
|
.card-grid .project-card {
|
|
|
|
|
background: #fff;
|
|
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: box-shadow 0.15s, border-color 0.15s;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-grid .project-card:hover {
|
|
|
|
|
box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
|
|
|
|
|
border-color: var(--color-border-strong, #d1d5db);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-color-circle {
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-title {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--color-text-primary);
|
|
|
|
|
flex: 1;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card-meta {
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Status badges */
|
|
|
|
|
.badge-active {
|
|
|
|
|
background: #ecfdf3;
|
|
|
|
|
color: #16a34a;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 2px 8px;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badge-archived {
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
padding: 2px 8px;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* View toggle grid/list buttons */
|
|
|
|
|
.view-toggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-btn {
|
|
|
|
|
padding: 6px 10px;
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-btn:first-child {
|
|
|
|
|
border-right: 1px solid var(--color-border-default);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.view-btn.active {
|
|
|
|
|
background: color-mix(in srgb, var(--color-brand-primary) 10%, transparent);
|
|
|
|
|
color: var(--color-text-brand, var(--color-brand-primary));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Filter pills */
|
|
|
|
|
.filter-pill {
|
|
|
|
|
padding: 4px 12px;
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
border: 1px solid var(--color-border-default);
|
|
|
|
|
background: #fff;
|
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
|
transition: background 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filter-pill.active {
|
|
|
|
|
background: var(--color-brand-primary);
|
|
|
|
|
color: #fff;
|
|
|
|
|
border-color: var(--color-brand-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ============================================================
|
|
|
|
|
Section 30 — Projects list table (Sketch 004)
|
|
|
|
|
============================================================ */
|
|
|
|
|
|
|
|
|
|
.projects-table {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
table-layout: fixed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.projects-table th {
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
letter-spacing: 0.04em;
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.projects-table td {
|
|
|
|
|
padding: 13px 16px;
|
|
|
|
|
border-bottom: 1px solid var(--color-border-default);
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.projects-table tr:hover td {
|
|
|
|
|
background: var(--color-surface-subtle);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.proj-name-cell {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-with-label {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-with-label .progress-bar-wrap {
|
|
|
|
|
flex: 1;
|
|
|
|
|
height: 4px;
|
|
|
|
|
background: var(--color-surface-muted);
|
|
|
|
|
border-radius: 9999px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-pct {
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
color: var(--color-text-muted);
|
|
|
|
|
min-width: 32px;
|
|
|
|
|
}
|