9f77077877
* 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
57 lines
816 B
SCSS
57 lines
816 B
SCSS
.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;
|
||
}
|
||
}
|
||
}
|