diff --git a/app/styles/app/_mixins/mixins.sass b/app/styles/app/_mixins/mixins.sass index dc8ae160..f98025d7 100644 --- a/app/styles/app/_mixins/mixins.sass +++ b/app/styles/app/_mixins/mixins.sass @@ -90,7 +90,7 @@ @mixin statusColors($color, $status, $color2: $color) &.#{$status} - background: linear-gradient(to right, $color2 0%, $color2 9px, white 10px, white 100%) no-repeat + background: linear-gradient(to right, $color2 0%, $color2 9px, white 9px, white 100%) no-repeat .row-name, .row-request a color: $color diff --git a/app/styles/app/layouts/dashboard.sass b/app/styles/app/layouts/dashboard.sass index 58e56f48..a3e7cd47 100644 --- a/app/styles/app/layouts/dashboard.sass +++ b/app/styles/app/layouts/dashboard.sass @@ -1,9 +1,20 @@ - +// .two-line, +// .one-line +// @media #{$medium-up} +// white-space: nowrap +// position:relative +// overflow: hidden +// &:after +// content: "" +// @include fadeOut(right, -90deg, $white) @mixin colorDashboardTiles($color, $status, $color2: $color) &.#{$status} .row-request color: $color + .row-name a, + .row-request a + color: $color .dashboard diff --git a/app/templates/components/dashboard-row.hbs b/app/templates/components/dashboard-row.hbs index e3d1efe0..9d2fc268 100644 --- a/app/templates/components/dashboard-row.hbs +++ b/app/templates/components/dashboard-row.hbs @@ -1,16 +1,18 @@
-

{{status-icon status=repo.last_build.state}} {{repo.owner.login}}

-

{{repo.name}}

+

{{#link-to "owner" repo.owner.login}}{{status-icon status=repo.last_build.state}} {{repo.owner.login}}{{/link-to}}

+

{{#link-to "repo" repo.owner.login repo.name}}{{repo.name}}{{/link-to}}

+ {{#link-to "build" repo.owner.login repo.name repo.last_build.id}} {{request-icon build=repo.last_build}} #{{repo.last_build.number}} {{repo.last_build.state}} on {{repo.name}} + {{/link-to}}