| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 @font-face | 1 /* |
| 2 { | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 font-family: "Source Sans Pro"; | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 font-style: normal; | 4 * |
| 5 font-weight: 400; | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 font-stretch: normal; | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 src: local ("Ø"), | 7 * published by the Free Software Foundation. |
| 8 url(fonts/SourceSansPro-Regular.woff) format("woff"); | 8 * |
| 9 } | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 @font-face | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 { | 12 * GNU General Public License for more details. |
| 13 font-family: "Source Sans Pro"; | 13 * |
| 14 font-style: bold; | 14 * You should have received a copy of the GNU General Public License |
| 15 font-weight: 600; | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 font-stretch: normal; | 16 */ |
|
Thomas Greiner
2018/02/19 14:45:51
Good catch. Can't believe we missed that.
| |
| 17 src: local ("Ø"), | |
| 18 url(fonts/SourceSansPro-bold.woff) format("woff"); | |
| 19 } | |
| 20 | 17 |
| 21 html | 18 html |
| 22 { | 19 { |
| 23 font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; | 20 font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; |
| 24 -webkit-font-smoothing: antialiased; | 21 -webkit-font-smoothing: antialiased; |
| 25 } | 22 } |
| 26 | 23 |
| 27 body | 24 body |
| 28 { | 25 { |
| 29 margin: 0; | 26 margin: 0; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 168 } | 165 } |
| 169 | 166 |
| 170 html[dir="rtl"] .feature-entry img | 167 html[dir="rtl"] .feature-entry img |
| 171 { | 168 { |
| 172 margin: 0 0 0 1em; | 169 margin: 0 0 0 1em; |
| 173 } | 170 } |
| 174 | 171 |
| 175 #block-ads-text > strong | 172 #block-ads-text > strong |
| 176 { | 173 { |
| 177 text-decoration: line-through; | 174 text-decoration: line-through; |
| 178 font-weight: normal; | 175 font-weight: normal; |
|
Thomas Greiner
2018/02/19 14:45:51
Detail: Since you've been fixing the "font-weight"
saroyanm
2018/02/20 15:30:09
Done.
| |
| 179 } | 176 } |
| 180 | 177 |
| 181 .store-buttons | 178 .store-buttons |
| 182 { | 179 { |
| 183 height: 58px; | 180 height: 58px; |
| 184 margin: 0 0 0 5em; | 181 margin: 0 0 0 5em; |
| 185 } | 182 } |
| 186 | 183 |
| 187 html[dir="rtl"] .store-buttons | 184 html[dir="rtl"] .store-buttons |
| 188 { | 185 { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 238 .column | 235 .column |
| 239 { | 236 { |
| 240 align-items: flex-start; | 237 align-items: flex-start; |
| 241 } | 238 } |
| 242 | 239 |
| 243 html[dir="rtl"] .applestore-button | 240 html[dir="rtl"] .applestore-button |
| 244 { | 241 { |
| 245 margin: 0 0 1em 0; | 242 margin: 0 0 1em 0; |
| 246 } | 243 } |
| 247 } | 244 } |
| OLD | NEW |