Left: | ||
Right: |
OLD | NEW |
---|---|
1 // This file is part of acceptableads.org. | 1 // This file is part of acceptableads.org. |
2 // Copyright (C) 2016 Eyeo GmbH | 2 // Copyright (C) 2016 Eyeo GmbH |
3 // | 3 // |
4 // acceptableads.org is free software: you can redistribute it and/or modify | 4 // acceptableads.org is free software: you can redistribute it and/or modify |
5 // it under the terms of the GNU General Public License as published by | 5 // 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 // acceptableads.org is distributed in the hope that it will be useful, | 9 // acceptableads.org 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 24 matching lines...) Expand all Loading... | |
35 margin-left: -$gutter-width; | 35 margin-left: -$gutter-width; |
36 } | 36 } |
37 | 37 |
38 .row::after | 38 .row::after |
39 { | 39 { |
40 display: table; | 40 display: table; |
41 clear: both; | 41 clear: both; |
42 content: ""; | 42 content: ""; |
43 } | 43 } |
44 | 44 |
45 .row p:first-child | |
juliandoucette
2017/06/26 10:31:22
Where/Why does this apply? (Perhaps we should comm
ire
2017/06/27 08:36:31
Actually found a way to refactor this to work with
| |
46 { | |
47 margin-top: 0; | |
48 } | |
49 | |
45 %columns | 50 %columns |
46 { | 51 { |
47 width: 100%; | 52 width: 100%; |
48 } | 53 } |
49 | 54 |
50 .row %columns | 55 .row %columns |
51 { | 56 { |
52 position: relative; | 57 position: relative; |
53 min-height: 1px; | 58 min-height: 1px; |
54 padding-right: $gutter-width; | 59 padding-right: $gutter-width; |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
231 | 236 |
232 html[dir="rtl"] .pull-8 { | 237 html[dir="rtl"] .pull-8 { |
233 left: 66.666667%; | 238 left: 66.666667%; |
234 } | 239 } |
235 | 240 |
236 html[dir="rtl"] .pull-9 { | 241 html[dir="rtl"] .pull-9 { |
237 left: 75%; | 242 left: 75%; |
238 } | 243 } |
239 | 244 |
240 } | 245 } |
OLD | NEW |