From eaaa008b13f9942a0f6b47bf511459fffd2f074d Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sat, 3 Jul 2021 21:33:43 +0100 Subject: [PATCH] Use correct API to opacify This modified the opacity, not added it. --- static/src/scss/style.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/src/scss/style.scss b/static/src/scss/style.scss index 4861344..ddd02f3 100644 --- a/static/src/scss/style.scss +++ b/static/src/scss/style.scss @@ -113,12 +113,12 @@ table td { #search-input { border: 3px solid $black; - background-color: opacify($black, 0.8); + background-color: transparentize($black, 0.2); text-align: center; color: $body-color; &::placeholder { - color: opacify($body-color, 0.8); + color: transparentize($body-color, 0.2); } } } @@ -356,7 +356,7 @@ a.no-color-change { #search-input { border: 0; - background-color: opacify($black, 0.6); + background-color: transparentize($black, 0.4); color: $body-color; }