122 lines
2.2 KiB
CSS
122 lines
2.2 KiB
CSS
/**
|
|
* FeatureView Page Styles
|
|
*/
|
|
|
|
.featureView {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
/* View Header */
|
|
.viewHeader {
|
|
padding: 1rem 1.5rem;
|
|
border-bottom: 1px solid var(--border-color, #e0e0e0);
|
|
background: var(--bg-primary, #ffffff);
|
|
}
|
|
|
|
.viewTitle {
|
|
margin: 0;
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: var(--text-primary, #1a1a1a);
|
|
}
|
|
|
|
/* View Content */
|
|
.viewContent {
|
|
flex: 1;
|
|
overflow: auto;
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
/* Placeholder */
|
|
.placeholder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 300px;
|
|
padding: 2rem;
|
|
background: var(--surface-color, #f8f9fa);
|
|
border: 2px dashed var(--border-color, #e0e0e0);
|
|
border-radius: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.placeholder h2 {
|
|
margin: 0;
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: var(--text-primary, #1a1a1a);
|
|
}
|
|
|
|
.placeholder p {
|
|
margin: 0.5rem 0 0;
|
|
color: var(--text-secondary, #666);
|
|
font-size: 0.9375rem;
|
|
}
|
|
|
|
/* Not Found */
|
|
.notFound,
|
|
.accessDenied {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 300px;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.notFound h2,
|
|
.accessDenied h2 {
|
|
margin: 0;
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: var(--text-primary, #1a1a1a);
|
|
}
|
|
|
|
.notFound p,
|
|
.accessDenied p {
|
|
margin: 0.5rem 0 0;
|
|
color: var(--text-secondary, #666);
|
|
font-size: 0.9375rem;
|
|
}
|
|
|
|
.accessDenied {
|
|
background: var(--error-light, #fef2f2);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.accessDenied h2 {
|
|
color: var(--error-color, #dc2626);
|
|
}
|
|
|
|
/* Dark Theme */
|
|
:global(.dark-theme) .viewHeader {
|
|
background: var(--surface-dark, #1a1a1a);
|
|
border-bottom-color: var(--border-dark, #333);
|
|
}
|
|
|
|
:global(.dark-theme) .viewTitle {
|
|
color: var(--text-primary-dark, #ffffff);
|
|
}
|
|
|
|
:global(.dark-theme) .placeholder {
|
|
background: var(--surface-dark, #1a1a1a);
|
|
border-color: var(--border-dark, #444);
|
|
}
|
|
|
|
:global(.dark-theme) .placeholder h2,
|
|
:global(.dark-theme) .notFound h2 {
|
|
color: var(--text-primary-dark, #ffffff);
|
|
}
|
|
|
|
:global(.dark-theme) .placeholder p,
|
|
:global(.dark-theme) .notFound p {
|
|
color: var(--text-secondary-dark, #aaa);
|
|
}
|
|
|
|
:global(.dark-theme) .accessDenied {
|
|
background: rgba(220, 38, 38, 0.1);
|
|
}
|