-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
f6ad4f07e6a1c8d99e55aa7acb01cf8ef1dfddd7 (HEAD -> update/list-block, Jackie6/update/list-block) Add id to BaseControl 212cab106044c4d7300d9441e48241b911db0bcb Fix unit test and e2e test 421a198bf58431c91b4c09d6ee45ba932762cb15 Refine the type definition of start and reversed 4172707059558ba9fc47d9557457e0b8e441f050 Fix typo 21ed1dbeb7881a9a5a6eea85fb3293e9d6ba0d5a Update CSS styles 925f1ab1ed073b31358a129c62abd56021e14c38 Update list type style and remove description ef0aca95cb88203ceff78b81473e37ad8fc22714 Allow the start to be NaN 495166d3fc14591ceb88597915a19e976b2ebbeb Change to check strict equality 216ca51cfacfc174ca00d9669b88b53eaa6d0356 Fix the accidental change of travis yml 8e31259624ece930c385bf9cb7a28046505c7aff Change local state to attributes 09199ff9516aab099e47ed6e61fd4e2fadfdb95b Add list type, start, reversed settings
- Loading branch information
Showing
9 changed files
with
140 additions
and
9 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
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
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,17 @@ | ||
ol { | ||
&.ol-type-is-1 { | ||
list-style: decimal; | ||
} | ||
&.ol-type-is-a { | ||
list-style: lower-alpha; | ||
} | ||
&.ol-type-is-A { | ||
list-style: upper-alpha; | ||
} | ||
&.ol-type-is-i { | ||
list-style: lower-roman; | ||
} | ||
&.ol-type-is-I { | ||
list-style: upper-roman; | ||
} | ||
} |
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