-
-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multi line titles #589
Comments
In |
You can do this through a custom theme or a userstyle by removing I'd be open to simply removing |
Well yeah 😅, that's what I meant by
You can increase the height of |
You can use https://caniuse.com/?search=line-clamp to allow a set number of rows, while cropping overly long titles in a pretty way. Achtung, not standardized but works in every reasonable browser. Not exactly what was requested, but may be part of a solution that doesn't fuck up the interface. Example for two rows using modern.css: div.id2 {
height: 30px;
margin: auto;
overflow: hidden;
text-align: center;
text-overflow: ellipsis;
vertical-align: middle;
/* white-space: nowrap; */
width: 97%;
}
div.id2 a {
font-weight: bold;
text-decoration: none;
/* New stuff below */
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
} |
Thanks for this - I've updated the included themes (except Nadeko which I clamped to 1 line) to all display two lines cleanly. If one wants unlimited lines, it's now as easy as removing |
Currently titles are shown in one, maybe two lines, depending on the theme. It would be nice to have an option to show the whole title all the time, even if that would take 4 or even 5 lines. There's a script called EhxVisited that lets you do that for panda which looks like this:
The text was updated successfully, but these errors were encountered: