CSR-198 add loader to primary and secondary buttons.
Update alert button size and position.
This commit is contained in:
parent
e8c285450a
commit
dd4ca61d86
2 changed files with 8 additions and 0 deletions
|
|
@ -16,6 +16,8 @@
|
||||||
&:focus-visible { // Keyboard focus for accessibility
|
&:focus-visible { // Keyboard focus for accessibility
|
||||||
outline: none;
|
outline: none;
|
||||||
box-shadow: 0 0 0 3px, 0 0 0 5.5px $blue-700;
|
box-shadow: 0 0 0 3px, 0 0 0 5.5px $blue-700;
|
||||||
|
color: $white;
|
||||||
|
@include blue-gradient;
|
||||||
}
|
}
|
||||||
&:disabled {
|
&:disabled {
|
||||||
background: $gray-100 !important;
|
background: $gray-100 !important;
|
||||||
|
|
@ -42,6 +44,8 @@
|
||||||
&:focus-visible { // Keyboard focus for accessibility
|
&:focus-visible { // Keyboard focus for accessibility
|
||||||
outline: none;
|
outline: none;
|
||||||
box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $blue-700;
|
box-shadow: 0 0 0 3px $white, 0 0 0 5.5px $blue-700;
|
||||||
|
color: $white;
|
||||||
|
@include blue-gradient;
|
||||||
}
|
}
|
||||||
&:disabled {
|
&:disabled {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
|
|
||||||
|
|
@ -39,10 +39,14 @@ export default {
|
||||||
.btn-close {
|
.btn-close {
|
||||||
background: none;
|
background: none;
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
width: .75rem;
|
||||||
|
height: .75rem;
|
||||||
}
|
}
|
||||||
&.alert-dismissible {
|
&.alert-dismissible {
|
||||||
button {
|
button {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
top: 2px;
|
||||||
|
right: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&.alert-info {
|
&.alert-info {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue