bigchunga

joined 1 week ago
 

I understand that technically any widget that can manipulate .md files works and I have found some that do exactly that.
My problem is that as I use the official Obsidian Sync, I can't find my vault folder on Android and thus those tools don't work.

Does anyone know of a widget tool that works with Sync or how to point an existing tool to the Sync folder?

[–] bigchunga@feddit.online 16 points 5 days ago (8 children)

I have a seedbox and would totally be up to seed Wikipedia. Is there an easy way to automate that always the newest release gets seeded? I don't want to do it manually every day.

[–] bigchunga@feddit.online 3 points 6 days ago

Perfect, I'll give it a go. I'm no CSS expert and a quick search only returned the :disable thing. I guess I could also set the max-height to something like 1000px to limit extremely long ones.

 

Hi!

I have set 'Compact UI' in the settings to 'No - expand images' but in my home feed they are still cut off. Looking at the code I can see the following:

.post_teaser_image_preview a {  
    max-height: 575px;  
    overflow: hidden;  
}  

and disabling max-height solves my issue (seeing the whole image in the feed without clicking it).

How do I specify this in the custom CSS section in the settings so that the max-height is always disabled?
I tried

:disable {  
    .post_teaser_image_preview a {  
        max-height: 575px;  
    }  
}  

but it doesn't work.