1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-07-24 10:12:54 +02:00

Merge pull request #3 from erikn69/patch-49

fix: default display css
This commit is contained in:
MD Khalil
2024-07-10 00:25:10 +06:00
committed by GitHub
2 changed files with 0 additions and 4 deletions

View File

@@ -1,7 +1,4 @@
/* Hide debugbar when printing a page */
div.phpdebugbar {
display: none;
}
@media print {
div.phpdebugbar {
display: none;

View File

@@ -491,7 +491,6 @@ if (typeof(PhpDebugBar) == 'undefined') {
}
var self = this;
this.$el.css('display', 'block');
this.$el.appendTo('body');
this.$dragCapture = $('<div />').addClass(csscls('drag-capture')).appendTo(this.$el);
this.$resizehdle = $('<div />').addClass(csscls('resize-handle')).appendTo(this.$el);