From 2ff80bf91bd6ba9eb187276831a986e12387b127 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Mon, 14 Sep 2020 00:18:41 -0400 Subject: [PATCH 1/2] [frio] Remove textcomplete hidden input box shadows in dark/black schemes --- view/theme/frio/scheme/black.css | 4 ++++ view/theme/frio/scheme/dark.css | 4 ++++ 2 files changed, 8 insertions(+) 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; +} From 5aa6284b1d9588b5811c56e73132419f85dd07f3 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Mon, 14 Sep 2020 00:19:38 -0400 Subject: [PATCH 2/2] [frio] Destroy unused perfect scrollbar on the aside element - It was interfering with accented scheme styles --- view/theme/frio/js/theme.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/view/theme/frio/js/theme.js b/view/theme/frio/js/theme.js index b7f222c0a2..1a2dec338a 100644 --- a/view/theme/frio/js/theme.js +++ b/view/theme/frio/js/theme.js @@ -2,6 +2,9 @@ var jotcache = ''; //The jot cache. We use it as cache to restore old/original jot content $(document).ready(function(){ + // Destroy unused perfect scrollbar in aside element + $('aside').perfectScrollbar('destroy'); + //fade in/out based on scrollTop value var scrollStart;