-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix (list): Fix unorder list style. Closes: #13206
- Loading branch information
1 parent
ac98e2f
commit 97c7cc7
Showing
4 changed files
with
44 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
|
||
.ck-content ol { | ||
list-style-type: decimal; | ||
|
||
& ol { | ||
list-style-type: lower-latin; | ||
|
||
& ol { | ||
list-style-type: lower-roman; | ||
|
||
& ol { | ||
list-style-type: upper-latin; | ||
|
||
& ol { | ||
list-style-type: upper-roman; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
.ck-content ul { | ||
list-style-type: disc; | ||
|
||
& ul { | ||
list-style-type: circle; | ||
|
||
& ul { | ||
list-style-type: square; | ||
|
||
& ul { | ||
list-style-type: square; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters