graymattr wrote:Previously, I had an edit to main.css to make the headline text slightly larger than the default (14px, IIRC). It looks like the structure of the main.css changed enough that it is not where it was. Would anyone mind pointing me the correct spot to make this edit?
First of all, thanks for your feedback!
The built-from-scratch update was completely re-written using
scss to make it easier to maintain - for me at least (;
There are two possibilities to change the headline font-size:
1. If you run tt-rss on a
linux server and have the sass-module installed, add font-size to the "css/partials/_articles.scss" file (line 137++) and run the "css/watch-main.scss.sh" shell script to apply the changes from the scss file to the css file itself. (Note, that you can abort the script Ctrl+C after it logged that the changes were applied).
Code: Select all
.titleWrap > a {
color: $clr-fnt-main;
font-weight: bold;
font-size: 14px;
}
2. If you're
not on a linux machine or not into changing the scss files, just append the font-size to the selector on line
1451++ of the "css/main.css" file:
Code: Select all
.claro #headlines-frame .hl .titleWrap > a,
.claro #headlines-frame .hl .titleWrap > .hlContent > a,
.claro #headlines-frame .hl .hlTitle > a,
(...) {
text-decoration: none;
color: #333333;
font-size: 14px;
}
graymattr wrote:It would be awesome if there was a setting in the web GUI for simple font size tweaks... I know that's probably more trouble than its worth, but I thought I'd throw it out there.

Love the theme!!
Unfortunately that's not possible for pure theming. CSS theming just changes the look and feel of tt-rss but we're not able to change the behaviour, remove or even add features. Well, we can remove them by hiding the option itself (; Using scss I could implement an additional scss file with different setting - like container width font-size or styles, etc. - but in that case you have to be able to "compile" the scss files.