levito / tt-rss-feedly-theme

Feedly theme for Tiny Tiny RSS
MIT License
643 stars 76 forks source link

tt-rss 17.1 #36

Closed talklittle closed 7 years ago

talklittle commented 7 years ago

Some of the CSS selectors have changed. And the Special feeds now have their own container, so I updated the CSS for that.

I couldn't figure out how to change the large 30px margin on the left side of the feeds tree, where the collapse button used to be. Sidebar collapse functionality in tt-rss has been moved to a new plugin (toggle_sidebar), whose button appears in the main feed area, not in the feed tree area.

TheFiZi commented 7 years ago

Thank you. Works like a charm.

disconn3ct commented 7 years ago

Working here also, thanks!!

x86dev commented 7 years ago

Thanks for the patch!

thob commented 7 years ago

Working here too. Except I got an issue with long feed titles in the leftmost column. If too long I need to scroll horizontally to see the new items counter.

Takika commented 7 years ago

@thob: I have the same problem :(

talklittle commented 7 years ago

Anyone want to take a stab at fixing the problem reported by @thob ? It's probably related to the 30px padding problem I mentioned in the PR description. Seems like Dojo/Dijit are doing some layout in the JS, I can't figure out how to properly override it in CSS.

usr42 commented 7 years ago

This branch is also working for me. Thanks!

Takika commented 7 years ago

I found this commit in main TT-RSS git, but I don't know how to implement this in feedly: https://tt-rss.org/gitlab/fox/tt-rss/commit/24a82359b2a190e276f95d5cd53ed78940912d4e

I think enough to add this to the end of feedly.css:

body#ttrssMain #feedTree.dijitTree .dijitTreeContainer {
    max-width : 100%;
}

body#ttrssMain #feedTree.dijitTree .dijitTreeRow {
    overflow: hidden;
    text-overflow: ellipsis;
}
levito commented 7 years ago

Hi guys, I just moved and am about to start a new job. Right now, I don't have a development machine. I'll look into this in a couple of days, stay tuned! Sorry for letting you wait so long.

talklittle commented 7 years ago

@Takika Great find! I'll update the PR. Thanks.

usr42 commented 7 years ago

@talklittle The fix for the long titles is working for me. The counter is always visible. Thanks!