Skip to content

Commit

Permalink
Fixed a type bug in buttons options
Browse files Browse the repository at this point in the history
  • Loading branch information
alexwolfe committed Nov 4, 2013
1 parent 9421fa6 commit 293bbb2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.sass-cache/
.DS_Store
*.psd
*.psd
node_modules
4 changes: 2 additions & 2 deletions css/buttons.css
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
padding: 0px 25.6px;
font-weight: 300;
font-size: 14px;
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
color: #666666;
text-shadow: 0 1px 1px white;
margin: 0;
Expand Down Expand Up @@ -210,7 +210,7 @@ button.button:disabled {
-moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
background: #EEE;
border: 1px solid #DDD;
border: 1px solid #dddddd;
text-shadow: 0 1px 1px white;
color: #CCC;
cursor: default;
Expand Down
2 changes: 1 addition & 1 deletion scss/partials/_options.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $height: 32px;
$font-color: #666;
$font-size: 14px;
$font-weight: 300;
$font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
$font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;


//////////////////////////////////////////////////////////
Expand Down

0 comments on commit 293bbb2

Please sign in to comment.