This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix the hint private mode and remove unused resources * Increased url bar left padding * Setup session before updating the URL So we have the right session available when setting the URL * Hide the insecure icon from the url bar when the url text is empty * Add some end padding to the loading animation
- Loading branch information
1 parent
8f26d45
commit 9f74488
Showing
6 changed files
with
46 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
app/src/main/res/drawable/url_bar_hint_fading_edge_end.xml
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
app/src/main/res/drawable/url_bar_hint_fading_edge_end_private.xml
This file was deleted.
Oops, something went wrong.
53 changes: 33 additions & 20 deletions
53
app/src/main/res/drawable/url_bar_hint_fading_edge_private.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,37 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:state_enabled="true"> | ||
<shape> | ||
<corners android:bottomRightRadius="20dp" android:topRightRadius="20dp" /> | ||
<gradient | ||
android:type="linear" | ||
android:angle="0" | ||
android:startColor="#00000000" | ||
android:endColor="@color/blackberry" /> | ||
</shape> | ||
</item> | ||
<item android:state_enabled="false"> | ||
<shape> | ||
<corners android:bottomRightRadius="20dp" android:topRightRadius="20dp" /> | ||
<gradient | ||
android:type="linear" | ||
android:angle="0" | ||
android:startColor="#00000000" | ||
android:endColor="@color/eggplant" /> | ||
</shape> | ||
</item> | ||
<item android:state_focused="true"> | ||
<layer-list> | ||
<item android:width="120dp"> | ||
<shape> | ||
<gradient | ||
android:startColor="#00000000" | ||
android:endColor="@color/blackberry" /> | ||
<corners android:topRightRadius="20dp" android:bottomRightRadius="20dp"/> | ||
</shape> | ||
</item> | ||
</layer-list> | ||
</item> | ||
<item android:state_focused="false"> | ||
<layer-list> | ||
<item android:width="120dp"> | ||
<shape> | ||
<gradient | ||
android:startColor="@android:color/transparent" | ||
android:endColor="@color/eggplant" /> | ||
<corners android:topRightRadius="20dp" android:bottomRightRadius="20dp"/> | ||
</shape> | ||
</item> | ||
</layer-list> | ||
</item> | ||
<item> | ||
<shape> | ||
<gradient | ||
android:type="linear" | ||
android:angle="0" | ||
android:startColor="#00000000" | ||
android:endColor="@color/eggplant" /> | ||
</shape> | ||
</item> | ||
</selector> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters