mirror of https://github.com/hashicorp/consul
41 lines
791 B
SCSS
41 lines
791 B
SCSS
|
%tab-nav {
|
||
|
border-top: $decor-border-200;
|
||
|
border-color: $gray-200;
|
||
|
}
|
||
|
%tab-nav ul {
|
||
|
list-style-type: none;
|
||
|
}
|
||
|
%tab-nav label {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
%tab-button {
|
||
|
white-space: nowrap;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
%tab-nav {
|
||
|
/* %frame-transparent-something */
|
||
|
border-bottom: $decor-border-100;
|
||
|
}
|
||
|
%tab-nav {
|
||
|
/* %frame-transparent-something */
|
||
|
border-color: $gray-200;
|
||
|
}
|
||
|
%with-animated-tab-selection ul::after,
|
||
|
%tab-button {
|
||
|
border-bottom: $decor-border-300;
|
||
|
}
|
||
|
%tab-button {
|
||
|
@extend %with-transition-500;
|
||
|
transition-property: background-color;
|
||
|
border-color: $transparent;
|
||
|
color: $gray-500;
|
||
|
}
|
||
|
%tab-button-intent,
|
||
|
%tab-button-active {
|
||
|
/* %frame-gray-something */
|
||
|
background-color: $gray-100;
|
||
|
}
|
||
|
%tab-nav.animatable .selected a {
|
||
|
border-color: $transparent !important;
|
||
|
}
|