hydescarf / Obsidian-Theme-Mado-11

A simple theme that makes Obsidian feels a bit more like a modern app.
MIT License
75 stars 3 forks source link

Left sidebar is not working #3

Closed jsmm closed 2 years ago

jsmm commented 2 years ago

This is a very nice theme. Unfortunately, left sidebar is working for File Explorer, but not for Backlinks, Outgoing Links, Outline, Longform... If you need any further details, please let me know.

hydescarf commented 2 years ago

Thank you for trying out! Technically, the left sidebar in this theme is only intended for file explorers and custom markdown for extra buttons below. That being said, I did a simple fix to allow the other plugins and notes to work.

.mod-left-split .workspace-tabs .view-content div{
    height:100%;
}

to

.mod-left-split .workspace-tabs .view-content .markdown-preview-view.mado-side-button div{
    height:100%;
}

where the custom sidebar buttons now requires a cssclass: mado-side-button to allow other notes to dock on.

However, there won't be much custom styling for them (except a border to distinguish the tabs) タイトルなし

If that looks sufficient enough, then let me know and I'll push the update!

hydescarf commented 2 years ago

I've pushed the update at https://github.com/hydescarf/Obsidian-Theme-Mado-11/commit/08e58350b3986b969b6077ffa40c869b47cd19fd. Closing issue for now. Let me know if it still not working on your side!