Skip to content

Commit

Permalink
[copycopter#23] Fix button style
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Croak committed Mar 16, 2012
1 parent 0462377 commit 00574d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions public/stylesheets/application.css
Expand Up @@ -621,7 +621,7 @@ a:hover {
color: #53913a;
text-decoration: underline; }

input[type='submit'], button, .button {
input[type='submit'], button {
-webkit-box-shadow: inset 0 1px 0 #c4e1b7;
-moz-box-shadow: inset 0 1px 0 #c4e1b7;
-ms-box-shadow: inset 0 1px 0 #c4e1b7;
Expand All @@ -647,9 +647,9 @@ input[type='submit'], button, .button {
font: bold 16px "PT Sans", "Helvetica neue", Helvetica, Arial, sans-serif;
padding: 5px 15px;
text-shadow: 0 -1px 0 #3f832a; }
input[type='submit']:link, input[type='submit']:visited, button:link, button:visited, .button:link, .button:visited {
input[type='submit']:link, input[type='submit']:visited, button:link, button:visited {
color: #fff; }
input[type='submit']:hover, button:hover, .button:hover {
input[type='submit']:hover, button:hover {
background-color: #75ad5c;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #75ad5c), color-stop(100%, #64a14b));
background-image: -webkit-linear-gradient(top, #75ad5c, #64a14b);
Expand Down
2 changes: 1 addition & 1 deletion public/stylesheets/sass/_base.scss
Expand Up @@ -93,7 +93,7 @@ a:hover {
text-decoration: underline;
}

input[type='submit'], button, .button {
input[type='submit'], button {
@include box-shadow(inset 0 1px 0 #c4e1b7);
@include linear-gradient(#88c26f, #73b05a);
@include border-radius(5px);
Expand Down

0 comments on commit 00574d5

Please sign in to comment.