UX: Don't truncate category names in search panel
But keep truncating long category names in hamburger menu.
This commit is contained in:
parent
3cd601dcc9
commit
aca2697a42
|
@ -90,8 +90,14 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.hamburger-panel .panel-body {
|
.hamburger-panel {
|
||||||
|
.panel-body {
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.badge-category {
|
||||||
|
max-width: 100px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.menu-links.columned {
|
.menu-links.columned {
|
||||||
|
@ -179,10 +185,6 @@
|
||||||
font-size: $font-down-1;
|
font-size: $font-down-1;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.badge-category {
|
|
||||||
max-width: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.discourse-tags {
|
div.discourse-tags {
|
||||||
font-size: $font-down-1;
|
font-size: $font-down-1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue