Possible to limit search preview size? #5075
-
I have an issue where the search preview includes entire code blocks if the searched word is present in them. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
More compact and focused search previews are on the roadmap and tracked in #4278. As a temporary measure, you can limit the height of the search result with the following CSS as mentioned in #4714 (comment): .md-search-result .md-typeset {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
} This effectively reverts to the pre-9.0.0 behavior. |
Beta Was this translation helpful? Give feedback.
More compact and focused search previews are on the roadmap and tracked in #4278. As a temporary measure, you can limit the height of the search result with the following CSS as mentioned in #4714 (comment):
This effectively reverts to the pre-9.0.0 behavior.