diff --git a/CHANGELOG.md b/CHANGELOG.md index d2b02b840605..54bb47c4c69f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - #4137 - Adds pagination to the history view - #3695 - Made search suggestions for other tabs clickable +- #3756 - Mark HTTP sites as insecure ### Changed - Remove forced focus of toolbar on homescreen diff --git a/app/src/main/res/drawable/ic_insecure.xml b/app/src/main/res/drawable/ic_insecure.xml new file mode 100644 index 000000000000..b634e4814c07 --- /dev/null +++ b/app/src/main/res/drawable/ic_insecure.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + diff --git a/app/src/main/res/drawable/ic_site_secure.xml b/app/src/main/res/drawable/ic_site_secure.xml new file mode 100644 index 000000000000..dd0eef874a7e --- /dev/null +++ b/app/src/main/res/drawable/ic_site_secure.xml @@ -0,0 +1,8 @@ + + + + + + diff --git a/app/src/main/res/layout/component_search.xml b/app/src/main/res/layout/component_search.xml index 9069609f82fe..e71f27ad6e34 100644 --- a/app/src/main/res/layout/component_search.xml +++ b/app/src/main/res/layout/component_search.xml @@ -13,7 +13,7 @@ android:layout_gravity="bottom" android:background="@drawable/toolbar_background" app:browserToolbarClearColor="?primaryText" - app:browserToolbarInsecureColor="?primaryText" + app:browserToolbarInsecureColor="@android:color/transparent" + app:browserToolbarSecureColor="?primaryText" app:browserToolbarMenuColor="?primaryText" - app:browserToolbarProgressBarGravity="top" - app:browserToolbarSecureColor="?primaryText" /> + app:browserToolbarProgressBarGravity="top"/>