From 652a6520d4e746140d54495c82864b2f4e4121e9 Mon Sep 17 00:00:00 2001 From: Ron Lucke Date: Thu, 24 Apr 2025 15:08:41 +0200 Subject: Orderd-List default des CKE weicht von dem in Stud.IP ab Closes #5558 Merge request studip/studip!4179 --- resources/assets/stylesheets/scss/lists.scss | 32 +++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/resources/assets/stylesheets/scss/lists.scss b/resources/assets/stylesheets/scss/lists.scss index 71df12c..b00a511 100644 --- a/resources/assets/stylesheets/scss/lists.scss +++ b/resources/assets/stylesheets/scss/lists.scss @@ -86,14 +86,36 @@ dl { } // reset the visualization of different levels of unordered lists -.formatted-content ul { - list-style-type: disc; - +.formatted-content { ul { - list-style-type: circle; + list-style-type: disc; ul { - list-style-type: square; + list-style-type: circle; + + ul { + list-style-type: square; + } + } + } + + ol { + list-style-type: decimal; + + ol { + list-style-type: lower-alpha; + + ol { + list-style-type: lower-roman; + + ol { + list-style-type: upper-alpha; + + ol { + list-style-type: upper-roman; + } + } + } } } } -- cgit v1.0