Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make travis buttons fill the cell and change on hover
  • Loading branch information
zoffixznet committed Nov 7, 2015
1 parent 3dae26d commit cd6a3bc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions web/assets/css/style.css
Expand Up @@ -186,33 +186,53 @@ tr:nth-child(odd) td {
}

#module_list tbody .travis {
padding: 0;
background: #a2a2a2;
background: -ms-linear-gradient(top, #a2a2a2 0%,#909090 100%);
background: linear-gradient(to bottom, #a2a2a2 0%,#909090 100%);
}

#module_list tbody .travis:hover {
background: #a2a2a2;
}

#module_list tbody .travis-passing {
background: #50ca22;
background: -ms-linear-gradient(top, #50ca22 0%,#3eb810 100%);
background: linear-gradient(to bottom, #50ca22 0%,#3eb810 100%);
}

#module_list tbody .travis-passing:hover {
background: #50ca22;
}

#module_list tbody .travis-pending {
background: #dbb428;
background: -ms-linear-gradient(top, #dbb428 0%,#c9a216 100%);
background: linear-gradient(to bottom, #dbb428 0%,#c9a216 100%);
}

#module_list tbody .travis-pending:hover {
background: #dbb428;
}

#module_list tbody .travis-failing {
background: #dc6750;
background: -ms-linear-gradient(top, #dc6750 0%,#ca553e 100%);
background: linear-gradient(to bottom, #dc6750 0%,#ca553e 100%);
}

#module_list tbody .travis-failing:hover {
background: #dc6750;
}

#module_list tbody .travis a {
text-decoration: none;
color: #fff;
text-shadow: 1px 1px #333;
display: block;
height: 32px;
line-height: 32px;
}

#module_list tbody .travis- {
Expand Down

0 comments on commit cd6a3bc

Please sign in to comment.