fix links in dashboard templates
This commit is contained in:
parent
ffb635b846
commit
c38a64bc2f
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,16 +1,18 @@
|
|||
|
||||
<div class="two-line">
|
||||
<div class="row-name row-item">
|
||||
<h3>{{status-icon status=repo.last_build.state}} {{repo.owner.login}}</h3>
|
||||
<h2><span class="label-align">{{repo.name}}</span></h2>
|
||||
<h3>{{#link-to "owner" repo.owner.login}}{{status-icon status=repo.last_build.state}} {{repo.owner.login}}{{/link-to}}</h3>
|
||||
<h2>{{#link-to "repo" repo.owner.login repo.name}}<span class="label-align">{{repo.name}}</span>{{/link-to}}</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="one-line">
|
||||
<div class="row-request">
|
||||
<div class="row-item">
|
||||
{{#link-to "build" repo.owner.login repo.name repo.last_build.id}}
|
||||
{{request-icon build=repo.last_build}}
|
||||
<span class="label-align">#{{repo.last_build.number}} {{repo.last_build.state}} on {{repo.name}}</span>
|
||||
{{/link-to}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue
Block a user