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

Side by Side Diff: static/scss/_utilities.scss

Issue 29626562: Issue 6061 - Added important to utilities (Closed) Base URL: https://hg.adblockplus.org/website-defaults
Patch Set: Addressed comment Created Dec. 4, 2017, 1:12 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // This file is part of website-defaults 1 // This file is part of website-defaults
2 // Copyright (C) 2016-present eyeo GmbH 2 // Copyright (C) 2016-present eyeo GmbH
3 // 3 //
4 // website-defaults is free software: you can redistribute it and/or 4 // website-defaults is free software: you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License as published by 5 // modify it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or 6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version. 7 // (at your option) any later version.
8 // 8 //
9 // website-defaults is distributed in the hope that it will be useful, 9 // website-defaults is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 height: 1px; 98 height: 1px;
99 margin: -1px; 99 margin: -1px;
100 padding: 0; 100 padding: 0;
101 border: 0; 101 border: 0;
102 } 102 }
103 103
104 /* Unstyled elements 104 /* Unstyled elements
105 ******************************************************************************/ 105 ******************************************************************************/
106 106
107 .unstyled, 107 .unstyled,
108 .unstyled *, 108 .unstyled *
109 .content .unstyled
110 { 109 {
111 margin: 0; 110 margin: 0 !important;
112 padding: 0; 111 padding: 0 !important;
113 border: 0; 112 border: 0 !important;
114 background: none; 113 background: none !important;
115 } 114 list-style: none !important;
ire 2017/12/05 09:30:13 NIT: Is there a reason you removed the `list-style
116
117 ul.unstyled
118 {
119 list-style: none;
120 } 115 }
121 116
122 /* Backgrounds 117 /* Backgrounds
123 ******************************************************************************/ 118 ******************************************************************************/
124 119
125 .bg-primary 120 .bg-primary
126 { 121 {
127 color: $primary-light; 122 color: $primary-light;
128 background-color: $primary-dark; 123 background-color: $primary-dark;
129 } 124 }
(...skipping 16 matching lines...) Expand all
146 background-color: $error-dark; 141 background-color: $error-dark;
147 } 142 }
148 143
149 /* Lead 144 /* Lead
150 ******************************************************************************/ 145 ******************************************************************************/
151 146
152 .lead 147 .lead
153 { 148 {
154 font-size: 1.25em; 149 font-size: 1.25em;
155 } 150 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld