Skip to content

Commit 06e66b6

Browse files
fix: <ul> and <ol> on 3 columns content
1 parent 71a4493 commit 06e66b6

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@
55
You can take a look with this [DEMO](https://ticlekiwi.github.io/API-Documentation-HTML-Template/). \
66
Or this other [One Content Column DEMO](https://ticlekiwi.github.io/API-Documentation-HTML-Template/one-content-column).
77

8-
## Current version : 1.0.2
8+
## Current version : 1.0.3
99

1010

1111
### What's new in the latest version :
1212

13-
- One Content Column version added.
14-
- Fix list ```<ul>``` and ```<ol>```.
15-
- Local jquery.js file removed to use cdnjs.
13+
- Fix list on 3 content columns `<ul>` and `<ol>`.
1614

1715
## Credits
1816

css/style.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,9 @@ pre{
199199
.content p,
200200
.content table,
201201
.content aside,
202-
.content dl {
202+
.content dl,
203+
.content ul,
204+
.content ol {
203205
margin-right: 50%;
204206
padding: 0 28px;
205207
box-sizing: border-box;
@@ -302,7 +304,9 @@ body.one-content-column-version .content table,
302304
body.one-content-column-version .content ul,
303305
body.one-content-column-version .content ol,
304306
body.one-content-column-version .content aside,
305-
body.one-content-column-version .content dl {
307+
body.one-content-column-version .content dl,
308+
body.one-content-column-version .content ul,
309+
body.one-content-column-version .content ol {
306310
margin-right: 0;
307311
max-width: 100%;
308312
}
@@ -335,7 +339,7 @@ body.one-content-column-version .content thead {
335339
----------------------------------------------------------------------------------------*/
336340

337341
@media only screen and (max-width:980px){
338-
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6, .content p, .content table, .content ul, .content ol, .content aside, .content dl {
342+
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6, .content p, .content table, .content ul, .content ol, .content aside, .content dl, .content ul, .content ol {
339343
margin-right: 0;
340344
}
341345
.content-code{

0 commit comments

Comments
 (0)