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

Unified Diff: static/scss/_utilities.scss

Issue 29599568: Issue 5969 - Add .unstyled utility class to website-defaults (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Created Nov. 6, 2017, 8:34 a.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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: static/scss/_utilities.scss
===================================================================
--- a/static/scss/_utilities.scss
+++ b/static/scss/_utilities.scss
@@ -88,16 +88,33 @@
clip: rect(0, 0, 0, 0);
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
border: 0;
}
+/* Unstyled elements
juliandoucette 2017/11/06 10:30:48 TOL: .unstyle or .unstyled?
ire 2017/11/06 14:32:57 *shrugs* I'll keep it as unstyled for now
+ ******************************************************************************/
+
+.unstyled,
juliandoucette 2017/11/06 10:30:48 TOL: .unstyled could apply to children too if you
ire 2017/11/06 14:32:57 Good idea. Done.
+.content .unstyled
+{
+ margin: 0;
+ padding: 0;
+ border: 0;
+ background: none;
+}
+
+ul.unstyled
+{
+ list-style: none;
+}
+
/* Backgrounds
******************************************************************************/
.bg-primary
{
color: $primary-light;
background-color: $primary-dark;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld