Merge pull request #218 from Safelite/CSR-266-button-style-updates

CSR-266 refactor buttons per Rachel Figma update.
This commit is contained in:
bmauger 2022-02-16 08:11:24 -05:00 committed by GitHub
commit fb19cf9088
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
<template>
<button
:aria-disabled="isDisabled"
class="btn d-flex align-items-center py-3 px-2"
class="btn d-flex align-items-center py-3 px-2 delay"
:class="[isPrimary ? 'btn-primary' : 'btn-secondary',isFloat ? 'float-end' : '', isLoaderDisplayed ? 'has-loader' : '']"
@click="clicked()"
>
@ -51,12 +51,10 @@ export default {
.btn {
&.btn-primary {
position: relative;
background: $blue-700;
@include blue-gradient;
background: linear-gradient(270deg, $blue-500 0%, $blue-700 100%);
border: none;
border-radius: $border-radius-lg;
color: $white;
transition: all 150ms linear;
justify-content: center;
&:hover {
background: linear-gradient(
@ -71,7 +69,11 @@ export default {
outline: none;
box-shadow: 0 0 0 3px, 0 0 0 5.5px $blue-700;
color: $white;
@include blue-gradient;
background: linear-gradient(
270deg,
rgba(6, 87, 124, 1) 0%,
rgba(6, 87, 124, 1) 100%
);
}
&:disabled {
background: $gray-100 !important;
@ -89,6 +91,9 @@ export default {
color: $white;
background: $blue-700;
}
&.delay {// fixes flicker while transitioning between states
transition: background 0s 0s ease-in-out;
}
}
&.btn-secondary {
position: relative;
@ -101,18 +106,13 @@ export default {
color: $white;
@include blue-gradient;
}
&:active {
@include blue-gradient;
color: $white;
}
&:focus, // Mouse, touch, stylus focus
&:focus-visible {
// Keyboard focus for accessibility
outline: none;
box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $blue-700;
color: $blue;
//@include blue-gradient;
background: $white;
color: $white;
@include blue-gradient;
}
&:disabled {
background: transparent;
@ -125,6 +125,9 @@ export default {
color: $white;
@include blue-gradient;
}
&.delay {// fixes flicker while transitioning between states
transition: background 0s 0s ease-in-out;
}
}
}
</style>