/**
 * List styles that can be applied by class
 */
ul.editor.ls-disc {
    list-style-type: disc;
}
ul.editor.ls-circle {
    list-style-type: circle;
}
ul.editor.ls-square {
    list-style-type: square;
}

ol.editor.ls-decimal {
    list-style-type: decimal;
}
ol.editor.ls-lower-alpha {
    list-style-type: lower-alpha;
}
ol.editor.ls-upper-alpha {
    list-style-type: upper-alpha;
}
ol.editor.ls-lower-roman {
    list-style-type: lower-roman;
}
ol.editor.ls-upper-roman {
    list-style-type: upper-roman;
}