maximise-active-pane-obsidian icon indicating copy to clipboard operation
maximise-active-pane-obsidian copied to clipboard

indicator for maximised mode

Open manogna4 opened this issue 4 years ago • 7 comments

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?

manogna4 avatar Dec 29 '20 08:12 manogna4

You can do this with the following CSS snippet:

.maximised {
  border: solid 2px red;
}

NeighNeighNeigh avatar Jan 31 '21 04:01 NeighNeighNeigh

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;
}

NeighNeighNeigh avatar Jan 31 '21 06:01 NeighNeighNeigh

excellent, thanks!

manogna4 avatar Feb 01 '21 02:02 manogna4

@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!

FelipeRearden avatar Jun 21 '21 14:06 FelipeRearden

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 avatar Jun 21 '21 15:06 NeighNeighNeigh

@NeighNeighNeigh

I have no words to thank you! It is exactly what I was looking for

Thank you very much! Have a nice day

FelipeRearden avatar Jun 21 '21 18:06 FelipeRearden

Perfect snippet @NeighNeighNeigh. Thank you :)

Ampa avatar Nov 27 '21 00:11 Ampa