Skip to content

Commit

Permalink
darken default button borders
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Aug 2, 2012
1 parent 7aaf141 commit b979cd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/assets/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -3039,8 +3039,8 @@ button.close {
}

.btn {
border-color: #ccc;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
border-color: #c5c5c5;
border-color: rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.15) rgba(0, 0, 0, 0.25);
}

.btn-primary {
Expand Down
4 changes: 2 additions & 2 deletions less/buttons.less
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@
// -------------------------
.btn {
// reset here as of 2.0.3 due to Recess property order
border-color: #ccc;
border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);
border-color: #c5c5c5;
border-color: rgba(0,0,0,.15) rgba(0,0,0,.15) rgba(0,0,0,.25);
}
.btn-primary {
.buttonBackground(@btnPrimaryBackground, @btnPrimaryBackgroundHighlight);
Expand Down

1 comment on commit b979cd9

@jatitoam
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've noticed this lines ignore anything else you place on @btnBorder (they take priority). Should they be there?

Please sign in to comment.