I usually have all notes set to hidden. But whenever I click on an item (to edit it), I want the corresponding note to be displayed in full, regardless of the current visibility setting.
This exceeds my limited CSS knowledge … could someone please help me?
I narrowed down the selectors to .is-hidingNote and .is-showingNoteFirstLine and added some comments to make the intention more clear for potential future readers:
/* Show note of currently SELECTED (highlighted) item, when notes are hidden. */
.Node-self.is-hidingNote:not(.is-contentRendered):not(.is-noteEmpty) > .Node-noteContainer
{
display: block !important;
}
/* Show note of currently SELECTED (highlighted) item, when notes are reduced to first line. */
.Node-self.is-showingNoteFirstLine:not(.is-contentRendered):not(.is-noteEmpty) > .Node-noteContainer .Node-renderedNote
{
display: block !important;
height: auto !important;
}