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-menu
|
||||||
div.backlog-table-options
|
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"
|
ng-if="currentSprint"
|
||||||
href=""
|
href=""
|
||||||
title="{{'BACKLOG.MOVE_US_TO_CURRENT_SPRINT' | translate}}"
|
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")
|
tg-svg(svg-icon="icon-move")
|
||||||
span.text(translate="BACKLOG.MOVE_US_TO_CURRENT_SPRINT")
|
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"
|
ng-if="!currentSprint"
|
||||||
href=""
|
href=""
|
||||||
title="{{'BACKLOG.MOVE_US_TO_LATEST_SPRINT' | translate}}"
|
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")
|
tg-svg(svg-icon="icon-move")
|
||||||
span.text(translate="BACKLOG.MOVE_US_TO_LATEST_SPRINT")
|
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"
|
ng-if="!ctrl.activeFilters"
|
||||||
href=""
|
href=""
|
||||||
title="{{'BACKLOG.FILTERS.TOGGLE' | translate}}"
|
title="{{'BACKLOG.FILTERS.TOGGLE' | translate}}"
|
||||||
id="show-filters-button"
|
id="show-filters-button"
|
||||||
translate="BACKLOG.FILTERS.SHOW"
|
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"
|
ng-if="ctrl.activeFilters"
|
||||||
href=""
|
href=""
|
||||||
title="{{'BACKLOG.FILTERS.HIDE' | translate}}"
|
title="{{'BACKLOG.FILTERS.HIDE' | translate}}"
|
||||||
id="show-filters-button"
|
id="show-filters-button"
|
||||||
translate="BACKLOG.FILTERS.HIDE"
|
translate="BACKLOG.FILTERS.HIDE"
|
||||||
)
|
)
|
||||||
a.trans-button(
|
a.trans-button.menu-button(
|
||||||
ng-if="userstories.length"
|
ng-if="userstories.length"
|
||||||
href=""
|
href=""
|
||||||
title="{{'BACKLOG.TAGS.TOGGLE' | translate}}"
|
title="{{'BACKLOG.TAGS.TOGGLE' | translate}}"
|
||||||
|
|
|
@ -25,10 +25,11 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
.trans-button {
|
.menu-button {
|
||||||
|
border-radius: 0;
|
||||||
color: $blackish;
|
color: $blackish;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: .3rem 1.5rem;
|
padding: .4rem 1.5rem;
|
||||||
&.active,
|
&.active,
|
||||||
&:hover {
|
&:hover {
|
||||||
background: $whitish;
|
background: $whitish;
|
||||||
|
|
Loading…
Reference in New Issue