Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2015 Eyeo GmbH | 3 * Copyright (C) 2006-2015 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
134 | 134 |
135 #page-title h1 | 135 #page-title h1 |
136 { | 136 { |
137 margin: 0px; | 137 margin: 0px; |
138 padding: 8px 0px 16px 0px; | 138 padding: 8px 0px 16px 0px; |
139 } | 139 } |
140 | 140 |
141 .hbox | 141 .hbox |
142 { | 142 { |
143 display: flex; | 143 display: flex; |
144 flex-flow: row wrap; | 144 flex-direction: row; |
145 } | 145 } |
146 | 146 |
147 .hbox > div | 147 .hbox > div |
148 { | 148 { |
149 flex: 1; | 149 flex: 1; |
saroyanm
2015/07/29 09:38:59
In this case "flex-wrap: wrap" will have no effect
Thomas Greiner
2015/07/29 09:59:52
There's no wrapping necessary in the current versi
| |
150 } | 150 } |
151 | 151 |
152 .tabs li | 152 .tabs li |
153 { | 153 { |
154 cursor: pointer; | 154 cursor: pointer; |
155 display: flex; | 155 display: flex; |
156 } | 156 } |
157 | 157 |
158 .tabs li a | 158 .tabs li a |
159 { | 159 { |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
256 { | 256 { |
257 background-position: -31px -18px; | 257 background-position: -31px -18px; |
258 } | 258 } |
259 | 259 |
260 #tab-content | 260 #tab-content |
261 { | 261 { |
262 background-color: #FFFFFF; | 262 background-color: #FFFFFF; |
263 border: 1px solid #CDCDCD; | 263 border: 1px solid #CDCDCD; |
264 border-radius: 8px; | 264 border-radius: 8px; |
265 box-sizing: border-box; | 265 box-sizing: border-box; |
266 min-width: 960px; | |
266 padding: 0px 60px 40px 60px; | 267 padding: 0px 60px 40px 60px; |
267 width: 960px; | 268 width: 960px; |
saroyanm
2015/07/29 10:12:21
nit: It's doesn't make any sense to have specified
| |
268 } | 269 } |
269 | 270 |
270 #tab-content h1 | 271 #tab-content h1 |
271 { | 272 { |
272 border-bottom: 1px solid #CDCDCD; | 273 border-bottom: 1px solid #CDCDCD; |
273 margin: 0px; | 274 margin: 0px; |
274 padding: 40px 0px 16px 0px; | 275 padding: 40px 0px 16px 0px; |
275 } | 276 } |
276 | 277 |
277 #link-version | 278 #link-version |
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1077 -moz-padding-end: 10px; | 1078 -moz-padding-end: 10px; |
1078 -webkit-padding-start: 0px; | 1079 -webkit-padding-start: 0px; |
1079 -moz-padding-start: 0px; | 1080 -moz-padding-start: 0px; |
1080 } | 1081 } |
1081 | 1082 |
1082 #other-language .display | 1083 #other-language .display |
1083 { | 1084 { |
1084 -webkit-margin-start: 10px; | 1085 -webkit-margin-start: 10px; |
1085 -moz-margin-start: 10px; | 1086 -moz-margin-start: 10px; |
1086 } | 1087 } |
LEFT | RIGHT |