open-vault/ui/app/styles/core/breadcrumb.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

57 lines
816 B
SCSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.breadcrumb {
-ms-user-select: text;
-webkit-user-select: text;
user-select: text;
height: 1.5rem;
margin: 0;
overflow-x: auto;
&:not(:last-child) {
margin: 0;
}
.is-sidebar + .column & {
@include until($tablet) {
margin-left: $size-2;
}
}
li {
& + li::before {
display: none;
}
&:first-child {
.sep {
margin-left: 0;
}
}
}
a {
line-height: 1;
padding: 0 $size-11 0 0;
text-decoration: none;
&:hover {
color: $blue;
}
}
.sep {
display: inline-block;
color: transparent;
margin: 0.15rem 0.4rem 0 0.5rem;
overflow: hidden;
width: 0.5rem;
&::before {
color: $blue;
content: '';
font-size: 1rem;
line-height: 1;
opacity: 0.33;
}
}
}