kint-php / kint

Kint - Advanced PHP dumper
https://kint-php.github.io/kint/
MIT License
2.78k stars 292 forks source link

Kint output is hidden behind z-indexed and fixed content #181

Closed vatavale closed 8 years ago

vatavale commented 8 years ago

I try to make simple changes in CSS, but with no results yet.

raveren commented 8 years ago

You can <?php -ddd($variable) ?> to clear output before dump and halt execution after it. Catering global Kint css to rare use cases is not the way to go unfortunately.

vatavale commented 8 years ago

Ok. Thank you for advice. BTW I have bring Kint to front by adding:

.kint {
    z-index:999;
    position: relative;
}

in kint/view/base.less
raveren commented 8 years ago

Yeah and that is precisely what I meant. This change only fixes your highly specific situation and I'm very sure the position rule introduces a bunch of new incompatibilities, but I'm glad it works for you.