Fix dark theme styling for team pages and add footer enhancements

- Update all team page CSS to use correct theme variables (--bg-*, --text-*,
  --border-*, --accent-* instead of non-existent --color-* variables)
- Fix modal, form input, and dropdown backgrounds for dark theme
- Fix UserAutocomplete and TeamSelector dropdown styling
- Center team members and settings page content
- Add orchard logo icon to footer
- Add dot separator between Orchard and tagline in footer
This commit is contained in:
Mondo Diaz
2026-01-28 16:49:50 +00:00
parent 1f5d3665c8
commit 9b79838cc3
8 changed files with 206 additions and 172 deletions

View File

@@ -1,6 +1,7 @@
.team-members {
padding: 1.5rem 0;
max-width: 800px;
margin: 0 auto;
}
.page-header {
@@ -27,7 +28,7 @@
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--color-primary);
background: var(--accent-primary);
color: white;
display: flex;
align-items: center;
@@ -53,34 +54,34 @@
.you-badge {
font-size: 0.75rem;
font-weight: normal;
color: var(--color-text-muted);
color: var(--text-muted);
}
.member-email {
font-size: 0.8125rem;
color: var(--color-text-muted);
color: var(--text-muted);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.text-muted {
color: var(--color-text-muted);
color: var(--text-muted);
}
.role-select {
padding: 0.375rem 0.75rem;
border: 1px solid var(--color-border);
border: 1px solid var(--border-primary);
border-radius: var(--radius-md);
font-size: 0.875rem;
background: var(--color-bg);
color: var(--color-text);
background: var(--bg-tertiary);
color: var(--text-primary);
cursor: pointer;
}
.role-select:focus {
outline: none;
border-color: var(--color-primary);
border-color: var(--accent-primary);
}
/* Messages */
@@ -90,10 +91,10 @@
justify-content: space-between;
padding: 0.75rem 1rem;
margin-bottom: 1rem;
background: var(--color-error-bg, #fef2f2);
border: 1px solid var(--color-error-border, #fecaca);
background: var(--error-bg);
border: 1px solid var(--error);
border-radius: var(--radius-md);
color: var(--color-error, #dc2626);
color: var(--error);
font-size: 0.875rem;
}
@@ -120,7 +121,7 @@
.error-state p {
margin: 0 0 1.5rem;
color: var(--color-text-muted);
color: var(--text-muted);
}
/* Modal */
@@ -130,7 +131,7 @@
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
@@ -139,17 +140,19 @@
}
.modal-content {
background: #ffffff;
background: var(--bg-secondary);
border: 1px solid var(--border-primary);
border-radius: var(--radius-lg);
padding: 1.5rem;
width: 100%;
max-width: 400px;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
box-shadow: var(--shadow-lg);
}
.modal-content h2 {
margin: 0 0 1.5rem;
font-size: 1.25rem;
color: var(--text-primary);
}
/* Form */
@@ -162,24 +165,25 @@
margin-bottom: 0.375rem;
font-weight: 500;
font-size: 0.875rem;
color: var(--text-primary);
}
.form-group input,
.form-group select {
width: 100%;
padding: 0.5rem 0.75rem;
border: 1px solid var(--color-border);
border: 1px solid var(--border-primary);
border-radius: var(--radius-md);
font-size: 0.9375rem;
background: var(--color-bg);
color: var(--color-text);
background: var(--bg-tertiary);
color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 2px var(--color-primary-bg);
border-color: var(--accent-primary);
box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}
.form-actions {
@@ -210,22 +214,22 @@
}
.btn-primary {
background: var(--color-primary);
background: var(--accent-primary);
color: white;
}
.btn-primary:hover:not(:disabled) {
background: var(--color-primary-hover);
background: var(--accent-primary-hover);
}
.btn-secondary {
background: var(--color-bg-secondary);
color: var(--color-text);
border: 1px solid var(--color-border);
background: var(--bg-tertiary);
color: var(--text-primary);
border: 1px solid var(--border-primary);
}
.btn-secondary:hover:not(:disabled) {
background: var(--color-bg-tertiary);
background: var(--bg-hover);
}
.btn-icon {
@@ -234,10 +238,10 @@
.btn-danger-ghost {
background: transparent;
color: var(--color-text-muted);
color: var(--text-muted);
}
.btn-danger-ghost:hover:not(:disabled) {
background: var(--color-error-bg, #fef2f2);
color: var(--color-error, #dc2626);
background: var(--error-bg);
color: var(--error);
}