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

Side by Side Diff: static/scss/components/_columns.scss

Issue 29438582: Issue 5135 - Reduce font size and padding on smaller screens on acceptableads.com (Closed) Base URL: https://hg.adblockplus.org/web.acceptableads.com
Patch Set: Handle responsive styling Created June 22, 2017, 3:27 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
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld