2021-10-18 08:28:36 +00:00
|
|
|
.bjs-container {
|
|
|
|
--bjs-font-family: Arial, sans-serif;
|
|
|
|
|
2021-11-23 14:06:19 +00:00
|
|
|
--color-grey-225-10-15: hsl(225, 10%, 15%);
|
|
|
|
--color-grey-225-10-35: hsl(225, 10%, 35%);
|
|
|
|
--color-grey-225-10-55: hsl(225, 10%, 55%);
|
|
|
|
--color-grey-225-10-75: hsl(225, 10%, 75%);
|
|
|
|
--color-grey-225-10-80: hsl(225, 10%, 80%);
|
|
|
|
--color-grey-225-10-85: hsl(225, 10%, 85%);
|
|
|
|
--color-grey-225-10-90: hsl(225, 10%, 90%);
|
|
|
|
--color-grey-225-10-95: hsl(225, 10%, 95%);
|
|
|
|
--color-grey-225-10-97: hsl(225, 10%, 97%);
|
|
|
|
|
|
|
|
--color-blue-205-100-45: hsl(205, 100%, 45%);
|
|
|
|
--color-blue-205-100-45-opacity-30: hsla(205, 100%, 45%, 30%);
|
|
|
|
--color-blue-205-100-50: hsl(205, 100%, 50%);
|
|
|
|
--color-blue-205-100-95: hsl(205, 100%, 95%);
|
|
|
|
|
|
|
|
--color-green-150-86-44: hsl(150, 86%, 44%);
|
|
|
|
|
|
|
|
--color-red-360-100-40: hsl(360, 100%, 40%);
|
|
|
|
--color-red-360-100-45: hsl(360, 100%, 45%);
|
|
|
|
--color-red-360-100-92: hsl(360, 100%, 92%);
|
|
|
|
--color-red-360-100-97: hsl(360, 100%, 97%);
|
|
|
|
|
|
|
|
--color-white: hsl(0, 0%, 100%);
|
|
|
|
--color-black: hsl(0, 0%, 0%);
|
|
|
|
--color-black-opacity-05: hsla(0, 0%, 0%, 5%);
|
|
|
|
--color-black-opacity-10: hsla(0, 0%, 0%, 10%);
|
|
|
|
|
|
|
|
--breadcrumbs-font-family: var(--bjs-font-family);
|
2021-11-02 14:55:38 +00:00
|
|
|
--breadcrumbs-item-color: var(--color-blue-205-100-50);
|
|
|
|
--breadcrumbs-arrow-color: var(--color-black);
|
|
|
|
--drilldown-fill-color: var(--color-white);
|
|
|
|
--drilldown-background-color: var(--color-blue-205-100-50);
|
|
|
|
}
|
|
|
|
|
2021-10-18 08:28:36 +00:00
|
|
|
.bjs-breadcrumbs {
|
|
|
|
position: absolute;
|
2021-11-17 09:25:56 +00:00
|
|
|
display: none;
|
2021-11-05 08:29:55 +00:00
|
|
|
flex-wrap: wrap;
|
2021-11-15 12:30:31 +00:00
|
|
|
align-items: center;
|
2021-10-18 08:28:36 +00:00
|
|
|
top: 10px;
|
2021-11-23 14:06:19 +00:00
|
|
|
font-family: var(--breadcrumbs-font-family);
|
2021-11-04 11:38:26 +00:00
|
|
|
font-size: 16px;
|
2021-11-15 12:30:31 +00:00
|
|
|
line-height: normal;
|
2021-10-18 08:28:36 +00:00
|
|
|
}
|
|
|
|
|
2021-11-17 09:25:56 +00:00
|
|
|
.bjs-breadcrumbs-shown .bjs-breadcrumbs {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.djs-palette-shown .bjs-breadcrumbs {
|
|
|
|
left: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.djs-palette-shown.djs-palette-two-column .bjs-breadcrumbs {
|
|
|
|
left: 100px;
|
|
|
|
}
|
|
|
|
|
2021-10-18 08:28:36 +00:00
|
|
|
.bjs-breadcrumbs li {
|
2021-11-04 11:38:26 +00:00
|
|
|
display: inline-flex;
|
2021-11-05 08:29:55 +00:00
|
|
|
padding-bottom: 5px;
|
2021-10-18 08:28:36 +00:00
|
|
|
}
|
|
|
|
|
2021-11-15 12:30:31 +00:00
|
|
|
.bjs-breadcrumbs li a {
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--breadcrumbs-item-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.bjs-breadcrumbs li:last-of-type a {
|
2021-10-18 08:28:36 +00:00
|
|
|
color: inherit;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bjs-breadcrumbs li:not(:first-child)::before {
|
|
|
|
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 24 24"><path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" /><path d="M0 0h24v24H0z" fill="none" /></svg>');
|
|
|
|
padding: 0 8px;
|
2021-11-02 14:55:38 +00:00
|
|
|
color: var(--breadcrumbs-arrow-color);
|
2021-11-15 12:30:31 +00:00
|
|
|
height: 1em;
|
2021-10-18 08:28:36 +00:00
|
|
|
}
|
|
|
|
|
2022-02-03 16:16:04 +00:00
|
|
|
.bjs-breadcrumbs .bjs-crumb {
|
2021-10-18 08:28:36 +00:00
|
|
|
display: inline-block;
|
|
|
|
max-width: 200px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bjs-drilldown {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
|
|
|
|
padding: 0px;
|
|
|
|
margin-left: -20px;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
border: none;
|
|
|
|
border-radius: 2px;
|
|
|
|
outline: none;
|
|
|
|
|
2021-11-02 14:55:38 +00:00
|
|
|
fill: var(--drilldown-fill-color);
|
|
|
|
background-color: var(--drilldown-background-color);
|
2021-10-18 08:28:36 +00:00
|
|
|
}
|
2021-12-15 09:09:57 +00:00
|
|
|
|
|
|
|
.bjs-drilldown-empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selected .bjs-drilldown-empty {
|
|
|
|
display: inherit;
|
|
|
|
}
|