2025-12-08 22:17:49 +02:00
|
|
|
.breadcrumb-row {
|
|
|
|
|
position: relative;
|
2025-12-09 20:57:23 +02:00
|
|
|
min-height: 30px;
|
|
|
|
|
align-items: center;
|
2025-12-08 22:17:49 +02:00
|
|
|
|
2025-12-12 00:21:40 +02:00
|
|
|
.breadcrumb {
|
2025-12-08 22:17:49 +02:00
|
|
|
display: flex;
|
2025-12-12 00:21:40 +02:00
|
|
|
margin: 0;
|
2025-12-08 22:17:49 +02:00
|
|
|
align-items: center;
|
2025-12-12 00:21:40 +02:00
|
|
|
font-size: 0.9em;
|
|
|
|
|
gap: 0.25em;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
overflow: hidden;
|
2025-12-08 22:54:31 +02:00
|
|
|
|
2025-12-12 00:21:40 +02:00
|
|
|
> span,
|
|
|
|
|
> span > span {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2025-12-08 22:54:31 +02:00
|
|
|
min-width: 0;
|
2025-12-12 00:21:40 +02:00
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
max-width: 150px;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: block;
|
|
|
|
|
flex-shrink: 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> span:last-of-type a {
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown-item span,
|
|
|
|
|
.dropdown-item strong,
|
|
|
|
|
.breadcrumb-last-item {
|
2025-12-08 22:54:31 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
display: block;
|
2025-12-12 00:21:40 +02:00
|
|
|
max-width: 300px;
|
2025-12-08 22:54:31 +02:00
|
|
|
}
|
2025-12-08 22:17:49 +02:00
|
|
|
|
2025-12-12 00:21:40 +02:00
|
|
|
.breadcrumb-last-item {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: unset;
|
|
|
|
|
cursor: text;
|
|
|
|
|
}
|
2025-12-10 15:12:37 +02:00
|
|
|
|
2025-12-12 00:21:40 +02:00
|
|
|
input {
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
width: 200px;
|
|
|
|
|
}
|
2025-12-10 15:12:37 +02:00
|
|
|
}
|
2025-12-12 00:21:40 +02:00
|
|
|
}
|
2025-12-10 15:12:37 +02:00
|
|
|
|
2025-12-12 00:21:40 +02:00
|
|
|
body.experimental-feature-new-layout .breadcrumb-row {
|
|
|
|
|
padding-inline-end: 0;
|
2025-12-08 15:16:06 +02:00
|
|
|
}
|
2025-12-12 00:21:40 +02:00
|
|
|
|