Added sorting to Trips and Dashboard tables; chenged Follow-up values to snapmed and ctm
This commit is contained in:
@@ -575,6 +575,61 @@ body {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.journey-table th.th-sortable {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
transition: color var(--transition-fast), background var(--transition-fast);
|
||||
}
|
||||
|
||||
.journey-table th.th-sortable:hover {
|
||||
color: var(--color-text-primary);
|
||||
}
|
||||
|
||||
.th-sort-button {
|
||||
all: unset;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
cursor: pointer;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
font-weight: inherit;
|
||||
letter-spacing: inherit;
|
||||
text-transform: inherit;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.th-sort-button:focus-visible {
|
||||
outline: 2px solid var(--color-primary);
|
||||
outline-offset: 2px;
|
||||
border-radius: var(--radius-sm);
|
||||
}
|
||||
|
||||
.th-sort-button.is-active {
|
||||
color: var(--color-primary-hover, var(--color-primary));
|
||||
}
|
||||
|
||||
.th-sort-icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.th-sort-icon .sort-arrow {
|
||||
color: var(--color-primary-hover, var(--color-primary));
|
||||
}
|
||||
|
||||
.th-sort-icon .sort-arrow-neutral {
|
||||
color: var(--color-text-muted);
|
||||
opacity: 0.35;
|
||||
transition: opacity var(--transition-fast), color var(--transition-fast);
|
||||
}
|
||||
|
||||
.journey-table th.th-sortable:hover .sort-arrow-neutral {
|
||||
opacity: 0.8;
|
||||
color: var(--color-text-secondary);
|
||||
}
|
||||
|
||||
.journey-table td {
|
||||
padding: var(--space-4) var(--space-5);
|
||||
font-size: var(--font-size-sm);
|
||||
|
||||
Reference in New Issue
Block a user