Update styles for list row hover
This commit is contained in:
parent
2377e2769d
commit
b24dbc2f50
|
@ -1,13 +1,11 @@
|
|||
.linked-block {
|
||||
cursor: pointer;
|
||||
transition: box-shadow $speed;
|
||||
&:hover,
|
||||
&:focus {
|
||||
position: relative;
|
||||
box-shadow: $box-link-hover-shadow;
|
||||
}
|
||||
&:focus,
|
||||
&:active {
|
||||
position: relative;
|
||||
box-shadow: $box-link-active-shadow;
|
||||
box-shadow: $box-link-hover-shadow, $box-shadow-middle;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
.column .menu-list a {
|
||||
.column .menu-list a {
|
||||
border-radius: 0;
|
||||
border-right: 0 solid transparent;
|
||||
font-weight: $font-weight-semibold;
|
||||
|
||||
&:hover,
|
||||
&.is-active {
|
||||
color: $menu-item-hover-background-color;
|
||||
background-color: $menu-item-active-color;
|
||||
color: $menu-item-active-color;
|
||||
background-color: $menu-item-active-background-color;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
{{#linked-block
|
||||
"vault.cluster.secrets.backend.list-root"
|
||||
backend.id
|
||||
class="box is-sideless is-marginless has-pointer"
|
||||
class="box is-marginless has-pointer"
|
||||
data-test-secret-backend-row=backend.id
|
||||
}}
|
||||
<div class="level is-mobile">
|
||||
|
|
Loading…
Reference in New Issue