open-vault/ui/app/styles/components/tabs.scss
Angel Garbarino 8203865cfc
LinkTo remove tagName lint warning (#14344)
* removal stage 1

* remove unused roles file

* more changes and glimmerize toggle

* clean up

* fix

* fixes

* remove layout
2022-03-03 15:31:16 -07:00

84 lines
1.4 KiB
SCSS

.page-header + .tabs-container {
box-shadow: none;
}
.tabs {
box-shadow: inset 0 -1px 0 $grey-light;
ul {
border-color: transparent;
min-height: 3rem;
> a {
&:focus {
box-shadow: none;
}
&.is-active,
&.is-active .tab {
border-color: $blue;
color: $blue;
}
}
}
li {
&:focus {
box-shadow: none;
}
&.is-active a,
&.is-active .tab {
border-color: $blue;
color: $blue;
}
}
a,
.tab {
color: $grey;
font-weight: $font-weight-semibold;
text-decoration: none;
padding: $size-6 $size-8 $size-8;
border-bottom: 2px solid transparent;
transition: background-color $speed, border-color $speed;
&:hover,
&:active {
border-color: $grey-light;
}
&:hover {
background-color: $ui-gray-050;
}
}
.ember-basic-dropdown-trigger {
outline: none;
}
}
.nav-tab-link {
color: $grey;
font-weight: $font-weight-semibold;
text-decoration: none;
padding: $size-6 $size-8 $size-8;
border-bottom: 2px solid transparent;
transition: background-color $speed, border-color $speed;
&:hover,
&:active {
border-color: $grey-light;
}
&:hover {
background-color: $ui-gray-050;
}
&:focus {
box-shadow: none;
}
&.is-active {
border-color: $blue !important;
color: $blue !important;
}
}