Merge pull request #8736 from opf/fix/34126-gantt-chart-row-styles-conflict-between-active-and-hovered

Fix/34126 gantt chart row styles conflict between active and hovered
pull/8782/head
ulferts 4 years ago committed by GitHub
commit f3287141a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      frontend/src/app/modules/global_search/input/global-search-input.component.html
  2. 2
      frontend/src/global_styles/layout/work_packages/_table.sass

@ -62,11 +62,11 @@
[ngClass]="uiStateLinkClass">
#{{item.id}}
</a>
<span [textContent]="item.status"
<span [textContent]="item.status"
[ngClass]="statusHighlighting(item.statusId)"
class="global-search--wp-status">
</span>
</div>
</div>
</a>

@ -62,7 +62,7 @@
div.row-hovered
// Use important to override the background styles from __hl classes
// That also have to be important (cf. 30863)
background: #d1ebfb85 !important
background: var(--gray-lighter) !important
// Left part of the split view
// == flex container for (table|timeline)

Loading…
Cancel
Save