link styling

This commit is contained in:
Lisa Passing 2015-01-23 13:59:46 +01:00
parent 139f950861
commit 755a9460ea
3 changed files with 19 additions and 21 deletions

View File

@ -12,7 +12,7 @@ Route = TravisRoute.extend
@get('stylesheetsManager').disable('dashboard') @get('stylesheetsManager').disable('dashboard')
model: -> model: ->
return new Ember.RSVP.Promise(->) #return new Ember.RSVP.Promise(->)
apiEndpoint = @get('config').api_endpoint apiEndpoint = @get('config').api_endpoint
$.ajax(apiEndpoint + '/repos?member=lislis', { $.ajax(apiEndpoint + '/repos?member=lislis', {
beforeSend: (xhr) -> beforeSend: (xhr) ->

View File

@ -5,6 +5,13 @@
&.open li .info &.open li .info
display: block display: block
a:hover,
a:active
text-decoration: underline
a:focus
outline: 1px dotted
li li
position: relative position: relative
font-size: $font-size-big font-size: $font-size-big

View File

@ -400,10 +400,17 @@ a {
width : 33px; width : 33px;
border-radius : 4px 0 0 4px; border-radius : 4px 0 0 4px;
} }
// .repo a:hover,
// .build-status a:hover { .repo a:hover,
// text-decoration: underline; .build-status a:hover,
// } .repo a:active,
.build-status a:active {
text-decoration: underline;
}
.repo a:focus,
.build-status a:focus {
outline: 1px dotted;
}
.passed { .passed {
.build-bar { .build-bar {
@ -417,10 +424,6 @@ a {
.build-status a { .build-status a {
color: #3ba85d; color: #3ba85d;
} }
.repo a:focus,
.build-status a:focus {
outline: 1px dotted #3ba85d;
}
} }
.failed { .failed {
@ -435,10 +438,6 @@ a {
.build-status a { .build-status a {
color: #d04729; color: #d04729;
} }
.repo a:focus,
.build-status a:focus {
outline: 1px dotted #d04729;
}
} }
.started { .started {
@ -453,10 +452,6 @@ a {
.build-status a { .build-status a {
color: #848032; color: #848032;
} }
.repo a:focus,
.build-status a:focus {
outline: 1px dotted #848032;
}
} }
.errored { .errored {
@ -471,10 +466,6 @@ a {
.build-status a { .build-status a {
color: #999999; color: #999999;
} }
.repo a:focus,
.build-status a:focus {
outline: 1px dotted #999999;
}
} }
.tile .build-information { .tile .build-information {