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:
commit
766d92aaa0
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue