added some tests
This commit is contained in:
@@ -127,12 +127,18 @@ body {
|
||||
align-items: center;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
min-height: 60px;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.header-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--spacing-md);
|
||||
flex-shrink: 1;
|
||||
min-width: 150px;
|
||||
}
|
||||
|
||||
.header-title i {
|
||||
@@ -150,7 +156,10 @@ body {
|
||||
.header-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--spacing-md);
|
||||
gap: var(--spacing-lg);
|
||||
flex-shrink: 0;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
/* Main content */
|
||||
@@ -844,14 +853,46 @@ body {
|
||||
}
|
||||
|
||||
/* Responsive design */
|
||||
@media (max-width: 1024px) {
|
||||
.header-title {
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.header-title h1 {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
|
||||
.header-actions {
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.process-status {
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.status-text {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.header-content {
|
||||
flex-direction: column;
|
||||
gap: var(--spacing-md);
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.header-title {
|
||||
text-align: center;
|
||||
min-width: auto;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header-actions {
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
width: 100%;
|
||||
gap: var(--spacing-sm);
|
||||
}
|
||||
|
||||
.main-content {
|
||||
@@ -1374,22 +1415,23 @@ body {
|
||||
/* Process Status Indicators */
|
||||
.process-status {
|
||||
display: flex;
|
||||
gap: var(--spacing-md);
|
||||
gap: var(--spacing-sm);
|
||||
align-items: center;
|
||||
margin-right: var(--spacing-md);
|
||||
}
|
||||
|
||||
.status-indicator {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: var(--spacing-xs);
|
||||
padding: var(--spacing-xs) var(--spacing-sm);
|
||||
gap: var(--spacing-sm);
|
||||
padding: var(--spacing-sm) var(--spacing-md);
|
||||
background: var(--color-background-subtle);
|
||||
border-radius: var(--border-radius);
|
||||
border: 1px solid var(--color-border);
|
||||
font-size: var(--font-size-caption);
|
||||
color: var(--color-text-secondary);
|
||||
transition: all var(--animation-duration-normal) var(--animation-easing-standard);
|
||||
min-width: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.status-indicator:hover {
|
||||
@@ -1405,6 +1447,8 @@ body {
|
||||
.status-text {
|
||||
font-weight: 500;
|
||||
white-space: nowrap;
|
||||
flex-shrink: 0;
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
.status-dot {
|
||||
@@ -1451,12 +1495,17 @@ body {
|
||||
|
||||
.status-indicator {
|
||||
font-size: 11px;
|
||||
padding: 4px 6px;
|
||||
padding: 6px 8px;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.status-text {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.status-indicator i {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Scheduler Configuration */
|
||||
|
||||
Reference in New Issue
Block a user