소스 검색

Coutoire: Prevent list item markers from overflowing parent wrappers.

Allan Cole 6 년 전
부모
커밋
75a8b3c320
2개의 변경된 파일6개의 추가작업 그리고 4개의 파일을 삭제
  1. 3 2
      coutoire/style-rtl.css
  2. 3 2
      coutoire/style.css

+ 3 - 2
coutoire/style-rtl.css

@@ -1603,16 +1603,17 @@ img {
 ul,
 ol {
 	font-family: "Work Sans", sans-serif;
+	list-style-position: inside;
 	margin: 0 16px 0 0;
 	padding: 0;
 }
 
 ul {
-	list-style: disc;
+	list-style-type: disc;
 }
 
 ol {
-	list-style: decimal;
+	list-style-type: decimal;
 }
 
 dt {

+ 3 - 2
coutoire/style.css

@@ -1603,16 +1603,17 @@ img {
 ul,
 ol {
 	font-family: "Work Sans", sans-serif;
+	list-style-position: inside;
 	margin: 0 0 0 16px;
 	padding: 0;
 }
 
 ul {
-	list-style: disc;
+	list-style-type: disc;
 }
 
 ol {
-	list-style: decimal;
+	list-style-type: decimal;
 }
 
 dt {