try to refactor coloring mixins

This commit is contained in:
Lisa P 2015-09-18 15:02:07 +02:00
parent abf40de3c2
commit 33917bf73c
6 changed files with 50 additions and 48 deletions

View File

@ -64,3 +64,47 @@
font-size: $font-size-sm
color: $grey-medium
font-weight: 400
// @todo simplyfiy coloring mixins
@mixin colorStatusIcons($color, $status)
.status-icon.#{$status}
svg g > *
fill: $color
@mixin colorTiles($color, $status, $extra-bg: $color)
&.#{$status}
border-color: $extra-bg
.tile-status
background-color: $color
.repo-header-title a,
.repo-build-status a,
.build-status a,
.tile-header,
.tile-header a,
.tile-title a
color: $color
@include colorStatusIcons($color, $status)
@mixin statusColors($color, $status, $color2: $color)
&.#{$status}
background: linear-gradient(to right, $color2 0%, $color2 9px, white 10px, white 100%) no-repeat
.branch-name,
.branch-request a
color: $color
&:hover
border-color: $color
.branch-name .status-icon g > *,
.branch-request .icon-request g > *
fill: $color
.build a,
.repo-title a
color: $color
&:hover
border-color: $color
.build-status
color: $color
@include colorStatusIcons($color, $status)

View File

@ -6,7 +6,7 @@
fill: $color
&:hover
background-color: $extra-hover
.status-icon g > *
.status-icon.#{$status} g > *
fill: $white
.status-icon .circle
border-color: $white

View File

@ -1,14 +1,3 @@
@mixin statusColors($color, $status, $color2: $color)
&.#{$status}
background: linear-gradient(to right, $color2 0%, $color2 9px, white 10px, white 100%) no-repeat
.branch-name,
.branch-request a
color: $color
&:hover
border-color: $color
.branch-name .status-icon g > *,
.branch-request .icon-request g > *
fill: $color
.branches
.small-title

View File

@ -97,18 +97,6 @@
padding: 0
line-height: 1
@mixin statusColors($color, $status)
&.#{$status}
background: linear-gradient(to right, $color 0%, $color 9px, transparent 10px, transparent 100%) no-repeat;
.build a,
.repo-title a
color: $color
&:hover
border-color: $color
.build-status
color: $color
.owner-tile
padding: .8em 0 .8em 2em
margin-bottom: .5em
@ -122,6 +110,10 @@
.repo-title a:hover
text-decoration: underline
.status-icon
width: 1.3em
height: 1.1em
.icon--job,
.icon-push,
.icon-pull_request,

View File

@ -1,22 +1,3 @@
@mixin colorStatusIcons($color, $status)
.status-icon.#{$status}
svg g > *
fill: $color
@mixin colorTiles($color, $status, $extra-bg: $color)
&.#{$status}
border-color: $extra-bg
.tile-status
background-color: $color
.repo-header-title a,
.repo-build-status a,
.build-status a,
.tile-header,
.tile-header a,
.tile-title a
color: $color
@include colorStatusIcons($color, $status)
.tile
@extend %border-radius-4px

View File

@ -2,11 +2,7 @@
<div class="tile-lock"><span class="icon icon-lock"></span></div>
{{/if}} --}}
<div class="repo">
{{#if isAnimating}}
<span class="icon-owner-receiving"><i></i><i></i><i></i></span>
{{else}}
<span class="icon--job {{repo.default_branch.last_build.state}}"></span>
{{/if}}
{{status-icon status=repo.default_branch.last_build.state}}
<h2 class="repo-title">{{#link-to "repo" ownerName repoName }}{{repoName}}{{/link-to}}</h2>
</div>
{{#if repo.default_branch.last_build}}