diff --git a/app/styles/components/buttons.scss b/app/styles/components/buttons.scss index af107dde..51f877c7 100755 --- a/app/styles/components/buttons.scss +++ b/app/styles/components/buttons.scss @@ -10,11 +10,11 @@ padding: .4rem 2.5rem; text-align: center; text-transform: uppercase; - transition: all .3s linear; + transition: all .2s linear; vertical-align: middle; &:hover { color: $white; - transition: all .3s linear; + transition: all .2s linear; } &:visited { color: $white; @@ -49,6 +49,9 @@ color: $primary; } } + &:visited { + color: $blackish; + } } diff --git a/app/styles/layout/backlog.scss b/app/styles/layout/backlog.scss index b9fc2f38..b5edef9e 100644 --- a/app/styles/layout/backlog.scss +++ b/app/styles/layout/backlog.scss @@ -4,20 +4,24 @@ display: flex; justify-content: space-between; margin-bottom: 1rem; - .backlog-table-options { - .trans-button { - @extend %trans-button; - color: $blackish; - display: inline-block; - padding: .4rem 1.5rem; + .trans-button { + @extend %trans-button; + color: $blackish; + display: inline-block; + padding: .4rem 1.5rem; + &.active, + &:hover { + background: $gray; + color: $whitish; + } + &.active { &:hover { - background: $gray-light; - color: $whitish; - } - &.move-to-current-sprint { - display: none; + background: lighten($gray, 30%); } } + &.move-to-current-sprint { + display: none; + } } .button-bulk { margin-left: .2rem;