aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml')
-rw-r--r--libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml
new file mode 100644
index 000000000..ad2d03a5e
--- /dev/null
+++ b/libraries/AndroidBootstrap/res/drawable/edittext_background_rounded_danger.xml
@@ -0,0 +1,17 @@
+<?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_danger" />
+ <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_danger" />
+ <corners android:radius="@dimen/bbuton_rounded_corner_radius" />
+ </shape></item>
+
+
+
+</selector>