Left: | ||
Right: |
OLD | NEW |
---|---|
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
104 display: flex; | 104 display: flex; |
105 flex-flow: row wrap; | 105 flex-flow: row wrap; |
106 } | 106 } |
107 | 107 |
108 .tabs li | 108 .tabs li |
109 { | 109 { |
110 cursor: pointer; | 110 cursor: pointer; |
111 display: flex; | 111 display: flex; |
112 } | 112 } |
113 | 113 |
114 .tabs li span:first-child | 114 .tabs li a:first-child |
115 { | 115 { |
116 flex: 1; | 116 flex: 1; |
117 color: inherit; | |
118 text-decoration: none; | |
117 } | 119 } |
118 | 120 |
119 .tabs.vertical | 121 .tabs.vertical |
120 { | 122 { |
121 list-style: none; | 123 list-style: none; |
122 margin: 0px; | 124 margin: 0px; |
123 position: relative; | 125 position: relative; |
124 padding: 0px; | 126 padding: 0px; |
125 width: 198px; | 127 width: 198px; |
126 } | 128 } |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
206 width: 16px; | 208 width: 16px; |
207 } | 209 } |
208 | 210 |
209 #tab-share .icon | 211 #tab-share .icon |
210 { | 212 { |
211 background-position: -60px -17px; | 213 background-position: -60px -17px; |
212 height: 16px; | 214 height: 16px; |
213 width: 16px; | 215 width: 16px; |
214 } | 216 } |
215 | 217 |
216 #tab-donate .icon | 218 #tab-contribute .icon |
217 { | 219 { |
218 background-position: -30px -17px; | 220 background-position: -30px -17px; |
219 height: 16px; | 221 height: 16px; |
220 width: 16px; | 222 width: 16px; |
221 } | 223 } |
222 | 224 |
223 #tab-content | 225 #tab-content |
224 { | 226 { |
225 background-color: #FFFFFF; | 227 background-color: #FFFFFF; |
226 border: 1px solid #CDCDCD; | 228 border: 1px solid #CDCDCD; |
227 border-radius: 8px; | 229 border-radius: 8px; |
228 padding: 0px 60px 40px 60px; | 230 padding: 0px 60px 40px 60px; |
229 width: 960px; | 231 width: 960px; |
230 } | 232 } |
231 | 233 |
232 #tab-content h1 | 234 #tab-content h1 |
233 { | 235 { |
234 border-bottom: 1px solid #CDCDCD; | 236 border-bottom: 1px solid #CDCDCD; |
235 margin: 0px; | 237 margin: 0px; |
236 padding: 40px 0px 16px 0px; | 238 padding: 40px 0px 16px 0px; |
237 } | 239 } |
238 | 240 |
239 .nav-link | 241 #link-version |
240 { | 242 { |
241 -moz-margin-start: 12px; | 243 display: block; |
saroyanm
2015/06/29 15:59:17
I guess this should be "display: flex;", consider
Thomas Greiner
2015/06/29 16:34:12
Done.
| |
242 -webkit-margin-start: 12px; | 244 margin: 12px 20px; |
243 color: #3A7BA6; | 245 color: #3A7BA6; |
246 text-decoration: none; | |
244 } | 247 } |
245 | 248 |
246 #content-wrapper | 249 #content-wrapper |
247 { | 250 { |
248 position: relative; | 251 position: relative; |
249 } | 252 } |
250 | 253 |
251 #content-wrapper > div | 254 #content-wrapper > div |
252 { | 255 { |
253 display: none; | 256 display: none; |
(...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
867 -moz-padding-end: 10px; | 870 -moz-padding-end: 10px; |
868 -webkit-padding-start: 0px; | 871 -webkit-padding-start: 0px; |
869 -moz-padding-start: 0px; | 872 -moz-padding-start: 0px; |
870 } | 873 } |
871 | 874 |
872 #other-language .display | 875 #other-language .display |
873 { | 876 { |
874 -webkit-margin-start: 10px; | 877 -webkit-margin-start: 10px; |
875 -moz-margin-start: 10px; | 878 -moz-margin-start: 10px; |
876 } | 879 } |
OLD | NEW |