maximise-active-pane-obsidian
maximise-active-pane-obsidian copied to clipboard
indicator for maximised mode
its difficult to figure out if the current note is maximized or if it is the only note open. Can we have some kind of indicator for that?
You can do this with the following CSS snippet:
.maximised {
border: solid 2px red;
}
Slight modification, this now works nicer with the active pane indicator
.maximised .view-content{
border: solid 2px var(--interactive-accent);
}
.maximised .view-header {
border-bottom: 0px solid var(--interactive-accent) !important;
}
excellent, thanks!
@NeighNeighNeigh
Thanks for your snippets. I really help me a lot.
Do you have a CSS snippet to change the font-size
of the text (all text + headers) when maximize is ON?
I wanna increase the font size when I'm using maximise.
Thanks for your help!
Do you have a CSS snippet to change the
font-size
of the text (all text + headers) when maximize is ON? I wanna increase the font size when I'm using maximise.
You could change the snippet to the following, which includes a zoom value to the maximised content:
.maximised .view-content{
border: solid 2px var(--interactive-accent);
Zoom: 150%;
}
.maximised .view-header {
border-bottom: 0px solid var(--interactive-accent) !important;
}
@NeighNeighNeigh
I have no words to thank you! It is exactly what I was looking for
Thank you very much! Have a nice day
Perfect snippet @NeighNeighNeigh. Thank you :)