Remember when Olay was Oil of Ulan?

"In 1999, P&G decided to unify the brand under a global name. Thus, Oil of Ulan and Ulay became Olay on a worldwide basis" - wikipedia

u/B15h73k — 19 days ago

CSS Styling the indented code blocks only?

I just spent half an hour fighting with Google AI trying to get it to write a css snippet to change the style of the indented text/code block. Nothing worked I'm now wondering if this can be done at all.

I only want to make the background transparent (remove any background color the theme has added) and adjust the text color.

Everything I tried change the fenced code block, which I don't want to change, and didn't change the tab-indented text.

Any suggestions?

Edit: Solution found thanks to /u/Dorkaplayz22:

.cm-s-obsidian span.cm-inline-code{
	color: #ff00ff !important; /* magenta to make it obvious.*/
	background-color: transparent !important;
}
reddit.com
u/B15h73k — 3 months ago