button styled

This commit is contained in:
Dmitriy Zaporozhets 2012-03-15 23:44:04 +02:00
parent 7b75f3cfd3
commit b2c13bdd77
2 changed files with 13 additions and 1 deletions

View file

@ -11,6 +11,18 @@ a {
}
}
.btn {
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f1f1f1), color-stop(25%, #f1f1f1), to(#e6e6e6));
background-image: -webkit-linear-gradient(#f1f1f1, #f1f1f1 25%, #e6e6e6);
background-image: -moz-linear-gradient(top, #f1f1f1, #f1f1f1 25%, #e6e6e6);
background-image: -ms-linear-gradient(#f1f1f1, #f1f1f1 25%, #e6e6e6);
background-image: -o-linear-gradient(#f1f1f1, #f1f1f1 25%, #e6e6e6);
background-image: linear-gradient(#f1f1f1, #f1f1f1 25%, #e6e6e6);
&:hover {
}
}
a:focus {
outline: none;
}

View file

@ -12,7 +12,7 @@
= @commit.committer_name
%small= @commit.committed_date.stamp("Aug 21, 2011 9:23pm")
%hr
%br
%pre.commit_message
= commit_msg_with_link_to_issues(@project, @commit.safe_message)
.clear