summaryrefslogtreecommitdiffstats
path: root/current/support/design
diff options
context:
space:
mode:
Diffstat (limited to 'current/support/design')
-rw-r--r--current/support/design/libs/android-support-design.jarbin203850 -> 207564 bytes
-rw-r--r--current/support/design/res/drawable/fab_border_background.xml24
-rw-r--r--current/support/design/res/values/colors.xml14
3 files changed, 8 insertions, 30 deletions
diff --git a/current/support/design/libs/android-support-design.jar b/current/support/design/libs/android-support-design.jar
index 0f68b1f..57bb1ea 100644
--- a/current/support/design/libs/android-support-design.jar
+++ b/current/support/design/libs/android-support-design.jar
Binary files differ
diff --git a/current/support/design/res/drawable/fab_border_background.xml b/current/support/design/res/drawable/fab_border_background.xml
deleted file mode 100644
index 6a16c42..0000000
--- a/current/support/design/res/drawable/fab_border_background.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- ~ Copyright (C) 2015 The Android Open Source 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
- ~
- ~ 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.
- -->
-
-<shape xmlns:android="http://schemas.android.com/apk/res/android"
- android:shape="oval">
- <gradient android:startColor="@color/fab_stroke_start_color"
- android:centerColor="@color/fab_stroke_center_color"
- android:endColor="@color/fab_stroke_end_color"
- android:angle="270"/>
-</shape> \ No newline at end of file
diff --git a/current/support/design/res/values/colors.xml b/current/support/design/res/values/colors.xml
index b91a0f0..216ad79 100644
--- a/current/support/design/res/values/colors.xml
+++ b/current/support/design/res/values/colors.xml
@@ -17,12 +17,14 @@
<resources>
- <!-- Color for the top pixels in the stroke: 18% white (these are multiplied) -->
- <color name="fab_stroke_start_color">#2EFFFFFF</color>
- <!-- Color for the center pixels in the stroke: transparent (these are multiplied) -->
- <color name="fab_stroke_center_color">@android:color/transparent</color>
- <!-- Color for the bottom pixels in the stroke: 6% black (these are multiplied) -->
- <color name="fab_stroke_end_color">#0F000000</color>
+ <!-- Color for the top outer pixels in the stroke: 18% white (these are multiplied) -->
+ <color name="fab_stroke_top_outer_color">#2EFFFFFF</color>
+ <!-- Color for the top inner pixels in the stroke: 10% white (these are multiplied) -->
+ <color name="fab_stroke_top_inner_color">#1AFFFFFF</color>
+ <!-- Color for the bottom outer pixels in the stroke: 6% black (these are multiplied) -->
+ <color name="fab_stroke_end_outer_color">#0F000000</color>
+ <!-- Color for the bottom inner pixels in the stroke: 4% black (these are multiplied) -->
+ <color name="fab_stroke_end_inner_color">#0A000000</color>
<!-- Shadow color for the first pixels of a shadow -->
<color name="shadow_start_color">#44000000</color>