Why did you remove the side blocks? Here I made them work again with this CSS I wrote. Let me know if it works or if it has any bugs, I’m just a beginner at this. Also, it’s necessary to activate ‘Readable line length’ in Settings > Editor > Display so that the side blocks are visible, otherwise they do not appear.
.app-container pre[class*="language-note-"] {
border: 0px solid;
}
/* Make the first line of note bold */
*[class*="language-note"]::first-line {
font-weight: bold;
}
.app-container pre[class*="language-note-"] code[class*="language-note-"] {
color: rgba(0, 0, 0, 0.781);
text-shadow: 0 0 2px rgba(0, 0, 0, 0);
background-color: transparent;
white-space: pre-wrap;
/* css-3 */
font-family: var(--default-font);
font-size: smaller;
}
/** ANKI Lable
----------------------------------------*/
.app-container pre.language-note-anki {
border-color: #016ea6;
background-color: #BCD4E6;
padding-top: 0.01em;
width: 92px;
height: 47px;
position: relative;
right: 35px;
max-width: calc(0.66 * var(--line-width));
min-width: 3em;
z-index: 2;
position: relative;
margin-left: -6em;
margin-top: -3em;
}
.app-container pre.language-note-anki:hover {
height: auto;
width: auto;
z-index: 3;
}
/** ANKI Inline
----------------------------------------*/
.app-container pre.language-note-anki-in {
border-color: #016ea6;
background-color: #BCD4E6; /* Pale aqua */
padding-top: 0.2em;
height: 7em;
padding-top: 0.2em;
}
.app-container pre.language-note-anki-in:hover {
height: auto;
width: auto;
}
My CSS looks like this in action: