mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
fix indentation
This commit is contained in:
parent
6e6e24ad5c
commit
3c9cab54aa
1 changed files with 24 additions and 23 deletions
|
@ -92,34 +92,35 @@
|
|||
@include linear-gradient($btn-primary-background-color, $btn-primary-background-color-dark);
|
||||
@include box-shadow((inset 0 1px 0 rgba($white, 0.33), inset 0 -1px 2px rgba($black, 0.2)));
|
||||
}
|
||||
}
|
||||
|
||||
// Danger button
|
||||
// --------------------------------------------------
|
||||
// Danger button
|
||||
// --------------------------------------------------
|
||||
|
||||
.btn-danger {
|
||||
border: 1px solid $btn-danger-border-color;
|
||||
.btn-danger {
|
||||
border: 1px solid $btn-danger-border-color;
|
||||
color: $white;
|
||||
text-shadow: 0 1px 0 rgba($black, 0.2);
|
||||
font-weight: bold;
|
||||
@include linear-gradient($btn-danger-background-color, $btn-danger-background-color-dark);
|
||||
@include box-shadow((inset 0 1px 0 rgba($white, 0.33), inset 0 -1px 2px rgba($black, 0.2)));
|
||||
&[href] {
|
||||
color: $white;
|
||||
}
|
||||
&:hover,
|
||||
&:focus {
|
||||
@include linear-gradient($btn-danger-background-color, $btn-danger-background-color-light);
|
||||
@include box-shadow(inset 0 1px 0 rgba($white, 0.33));
|
||||
}
|
||||
&:active {
|
||||
@include linear-gradient($btn-danger-background-color-dark, $btn-danger-background-color);
|
||||
@include box-shadow(inset 0 1px 3px rgba($black, 0.2));
|
||||
}
|
||||
&[disabled] {
|
||||
text-shadow: 0 1px 0 rgba($black, 0.2);
|
||||
font-weight: bold;
|
||||
@include linear-gradient($btn-danger-background-color, $btn-danger-background-color-dark);
|
||||
@include box-shadow((inset 0 1px 0 rgba($white, 0.33), inset 0 -1px 2px rgba($black, 0.2)));
|
||||
&[href] {
|
||||
color: $white;
|
||||
}
|
||||
&:hover,
|
||||
&:focus {
|
||||
@include linear-gradient($btn-danger-background-color, $btn-danger-background-color-light);
|
||||
@include box-shadow(inset 0 1px 0 rgba($white, 0.33));
|
||||
}
|
||||
&:active {
|
||||
@include linear-gradient($btn-danger-background-color-dark, $btn-danger-background-color);
|
||||
@include box-shadow(inset 0 1px 3px rgba($black, 0.2));
|
||||
}
|
||||
&[disabled] {
|
||||
text-shadow: 0 1px 0 rgba($black, 0.2);
|
||||
@include linear-gradient($btn-danger-background-color, $btn-danger-background-color-dark);
|
||||
@include box-shadow((inset 0 1px 0 rgba($white, 0.33), inset 0 -1px 2px rgba($black, 0.2)));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Social buttons
|
||||
|
@ -180,4 +181,4 @@
|
|||
padding: 9px 18px;
|
||||
font-size: 16px;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue