chore(drilldown): make CSS more robust

closes #1529
This commit is contained in:
Martin Stamm 2021-11-15 13:30:31 +01:00 committed by fake-join[bot]
parent 5448f66706
commit 3c34158fd5
1 changed files with 9 additions and 5 deletions

View File

@ -13,21 +13,25 @@
position: absolute; position: absolute;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
align-items: center;
top: 10px; top: 10px;
left: 100px; left: 100px;
font-family: var(--bjs-font-family); font-family: var(--bjs-font-family);
font-size: 16px; font-size: 16px;
align-items: center; line-height: normal;
} }
.bjs-breadcrumbs li { .bjs-breadcrumbs li {
display: inline-flex; display: inline-flex;
color: var(--breadcrumbs-item-color);
cursor: pointer;
padding-bottom: 5px; padding-bottom: 5px;
} }
.bjs-breadcrumbs li:last-of-type { .bjs-breadcrumbs li a {
cursor: pointer;
color: var(--breadcrumbs-item-color);
}
.bjs-breadcrumbs li:last-of-type a {
color: inherit; color: inherit;
cursor: default; cursor: default;
} }
@ -36,7 +40,7 @@
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>'); 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; padding: 0 8px;
color: var(--breadcrumbs-arrow-color); color: var(--breadcrumbs-arrow-color);
height: 16px; height: 1em;
} }
.bjs-breadcrumbs .bpmnjs-crumb { .bjs-breadcrumbs .bpmnjs-crumb {