diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-01-09 12:31:45 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-01-09 12:31:45 +0100 |
commit | 11ed8d7e16abfb98cd96d8a4447382c83435dac8 (patch) | |
tree | 0db8e5a572caf65f0a19da9f26240ccbd993d288 /libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml | |
parent | 14a8738933bd2bb323ee05a47421881337f6e9d7 (diff) | |
download | open-keychain-11ed8d7e16abfb98cd96d8a4447382c83435dac8.tar.gz open-keychain-11ed8d7e16abfb98cd96d8a4447382c83435dac8.tar.bz2 open-keychain-11ed8d7e16abfb98cd96d8a4447382c83435dac8.zip |
add AndroidBootstrap lib
Diffstat (limited to 'libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml')
-rw-r--r-- | libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml new file mode 100644 index 000000000..7ef80a5f5 --- /dev/null +++ b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_success.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_focused="true"><shape> + <solid android:color="@color/white" /> + <stroke android:width="2dp" android:color="@color/bbutton_success" /> + <corners android:radius="@dimen/bbuton_rounded_corner_radius" /> + </shape></item> +<item><shape android:shape="rectangle"> + <solid android:color="@color/white" /> + <stroke android:width="1dp" android:color="@color/bbutton_success" /> + <corners android:radius="@dimen/bbuton_rounded_corner_radius" /> + </shape></item> + +</selector> |