mirror of https://github.com/Fabio286/antares.git
perf(UI): improved focus visibility for buttons
This commit is contained in:
parent
20f5497034
commit
d2eb31a63d
|
@ -317,6 +317,11 @@ onBeforeUnmount(() => {
|
|||
cursor: pointer;
|
||||
transition: all .2s;
|
||||
border-radius: $border-radius;
|
||||
outline: none;
|
||||
|
||||
&:focus {
|
||||
box-shadow: 0 0 3px .1rem rgba($primary-color, 80%);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
.all-connections-buttons {
|
||||
|
|
|
@ -356,6 +356,16 @@ option:checked {
|
|||
.accordion-body {
|
||||
max-height: 5000rem !important;
|
||||
}
|
||||
.btn {
|
||||
&:focus{
|
||||
box-shadow: 0 0 3px 1px rgba($primary-color, 90%);
|
||||
}
|
||||
|
||||
&.btn-success:focus {
|
||||
border-color: $primary-color;
|
||||
box-shadow: 0 0 3px 1px rgba($primary-color, 90%);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-group {
|
||||
flex-wrap: nowrap;
|
||||
|
|
Loading…
Reference in New Issue