mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
44 lines
725 B
SCSS
44 lines
725 B
SCSS
button.components-button, a.components-button {
|
|
&.is-primary, &.is-secondary {
|
|
&:not(:disabled) {
|
|
background-color: $color-black;
|
|
}
|
|
|
|
&:disabled {
|
|
background-color: $color-gray-500;
|
|
color: $color-white;
|
|
}
|
|
|
|
border-radius: 2px;
|
|
padding: 14px 17px;
|
|
height: auto;
|
|
}
|
|
|
|
&.is-primary {
|
|
@include font(13, 20, 400);
|
|
color:$color-white;
|
|
}
|
|
|
|
&.is-secondary:not(:disabled) {
|
|
border-color:$color-blueberry;
|
|
background-color:$color-white;
|
|
color:$color-blueberry;
|
|
&:hover{
|
|
background-color:$color-white;
|
|
background:none;
|
|
}
|
|
}
|
|
|
|
&.is-tertiary {
|
|
color: $color-blueberry;
|
|
|
|
&:hover {
|
|
color: $color-gradient-dark;
|
|
}
|
|
|
|
&:focus:not(:disabled) {
|
|
border: none;
|
|
box-shadow: none;
|
|
}
|
|
}
|
|
}
|