Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: pages/utilities.html

Issue 29612659: Issue 6061 - website-defaults unstyled ul doesn't unstyle li (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Removed includes for the sake of consistency (will separate separately) Created Nov. 20, 2017, 3:27 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | static/scss/_utilities.scss » ('j') | static/scss/_utilities.scss » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pages/utilities.html
===================================================================
--- a/pages/utilities.html
+++ b/pages/utilities.html
@@ -25,8 +25,58 @@
<p class="text-left">Text aligned left</p>
<p class="text-start">Text aligned to the start of the container</p>
<p class="text-right">Text aligned right</p>
<p class="text-end">Text aligned to the end of the container</p>
+
+<h2 id="unstyled">Unstyled</h2>
+
+<h3 id="unstyled-lists">Unstyled lists</h3>
+
+<h4 id="unstyled-list-parent"><pre>.unstylied</pre> applied to parent</h4>
ire 2017/11/27 08:40:02 The <code> element is better for inline "code"
ire 2017/11/27 08:40:02 Type: "unstylied"
juliandoucette 2017/11/27 13:32:09 Good catch.
juliandoucette 2017/11/27 13:32:09 You mean typo?
ire 2017/11/27 18:07:55 Haha yes I did mean typo :P
+
+<div class="unstyled">
+ <ul>
+ <li>Level 1 item 1</li>
+ <li>
+ Level 1 item 2
+ <ul>
+ <li>Level 2 item 1</li>
+ <li>Level 2 item 2</li>
+ </ul>
+ </li>
+ <li>Level 1 item 3</li>
+ </ul>
+</div>
+
+<h4 id="unstyled-list-parent"><pre>.unstylied</pre> applied to list</h4>
+
+<ul class="unstyled">
+ <li>Level 1 item 1</li>
+ <li>
+ Level 1 item 2
+ <ul>
+ <li>Level 2 item 1</li>
+ <li>Level 2 item 2</li>
+ </ul>
+ </li>
+ <li>Level 1 item 3</li>
+</ul>
+
+<h4 id="unstyled-list-parent"><pre>.unstylied</pre> applied to list item</h4>
+
+<div>
+ <ul>
+ <li>Level 1 item 1</li>
+ <li class="unstyled">
+ Level 1 item 2
+ <ul>
+ <li>Level 2 item 1</li>
+ <li>Level 2 item 2</li>
+ </ul>
+ </li>
+ <li>Level 1 item 3</li>
+ </ul>
+</div>
« no previous file with comments | « no previous file | static/scss/_utilities.scss » ('j') | static/scss/_utilities.scss » ('J')

Powered by Google App Engine
This is Rietveld