52 lines
1.1 KiB
Sass
52 lines
1.1 KiB
Sass
@import "_mixins/all"
|
|
|
|
#repositories li,
|
|
#summary .number a,
|
|
table.list .number a
|
|
background-image: inline-image('icons/status.yellow.png')
|
|
background-repeat: no-repeat
|
|
|
|
#repositories li.green,
|
|
.green #summary .number a,
|
|
table.list .green .number a
|
|
background-image: inline-image('icons/status.green.png')
|
|
color: $color-text-status-passed
|
|
background-repeat: no-repeat
|
|
|
|
#repositories li.red,
|
|
.red #summary .number a,
|
|
table.list .red .number a
|
|
background-image: inline-image('icons/status.red.png')
|
|
color: $color-text-status-failed
|
|
background-repeat: no-repeat
|
|
|
|
#summary .number a,
|
|
table.list .number a
|
|
padding-left: 20px
|
|
|
|
table.list
|
|
tbody
|
|
td
|
|
cursor: pointer
|
|
background-color: $color-bg-job
|
|
tr:hover td
|
|
background-color: $color-bg-job-highlight
|
|
|
|
.green
|
|
td
|
|
background-color: $color-bg-job-passed
|
|
&:hover td
|
|
background-color: $color-bg-job-passed-highlight
|
|
.number a
|
|
color: $color-text-status-passed
|
|
|
|
.red
|
|
td
|
|
background-color: $color-bg-job-failed
|
|
&:hover td
|
|
background-color: $color-bg-job-failed-highlight
|
|
.number a
|
|
color: $color-text-status-failed
|
|
|
|
|