Skip to content

Commit

Permalink
Add text shadow to story buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Malcolm Locke committed Sep 16, 2011
1 parent 68a748c commit bb15bec
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions app/stylesheets/screen.scss
Expand Up @@ -193,11 +193,6 @@ div.story-title abbr.initials {
cursor: move;
}

.state-actions input.estimate {
@include background(linear-gradient(top, $aluminium-2, $aluminium-2*0.75));
border-color: $aluminium-3;
}

span.estimate {
border: 1px solid #777;
padding: 0 0.2em;
Expand Down Expand Up @@ -279,17 +274,19 @@ span.estimate_8 {
}

.state-actions input {
padding: 0.1em;
margin: 0;
padding: 0 0.3em;
@include border-radius(3px);
border: 1px solid #333;
cursor: pointer;
font-size: small;
font-weight: bold;
color: white;
@include background(linear-gradient(top, $aluminium-3, $aluminium-3*0.75));
border-color: $aluminium-5;
text-shadow: $aluminium-5 0 1px 0;
}

.state-actions input.start {
@include background(linear-gradient(top, $aluminium-2, $aluminium-2*0.75));
border-color: $aluminium-3;
}
.state-actions input.finish {
@include background(linear-gradient(top, $sky-blue-1, $sky-blue-1*0.75));
border-color: $sky-blue-3;
Expand Down

0 comments on commit bb15bec

Please sign in to comment.