mobile: remove breadcrumb ellipsis #211

This commit is contained in:
Sören Weber 2022-02-25 16:13:28 +01:00
parent 735dd21c52
commit cd31de704d
No known key found for this signature in database
GPG key ID: 07D17FF580AE7589

View file

@ -991,6 +991,11 @@ span.nav i{
white-space: nowrap;
width: calc(100% - 4*3.25rem);
}
@media only all and (max-width: 47.938em) {
#body #breadcrumbs {
text-overflow: unset;
}
}
#sidebar-toggle-span {
display: none;
@ -1012,6 +1017,14 @@ span.nav i{
display: inline;
padding: 0 .75rem;
}
@media only all and (max-width: 47.938em) {
#body #breadcrumbs .links {
/* we just hide the breadcrumbs instead of display: none;
this makes sure that the breadcrumbs are still usable for
accessability */
visibility: hidden;
}
}
#body #breadcrumbs .links * {
display: inline-block;