2018-01-29 18:14:19 +01:00
|
|
|
|
@import "variables.scss";
|
|
|
|
|
|
|
|
|
|
.btn, #vault .footer button, .modal-footer button {
|
|
|
|
|
background-color: $button-backgound-color;
|
|
|
|
|
border-radius: $border-radius;
|
|
|
|
|
padding: 7px 15px;
|
|
|
|
|
border: 1px solid $button-border-color;
|
|
|
|
|
font-size: $font-size-base;
|
|
|
|
|
color: $button-color;
|
2018-01-31 20:19:21 +01:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-align: center;
|
2018-02-01 03:13:42 +01:00
|
|
|
|
cursor: pointer;
|
2018-01-29 18:14:19 +01:00
|
|
|
|
|
2018-01-31 05:34:45 +01:00
|
|
|
|
&:hover:not([disabled]), &:focus:not([disabled]) {
|
2018-01-29 18:14:19 +01:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
background-color: darken($button-backgound-color, 1.5%);
|
|
|
|
|
border-color: darken($button-border-color, 17%);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-31 05:34:45 +01:00
|
|
|
|
&:focus:not([disabled]) {
|
2018-01-29 18:14:19 +01:00
|
|
|
|
background-color: darken($button-backgound-color, 6%);
|
|
|
|
|
border-color: darken($button-border-color, 25%);
|
|
|
|
|
outline: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-31 05:34:45 +01:00
|
|
|
|
&[disabled] {
|
2018-01-31 18:52:12 +01:00
|
|
|
|
opacity: 0.65;
|
2018-01-31 05:34:45 +01:00
|
|
|
|
cursor: default;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-29 18:14:19 +01:00
|
|
|
|
&.primary {
|
|
|
|
|
color: $button-color-primary;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.danger {
|
|
|
|
|
color: $button-color-danger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.block {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2018-01-31 23:58:06 +01:00
|
|
|
|
|
|
|
|
|
&.link {
|
|
|
|
|
border: none !important;
|
|
|
|
|
background: none !important;
|
|
|
|
|
}
|
2018-01-29 18:14:19 +01:00
|
|
|
|
}
|