Skip to content

Commit

Permalink
Default button is white background
Browse files Browse the repository at this point in the history
  • Loading branch information
lepture committed Nov 12, 2015
1 parent ec51547 commit 446340e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions css/button.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.v-button, button.v-button, a.v-button {
display: inline-block;
background-color: var(--vui-green);
border: 1px solid transparent;
background-color: white;
border: 1px solid #ddd;
border-radius: 3px;
color: white;
color: #999;
padding: 6px 12px;
font: 600 normal 13px/24px sans-serif;
cursor: pointer;
Expand All @@ -29,10 +29,10 @@
.v-button[disabled]:active {
box-shadow: none;
}
.v-button.v-button--white {
background-color: white;
color: #999;
border-color: #ddd;
.v-button.v-button--primary {
background-color: var(--vui-green);
color: white;
border-color: transparent;
}
.v-button.v-button--block {
display: block;
Expand Down

0 comments on commit 446340e

Please sign in to comment.