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

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

Issue 29589595: Noissue - Use new utilities and .container from website-defaults (Closed) Base URL: https://hg.adblockplus.org/help.eyeo.com
Patch Set: Created Oct. 26, 2017, 10:44 a.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 help.eyeo.com. 1 // This file is part of help.eyeo.com.
2 // Copyright (C) 2017 Eyeo GmbH 2 // Copyright (C) 2017 Eyeo GmbH
3 // 3 //
4 // help.eyeo.com is free software: you can redistribute it and/or modify 4 // help.eyeo.com 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 // help.eyeo.com is distributed in the hope that it will be useful, 9 // help.eyeo.com 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 16 matching lines...) Expand all
27 position: absolute; 27 position: absolute;
28 overflow: hidden; 28 overflow: hidden;
29 clip: rect(0, 0, 0, 0); 29 clip: rect(0, 0, 0, 0);
30 width: 1px; 30 width: 1px;
31 height: 1px; 31 height: 1px;
32 margin: -1px; 32 margin: -1px;
33 padding: 0; 33 padding: 0;
34 border: 0; 34 border: 0;
35 } 35 }
36 36
37 // Clearfix ///////////////////////////////////////////////////////////////
ire 2017/10/26 10:46:26 This is already in website-defaults
38
39 .clearfix:after
40 {
41 display: table;
42 clear: both;
43 content: "";
44 }
45
46 // Responsive /////////////////////////////////////////////////////////////// 37 // Responsive ///////////////////////////////////////////////////////////////
47 38
48 .mobile-only 39 .mobile-only
49 { 40 {
50 @media (min-width: $phablet-breakpoint) 41 @media (min-width: $phablet-breakpoint)
51 { 42 {
52 display: none; 43 display: none;
53 } 44 }
54 } 45 }
55 46
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 color: $gray-medium !important; 98 color: $gray-medium !important;
108 text-decoration: underline; 99 text-decoration: underline;
109 } 100 }
110 101
111 // Underlined /////////////////////////////////////////////////////////////// 102 // Underlined ///////////////////////////////////////////////////////////////
112 103
113 .underlined 104 .underlined
114 { 105 {
115 border-bottom: 1px dotted $gray; 106 border-bottom: 1px dotted $gray;
116 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld