From 8fa0e7f093718ca4c2e963343c31c3a50d9f0ced Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Apr 2021 10:26:54 -0400 Subject: [PATCH 1/3] Bump py from 1.8.1 to 1.10.0 (#293) Bumps [py](https://github.com/pytest-dev/py) from 1.8.1 to 1.10.0. - [Release notes](https://github.com/pytest-dev/py/releases) - [Changelog](https://github.com/pytest-dev/py/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/py/compare/1.8.1...1.10.0) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0e4cdf0..ad18435 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ MarkupSafe==1.1.1 more-itertools==8.3.0 packaging==20.4 pluggy==0.13.1 -py==1.8.1 +py==1.10.0 pycodestyle==2.6.0 pycparser==2.19 pyOpenSSL==19.1.0 From 2eb33007f7b353d215eadab503fcf7874ad90031 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Wed, 21 Apr 2021 10:48:26 -0400 Subject: [PATCH 2/3] Disable autocorrect on mobile search inputs Fixes #292 --- app/templates/header.html | 28 ++++++++++++++++++++++------ app/templates/index.html | 22 ++++++++++++++++++++-- 2 files changed, 42 insertions(+), 8 deletions(-) diff --git a/app/templates/header.html b/app/templates/header.html index 5973274..e9ab529 100644 --- a/app/templates/header.html +++ b/app/templates/header.html @@ -11,11 +11,19 @@
- + type="text" + value="{{ query }}">
@@ -37,9 +45,17 @@
- diff --git a/app/templates/index.html b/app/templates/index.html index 336b159..41c33ae 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -42,7 +42,16 @@
- +
@@ -132,7 +141,16 @@
- +
  From 7136197e5d6c882bd7743d82b644240c8b9e0d10 Mon Sep 17 00:00:00 2001 From: Ben Busby Date: Wed, 21 Apr 2021 10:49:27 -0400 Subject: [PATCH 3/3] Fix missing text style for active search suggestions --- app/static/css/light-theme.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/static/css/light-theme.css b/app/static/css/light-theme.css index de76eb6..9221b02 100644 --- a/app/static/css/light-theme.css +++ b/app/static/css/light-theme.css @@ -122,6 +122,7 @@ input { .autocomplete-items div:hover { background-color: var(--whoogle-element-bg); + color: var(--whoogle-contrast-text) !important; } .autocomplete-active {