| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- | |
| 3 - This file is part of the Adblock Plus <https://adblockplus.org/>, | |
|
anton
2017/10/10 06:20:58
We do we have "-" at the beginning of every line?
diegocarloslima
2017/10/10 14:29:39
Yeah, the '-' is already used in other .xml files
| |
| 4 - Copyright (C) 2006-present eyeo GmbH | |
| 5 - | |
| 6 - Adblock Plus is free software: you can redistribute it and/or modify | |
| 7 - it under the terms of the GNU General Public License version 3 as | |
| 8 - published by the Free Software Foundation. | |
| 9 - | |
| 10 - Adblock Plus is distributed in the hope that it will be useful, | |
| 11 - but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 13 - GNU General Public License for more details. | |
| 14 - | |
| 15 - You should have received a copy of the GNU General Public License | |
| 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
| 17 --> | |
| 18 | |
| 2 <shape xmlns:android="http://schemas.android.com/apk/res/android" | 19 <shape xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 android:shape="rectangle"> | 20 android:shape="rectangle"> |
| 4 <padding android:left="2dp" | 21 <padding android:left="2dp" |
| 5 android:top="2dp" | 22 android:top="2dp" |
| 6 android:right="2dp" | 23 android:right="2dp" |
| 7 android:bottom="2dp" /> | 24 android:bottom="2dp" /> |
| 8 <solid android:color="#107fa9" /> | 25 <solid android:color="#107fa9" /> |
| 9 <corners android:radius="2dp" /> | 26 <corners android:radius="2dp" /> |
| 10 </shape> | 27 </shape> |
| 11 | 28 |
| OLD | NEW |