diff --git a/models/tracker/src/index.ts b/models/tracker/src/index.ts index 41a9dcb2fa..6f491b14b5 100644 --- a/models/tracker/src/index.ts +++ b/models/tracker/src/index.ts @@ -477,6 +477,7 @@ export function createModel (builder: Builder): void { { key: 'comments', displayProps: { key: 'comments' } }, { key: 'attachments', displayProps: { key: 'attachments' } }, { key: '', label: tracker.string.SubIssues, presenter: tracker.component.SubIssuesSelector, props: {} }, + { key: '', displayProps: { grow: true } }, { key: 'labels', presenter: tags.component.LabelsPresenter, @@ -524,7 +525,6 @@ export function createModel (builder: Builder): void { displayProps: { key: 'dueDate', optional: true, compression: true }, props: { kind: 'list' } }, - { key: '', displayProps: { grow: true } }, { key: '', label: tracker.string.Estimation, diff --git a/packages/theme/styles/components.scss b/packages/theme/styles/components.scss index 2dd7d69a6d..895f01cdf2 100644 --- a/packages/theme/styles/components.scss +++ b/packages/theme/styles/components.scss @@ -916,15 +916,15 @@ // Labels on the ListView .list-container .listitems-container, .list-container .listitems-container:hover, -.list-container .button.list, -.list-container .button.list:hover, +.list-container .antiButton.list, +.list-container .antiButton.list:hover, .list-container .datetime-button, .list-container .datetime-button:hover { - background-color: var(--theme-list-button-color); - .icon, .btn-icon { - margin-right: .5rem; - color: var(--theme-halfcontent-color) !important; - } + background-color: var(--theme-list-button-color) !important; + + &:not(.only-icon) .btn-icon, + &:not(.only-icon) .icon { margin-right: .5rem !important; } + .icon, .btn-icon { color: var(--theme-halfcontent-color) !important; } .label { font-size: 0.8125rem !important; color: var(--theme-halfcontent-color) !important; diff --git a/packages/ui/src/components/EditWithIcon.svelte b/packages/ui/src/components/EditWithIcon.svelte index ed8b61d582..ee9856244d 100644 --- a/packages/ui/src/components/EditWithIcon.svelte +++ b/packages/ui/src/components/EditWithIcon.svelte @@ -72,7 +72,7 @@