mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-30 02:51:07 +02:00
* add new key_info to the list models for identity endpoints * add details to group and show pages * add parent groups to group tabs * render alias the same everywhere * space tab subnav more like the designs * fix tests * pull tabs in and remove padding
42 lines
715 B
SCSS
42 lines
715 B
SCSS
.sub-nav {
|
|
&.tabs {
|
|
box-shadow: inset 0 -1px 0 $grey-light;
|
|
|
|
ul {
|
|
border-color: transparent;
|
|
}
|
|
|
|
li {
|
|
&:focus {
|
|
box-shadow: none;
|
|
}
|
|
&.is-active a {
|
|
border-color: $blue;
|
|
color: $blue;
|
|
}
|
|
&:first-child a {
|
|
margin-left: $size-5;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: $grey-dark;
|
|
font-weight: $font-weight-semibold;
|
|
text-decoration: none;
|
|
padding: $size-6 0;
|
|
margin: 0 $size-4;
|
|
border-bottom: 2px solid transparent;
|
|
transition: border-color $speed;
|
|
|
|
&:hover,
|
|
&:active {
|
|
border-color: $grey-light;
|
|
}
|
|
}
|
|
|
|
.ember-basic-dropdown-trigger {
|
|
outline: none;
|
|
}
|
|
}
|
|
}
|