Closed jamespostsil closed 5 months ago
Could we please add these to custom.css? They will both help with usability of the Bloom Docs. The links show some examples of the before/after.
Docu-Notion defaults sub-ordered lists to i, ii, iii. It's easier/better to use a, b, c. SnagIt supports using a, b, c.
i, ii, iii
a, b, c
See Change sub-ordered lists to a, b, c.
CSS code:
/* Make sub-ordered lists use lowercase a, b, c instead of i, ii, iii. */ ol ol { list-style-type: lower-alpha; }
It's easier to see bold titles for toggles.
See Add bold to toggle titles.
/* Add bold text to the "title" of toggles" */ details summary { font-weight: var(--ifm-font-weight-bold); }
This is actually a bloom-docs issue. I've moved it to https://github.com/BloomBooks/bloom-docs/issues/9
Could we please add these to custom.css? They will both help with usability of the Bloom Docs. The links show some examples of the before/after.
Docu-Notion defaults sub-ordered lists to
i, ii, iii
. It's easier/better to usea, b, c
. SnagIt supports usinga, b, c
.See Change sub-ordered lists to a, b, c.
CSS code:
It's easier to see bold titles for toggles.
See Add bold to toggle titles.
CSS code: