diff options
author | Michael Bestas <mikeioannina@gmail.com> | 2015-02-22 17:04:07 +0200 |
---|---|---|
committer | Steve Kondik <steve@cyngn.com> | 2015-11-07 13:57:35 -0800 |
commit | 2fb3acbe27418b0d419227a87d75fbf8bdc8f9a1 (patch) | |
tree | 67de4f2ca201e76efc6c9914a08c913070e6c892 /res/drawable | |
parent | 3c05a4d516ade11e6b8cc45432c8f50723c2d716 (diff) | |
download | packages_apps_Browser-2fb3acbe27418b0d419227a87d75fbf8bdc8f9a1.zip packages_apps_Browser-2fb3acbe27418b0d419227a87d75fbf8bdc8f9a1.tar.gz packages_apps_Browser-2fb3acbe27418b0d419227a87d75fbf8bdc8f9a1.tar.bz2 |
Cleanup code style
* Fix breakage from 'Materialize' commit
Change-Id: I81d06e069f3eb18581a7072aaf7e22b1a3d804a2
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/fab_accent.xml | 27 | ||||
-rw-r--r-- | res/drawable/floating_action_button.xml | 34 |
2 files changed, 31 insertions, 30 deletions
diff --git a/res/drawable/fab_accent.xml b/res/drawable/fab_accent.xml index fabd583..01aa084 100644 --- a/res/drawable/fab_accent.xml +++ b/res/drawable/fab_accent.xml @@ -1,19 +1,20 @@ <?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2014 The CyanogenMod Project +<!-- + Copyright (C) 2014 The CyanogenMod Project -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. --> - -<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> - <solid android:color="@color/primary" /> +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="oval"> + <solid android:color="@color/primary" /> </shape> diff --git a/res/drawable/floating_action_button.xml b/res/drawable/floating_action_button.xml index 0f313cb..ef95367 100644 --- a/res/drawable/floating_action_button.xml +++ b/res/drawable/floating_action_button.xml @@ -1,24 +1,24 @@ <?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2014 The CyanogenMod Project +<!-- + Copyright (C) 2014 The CyanogenMod Project -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at -http://www.apache.org/licenses/LICENSE-2.0 + http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. --> - <ripple xmlns:android="http://schemas.android.com/apk/res/android" - android:color="@color/floating_action_button_touch_tint"> - <item android:id="@android:id/mask"> - <shape android:shape="oval"> - <solid android:color="@color/primary" /> - </shape> - </item> + android:color="@color/floating_action_button_touch_tint"> + <item android:id="@android:id/mask"> + <shape android:shape="oval"> + <solid android:color="@color/primary" /> + </shape> + </item> </ripple> |