Skip to content

Commit

Permalink
Changed selected edit text border (#3184)
Browse files Browse the repository at this point in the history
Co-authored-by: Rajat Talesra <talesra@google.com>
  • Loading branch information
rt4914 and Rajat Talesra authored May 13, 2021

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent 38f3c0b commit 20b0c2e
Showing 3 changed files with 11 additions and 102 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/edit_text_background.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/edit_text_background_shadow" android:state_focused="true" />
<item android:drawable="@drawable/edit_text_background_shadow" android:state_pressed="true" />
<item android:drawable="@drawable/edit_text_background_border_blue" android:state_focused="true" />
<item android:drawable="@drawable/edit_text_background_border_blue" android:state_pressed="true" />
<item android:drawable="@drawable/edit_text_background_border" />
</selector>
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="4dp" />
<solid android:color="@color/white" />
<stroke
android:width="2dp"
android:color="@color/oppiaDarkBlue" />
</shape>
100 changes: 0 additions & 100 deletions app/src/main/res/drawable/edit_text_background_shadow.xml

This file was deleted.

0 comments on commit 20b0c2e

Please sign in to comment.