open-vault/ui/app/styles/components/tabs.scss
Matthew Irish 9f77077877
UI - build optimize (#5784)
* remove ember-cli-favicon

* link to png favicon in public folder

* skip some things in the build depending on the env

* update to ember-cli 3.5.0 for broccoli 2, and ember-fetch because it was incompatible with broccoli 2

* update some things the new sass module wasn't happy about

* turn off more things in dev to make the build faster

* bump to the latest ember-cli and move back to node-sass

* remove sass since we're using node-sass

* include polyfill in test as well
2018-11-26 12:47:56 -06:00

43 lines
700 B
SCSS

.tabs {
box-shadow: inset 0 -1px 0 $grey-light;
ul {
border-color: transparent;
min-height: 3rem;
}
li {
&:focus {
box-shadow: none;
}
&.is-active a,
&.is-active .tab {
border-color: $blue;
color: $blue;
}
&:first-child a,
&:first-child .tab {
margin-left: $size-5;
}
}
a,
.tab {
color: $grey-dark;
font-weight: $font-weight-semibold;
text-decoration: none;
padding: $size-6 $size-8 $size-8;
border-bottom: 2px solid transparent;
transition: border-color $speed;
&:hover,
&:active {
border-color: $grey-light;
}
}
.ember-basic-dropdown-trigger {
outline: none;
}
}