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

[frio] Remove textcomplete hidden input box shadows in dark/black schemes
pull/9200/head
Tobias Diekershoff 2020-09-14 07:37:37 +02:00 zatwierdzone przez GitHub
commit 766d92aaa0
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 11 dodań i 0 usunięć

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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