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

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

Issue 29453600: Issue 4961 - Fix card group field alignment on acceptableads.com (Closed) Base URL: https://hg.adblockplus.org/web.acceptableads.com
Patch Set: Rebase Created July 17, 2017, 1:41 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 18 matching lines...) Expand all
29 @extend h3; 29 @extend h3;
30 height: $md + $sm; 30 height: $md + $sm;
31 margin: $sm 0 $sm 0; 31 margin: $sm 0 $sm 0;
32 32
33 @media (max-width: $mobile-breakpoint) 33 @media (max-width: $mobile-breakpoint)
34 { 34 {
35 height: auto; 35 height: auto;
36 } 36 }
37 } 37 }
38 38
39 .card article .card-heading
juliandoucette 2017/07/18 22:07:35 This selector is too specific (I think it only app
ire 2017/07/20 17:43:24 Same issue here. This applies to the latest blog p
juliandoucette 2017/07/24 16:02:39 Same answer. Put page specific CSS on pages not in
ire 2017/07/25 13:33:31 Done.
40 {
41 height: auto;
42
43 @media (min-width: $tablet-breakpoint)
44 {
45 height: 120px;
46 }
47 }
48
39 .card-icon 49 .card-icon
40 { 50 {
41 margin: $sm 0; 51 margin: $sm 0;
42 } 52 }
43 53
44 .center .card-icon 54 .center .card-icon
45 { 55 {
46 margin: $lg - $sm 0 $md 0; 56 margin: $lg - $sm 0 $md 0;
47 57
48 @media (max-width: $tablet-breakpoint) 58 @media (max-width: $tablet-breakpoint)
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 .card.list a 159 .card.list a
150 { 160 {
151 text-decoration: none; 161 text-decoration: none;
152 color: $primary-fg; 162 color: $primary-fg;
153 } 163 }
154 164
155 .card.list a%active 165 .card.list a%active
156 { 166 {
157 color: $accent; 167 color: $accent;
158 } 168 }
OLDNEW

Powered by Google App Engine
This is Rietveld