Skip to content
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

Some articles have very small font size #17

Open
Trim opened this issue Mar 6, 2016 · 0 comments
Open

Some articles have very small font size #17

Trim opened this issue Mar 6, 2016 · 0 comments

Comments

@Trim
Copy link

Trim commented Mar 6, 2016

Hello,

Sometimes, it's hard to read some articles, because easyrss seems to force the display of the text to fit exactly the screen width.

The issue appears often when an article contains a very long URL, like on this page:
easyrss_screenshot

Is it possible to apply CSS properties before displaying the articles ?
If yes, it could be interesting to use the hint given in this French speaking (sorry) article.

The idea is to ask the browser to display ellipsis when text is too large for the screen, with this CSS rule:

.content a {
   display: inline-block; /* Needed to be able to apply ellipsis method */
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   vertical-align: bottom;
   max-width: 100%; /* Needed to rule that the text block can't be bigger than the parent container */
}

Do you think it is doable ?

It seems this issue come also when there's <pre> blocks:
easyrss_screenshot_codeblock

Here I think we can't use this solution, because we'll loose some important information. What do you think ?

Best regards,
Trim

PS: For issue with urls, I think it happens often with this RSS feed: https://linuxfr.org/tags/agenda_du_libre/public.atom

For issue with <pre> it could happen often with this one (depending on the content of user requests): https://linuxfr.org/forums/programmation-c--2.atom

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants