fix: DockerSecretsResolver - don't normalize absolute paths like /var/www/html/...
Some checks failed
Deploy Application / deploy (push) Has been cancelled
Some checks failed
Deploy Application / deploy (push) Has been cancelled
This commit is contained in:
@@ -7,16 +7,16 @@
|
||||
|
||||
.confusion-matrix-card {
|
||||
padding: var(--space-md);
|
||||
border: 1px solid var(--admin-border-color);
|
||||
border-radius: var(--admin-border-radius);
|
||||
background: var(--admin-card-bg);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: var(--border-radius);
|
||||
background: var(--content-bg);
|
||||
}
|
||||
|
||||
.confusion-matrix-card__title {
|
||||
margin: 0 0 var(--space-md);
|
||||
font-size: var(--font-size-md);
|
||||
font-weight: 600;
|
||||
color: var(--admin-text-primary);
|
||||
color: var(--content-text);
|
||||
}
|
||||
|
||||
/* Confusion Matrix Grid - 2x2 Layout */
|
||||
@@ -30,14 +30,14 @@
|
||||
/* Matrix Cells */
|
||||
.confusion-matrix__cell {
|
||||
padding: var(--space-md);
|
||||
border-radius: var(--admin-border-radius);
|
||||
border-radius: var(--border-radius);
|
||||
text-align: center;
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.confusion-matrix__cell:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--admin-shadow-md);
|
||||
box-shadow: var(--shadow-md);
|
||||
}
|
||||
|
||||
.confusion-matrix__cell-label {
|
||||
@@ -84,25 +84,25 @@
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: var(--space-sm);
|
||||
padding-top: var(--space-md);
|
||||
border-top: 1px solid var(--admin-border-color);
|
||||
border-top: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.confusion-matrix__rates .admin-stat-item {
|
||||
padding: var(--space-sm);
|
||||
background: var(--admin-bg-secondary);
|
||||
border-radius: var(--admin-border-radius-sm);
|
||||
background: var(--bg-secondary);
|
||||
border-radius: var(--border-radius-sm);
|
||||
}
|
||||
|
||||
.confusion-matrix__rates .admin-stat-item__label {
|
||||
font-size: var(--font-size-sm);
|
||||
font-weight: 500;
|
||||
color: var(--admin-text-secondary);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.confusion-matrix__rates .admin-stat-item__value {
|
||||
font-size: var(--font-size-md);
|
||||
font-weight: 600;
|
||||
color: var(--admin-text-primary);
|
||||
color: var(--content-text);
|
||||
}
|
||||
|
||||
/* Dark Mode Support */
|
||||
|
||||
Reference in New Issue
Block a user