Polishing

This commit is contained in:
Karol Orzeł 2015-01-23 14:03:30 +01:00
parent 6c527b241e
commit 290dda2c24
3 changed files with 15 additions and 18 deletions

View File

@ -589,24 +589,22 @@ td {
border: 1px solid #d8d8d8; }
.button {
background: #fff;
color: #87b672;
border: 1px solid #87b672;
border-radius: 3px; }
background: #87b672;
color: #fff;
border: 1px solid #87b672; }
.button:hover {
background: #87b672;
color: #fff; }
background: #fff;
color: #87b672; }
.button:active {
box-shadow: 0 1px 0 #679b50; }
.button-secondary {
background: #fff;
color: #F6635E;
border: 1px solid #F6635E;
border-radius: 3px; }
background: #F6635E;
color: #fff;
border: 1px solid #F6635E; }
.button-secondary:hover {
background: #F6635E;
color: #fff; }
background: #fff;
color: #F6635E; }
.button-secondary:active {
box-shadow: 0 1px 0 #f32b24; }

File diff suppressed because one or more lines are too long

View File

@ -10,13 +10,12 @@
}
@mixin button-color($color) {
background: $white;
color: $color;
background: $color;
color: $white;
border: 1px solid $color;
border-radius: 3px;
&:hover {
background: $color;
color: $white;
background: $white;
color: $color;
}
&:active {
box-shadow: 0 1px 0 darken($color, 12%);