I have a large unordered list that has a maximum indentation of 12, but it looks like indentation levels of 3 or more use the same bullet type. (i.e. the first bullet level is a filled dot, the second is an open dot, and the third, fourth, fifth, etc. levels are all the same filled square.) Is there a way to fix this so the bullets for each indentation level are easier to distinguish after the third indentation level?
Hello @spaceman,
The list style is based on the default values of your browser.
If you wish to customize them, you can add some CSS on your wiki.
See an example below (More details about list-style-type).
ul ul ul ul {
list-style-type: "\1F44D";
}
See the Skin Extension Tutorial for a starting point on how to integrate CSS on you wiki.
Thanks for the suggestion here. I now see that XWiki is indeed relying on the browser defaults, and I was able to hard-code a few dozen levels of icons in a Skin Extension which should more than cover my use-case.