Are you asking about TinyMCE, i.e., when you "shift-click" and edit
plain text between cells?
William
That's a useful idea. Despite having implemented that feature, I
forgot about it. Anyway, if you are running your own Sage notebook
server, you can edit
the file
$HOME/.sage/notebook.css
and put something like:
div.text_cell {
font-size:30px;
font-family:arial;
}
in it. Then if you refresh your worksheets you'll see that text
between compute cells is all 30px Arial by default. This doesn't
impact how they *look* while editing in TinyMCE though, and this
change won't be seen by users if you share your worksheet with
somebody else.
But, depending on what you're doing, this might be useful. E.g., if
this is just for personal use or presentations.
William