feat(FN-998): split changes-header-actions into two-row layout

- Refactor TaskChangesTab actions header to use a two-row layout for better readability
- Add CSS for .changes-header-row-top and .changes-header-row-bottom styling
- Reorganize action buttons and filters across two rows with proper spacing
- Improve responsive behavior of the changes tab header actions
This commit is contained in:
gsxdsm
2026-04-05 18:31:38 -07:00
parent 51d8e88a7a
commit bf38bf7dc3
2 changed files with 68 additions and 50 deletions

View File

@@ -3563,9 +3563,10 @@ body {
.changes-header {
display: flex;
align-items: center;
align-items: flex-start;
justify-content: space-between;
gap: var(--space-md);
flex-wrap: wrap;
}
.changes-header h4 {
@@ -3581,6 +3582,19 @@ body {
gap: var(--space-sm);
}
.changes-header-actions-wrapper {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: var(--space-xs);
}
.changes-header-actions-secondary {
display: inline-flex;
align-items: center;
gap: var(--space-sm);
}
.changes-nav {
display: inline-flex;
align-items: center;