Fix backlog buttoin visualization
parent
eea5ea4fe9
commit
c9ef7b5f42
|
@ -36,7 +36,7 @@ div.wrapper(tg-backlog, ng-controller="BacklogController as ctrl",
|
|||
|
||||
div.backlog-menu
|
||||
div.backlog-table-options
|
||||
a.trans-button.move-to-current-sprint.move-to-sprint.e2e-move-to-sprint(
|
||||
a.trans-button.menu-button.move-to-current-sprint.move-to-sprint.e2e-move-to-sprint(
|
||||
ng-if="currentSprint"
|
||||
href=""
|
||||
title="{{'BACKLOG.MOVE_US_TO_CURRENT_SPRINT' | translate}}"
|
||||
|
@ -44,7 +44,7 @@ div.wrapper(tg-backlog, ng-controller="BacklogController as ctrl",
|
|||
)
|
||||
tg-svg(svg-icon="icon-move")
|
||||
span.text(translate="BACKLOG.MOVE_US_TO_CURRENT_SPRINT")
|
||||
a.trans-button.move-to-latest-sprint.move-to-sprint.e2e-move-to-sprint(
|
||||
a.trans-button.menu-button.move-to-latest-sprint.move-to-sprint.e2e-move-to-sprint(
|
||||
ng-if="!currentSprint"
|
||||
href=""
|
||||
title="{{'BACKLOG.MOVE_US_TO_LATEST_SPRINT' | translate}}"
|
||||
|
@ -52,21 +52,21 @@ div.wrapper(tg-backlog, ng-controller="BacklogController as ctrl",
|
|||
)
|
||||
tg-svg(svg-icon="icon-move")
|
||||
span.text(translate="BACKLOG.MOVE_US_TO_LATEST_SPRINT")
|
||||
a.trans-button.e2e-open-filter(
|
||||
a.trans-button.menu-button.e2e-open-filter.ng-animate-disabled(
|
||||
ng-if="!ctrl.activeFilters"
|
||||
href=""
|
||||
title="{{'BACKLOG.FILTERS.TOGGLE' | translate}}"
|
||||
id="show-filters-button"
|
||||
translate="BACKLOG.FILTERS.SHOW"
|
||||
)
|
||||
a.trans-button.active.e2e-open-filter(
|
||||
a.trans-button.menu-button.active.e2e-open-filter.ng-animate-disabled(
|
||||
ng-if="ctrl.activeFilters"
|
||||
href=""
|
||||
title="{{'BACKLOG.FILTERS.HIDE' | translate}}"
|
||||
id="show-filters-button"
|
||||
translate="BACKLOG.FILTERS.HIDE"
|
||||
)
|
||||
a.trans-button(
|
||||
a.trans-button.menu-button(
|
||||
ng-if="userstories.length"
|
||||
href=""
|
||||
title="{{'BACKLOG.TAGS.TOGGLE' | translate}}"
|
||||
|
|
|
@ -25,10 +25,11 @@
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 1rem;
|
||||
.trans-button {
|
||||
.menu-button {
|
||||
border-radius: 0;
|
||||
color: $blackish;
|
||||
display: inline-block;
|
||||
padding: .3rem 1.5rem;
|
||||
padding: .4rem 1.5rem;
|
||||
&.active,
|
||||
&:hover {
|
||||
background: $whitish;
|
||||
|
|
Loading…
Reference in New Issue