| 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-present eyeo GmbH | 3 * Copyright (C) 2006-present 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
|
Thomas Greiner
2018/02/19 14:45:51
Good catch. Can't believe we missed that.
| |
| 17 | 17 |
| 18 html | 18 html |
| 19 { | 19 { |
| 20 font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; | 20 font-family: "Source Sans Pro", Helvetica, Arial, sans-serif; |
| 21 -webkit-font-smoothing: antialiased; | 21 -webkit-font-smoothing: antialiased; |
| 22 } | 22 } |
| 23 | 23 |
| 24 body | 24 body |
| 25 { | 25 { |
| 26 margin: 0; | 26 margin: 0; |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 165 } | 165 } |
| 166 | 166 |
| 167 html[dir="rtl"] .feature-entry img | 167 html[dir="rtl"] .feature-entry img |
| 168 { | 168 { |
| 169 margin: 0 0 0 1em; | 169 margin: 0 0 0 1em; |
| 170 } | 170 } |
| 171 | 171 |
| 172 #block-ads-text > strong | 172 #block-ads-text > strong |
| 173 { | 173 { |
| 174 text-decoration: line-through; | 174 text-decoration: line-through; |
| 175 font-weight: normal; | 175 font-weight: 400; |
|
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.
| |
| 176 } | 176 } |
| 177 | 177 |
| 178 .store-buttons | 178 .store-buttons |
| 179 { | 179 { |
| 180 height: 58px; | 180 height: 58px; |
| 181 margin: 0 0 0 5em; | 181 margin: 0 0 0 5em; |
| 182 } | 182 } |
| 183 | 183 |
| 184 html[dir="rtl"] .store-buttons | 184 html[dir="rtl"] .store-buttons |
| 185 { | 185 { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 235 .column | 235 .column |
| 236 { | 236 { |
| 237 align-items: flex-start; | 237 align-items: flex-start; |
| 238 } | 238 } |
| 239 | 239 |
| 240 html[dir="rtl"] .applestore-button | 240 html[dir="rtl"] .applestore-button |
| 241 { | 241 { |
| 242 margin: 0 0 1em 0; | 242 margin: 0 0 1em 0; |
| 243 } | 243 } |
| 244 } | 244 } |
| LEFT | RIGHT |