Skip to content

Commit

Permalink
fixing the ol type
Browse files Browse the repository at this point in the history
  • Loading branch information
kristopolous committed Sep 13, 2023
1 parent be75ad5 commit ab63a54
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 2 deletions.
Binary file modified bootstra.386-latest-v2.zip
Binary file not shown.
12 changes: 12 additions & 0 deletions v2.3.1/assets/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -857,9 +857,21 @@ ul,
ol {
padding: 0;
margin: 0 0 20px 18px;
}

ul {
list-style: square;
}

ol {
margin-left: 21px;
list-style: decimal;
}

ol > li {
padding-left: 0;
}

ul ul,
ul ol,
ol ol,
Expand Down
12 changes: 12 additions & 0 deletions v2.3.1/bootstrap/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -857,9 +857,21 @@ ul,
ol {
padding: 0;
margin: 0 0 20px 18px;
}

ul {
list-style: square;
}

ol {
margin-left: 21px;
list-style: decimal;
}

ol > li {
padding-left: 0;
}

ul ul,
ul ol,
ol ol,
Expand Down
2 changes: 1 addition & 1 deletion v2.3.1/bootstrap/css/bootstrap.min.css

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions v2.3.1/docs/assets/css/bootstrap.css
Original file line number Diff line number Diff line change
Expand Up @@ -857,9 +857,21 @@ ul,
ol {
padding: 0;
margin: 0 0 20px 18px;
}

ul {
list-style: square;
}

ol {
margin-left: 21px;
list-style: decimal;
}

ol > li {
padding-left: 0;
}

ul ul,
ul ol,
ol ol,
Expand Down
11 changes: 10 additions & 1 deletion v2.3.1/less/type.less
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,19 @@ h4 small { font-size: @baseFontSize; }

// Unordered and Ordered lists
ul, ol {
list-style: square;
padding: 0;
margin: 0 0 @baseLineHeight (@baseLineWidth * 2)-2;
}
ul {
list-style: square;
}
ol {
list-style: decimal;
margin-left: 21px;
}
ol > li {
padding-left: 0;
}
ul ul,
ul ol,
ol ol,
Expand Down

0 comments on commit ab63a54

Please sign in to comment.