From: Hypolite Petovan Date: Mon, 14 Sep 2020 04:18:41 +0000 (-0400) Subject: [frio] Remove textcomplete hidden input box shadows in dark/black schemes X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2ff80bf91bd6ba9eb187276831a986e12387b127;p=friendica.git [frio] Remove textcomplete hidden input box shadows in dark/black schemes --- diff --git a/view/theme/frio/scheme/black.css b/view/theme/frio/scheme/black.css index 982de93e8b..f57f9902b3 100644 --- a/view/theme/frio/scheme/black.css +++ b/view/theme/frio/scheme/black.css @@ -345,3 +345,7 @@ aside .widget, box-shadow: 0 0 3px $link_color; -webkit-box-shadow: 0 0 3px $link_color; } + +input[type=text].tt-input { + box-shadow: none; +} diff --git a/view/theme/frio/scheme/dark.css b/view/theme/frio/scheme/dark.css index 308e318878..e7574ff307 100644 --- a/view/theme/frio/scheme/dark.css +++ b/view/theme/frio/scheme/dark.css @@ -318,3 +318,7 @@ legend { .adminpage .table-hover > tbody > tr:hover + tr.details { background-color: $nav_bg; } + +input[type=text].tt-input { + box-shadow: none; +}