Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Break ols too, and add a clearer docs note #78

Merged
merged 1 commit into from
Mar 30, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/docs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@ body {
}

// Override Markdown styles to restore values from `_type.scss`
ul {
ul,
ol {
padding: 0;
margin-top: 0;
margin-bottom: 0;
Expand Down
4 changes: 3 additions & 1 deletion docs/type.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@ Wrap `<blockquote>` around any <abbr title="HyperText Markup Language">HTML</abb

## Lists

**Heads up!** The broken display of lists is **intentional** as Primer globally resets `<ul>`s and `<ol>`s for the time being. This will eventually be undone in the next major version.

### Unordered

A list of items in which the order does *not* explicitly matter. **The broken display is intended** as Primer resets `<ul>`s and `<ol>`s for the time being. This will eventually be undone in the next major version.
A list of items in which the order does *not* explicitly matter.

{% example html %}
<ul>
Expand Down