Merge pull request #9199 from MrPetovan/bug/9193-frio-box-shadows

[frio] Remove textcomplete hidden input box shadows in dark/black schemes
This commit is contained in:
Tobias Diekershoff 2020-09-14 07:37:37 +02:00 committed by GitHub
commit 766d92aaa0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View File

@ -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;

View File

@ -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;
}

View File

@ -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;
}