From f79b4602c007f0743cdc132e4c967d40022ec502 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Benavente?= Date: Thu, 29 Feb 2024 11:34:54 -0300 Subject: [PATCH] Fix contrast for bootstrap's input-group-text --- app/assets/stylesheets/application.scss | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 81655c42..79b7a55b 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -111,6 +111,24 @@ textarea { padding: 0; } +.input-group-text { + display: -ms-flexbox; + display: flex; + -ms-flex-align: center; + align-items: center; + padding: .375rem .75rem; + margin-bottom: 0; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #5e6162; + border: 1px solid #5e6162; + border-radius: .25rem; +} + .dropdown-item { color: #ffffff; }