Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Debug toolbar not showing in Chrome #122

Open
soderluk opened this issue Jul 31, 2014 · 3 comments
Open

Debug toolbar not showing in Chrome #122

soderluk opened this issue Jul 31, 2014 · 3 comments

Comments

@soderluk
Copy link

The HTML of the toolbar is visible when viewing source, but Chrome does not show the toolbar at all.
Toolbar works normally on Firefox. Chrome somehow messes up the HTML when the toolbar HTML is outside the tags.

@grigory51
Copy link

Removing position: fixed of #ydtb-toolbar on main.css:37 fix panel in chrome. it is bag.

@PrplHaz4
Copy link

I've had the same problem as well - seems to have appeared when we updated the app to use Bootstrap 3.2.0 (YiiBooster 4.01) - and does not seem to be chrome-specific.

The fix provided by @grigory51 seems to work great. Thanks!

Added this to mysite.css:

/* fix for yii-debug-toolbar not showing */
#ydtb-toolbar {
    position: inherit;
}

@fedemotta
Copy link

Same issue here. @PrplHaz4 fix works with a minor tweak.

/* fix for yii-debug-toolbar not showing */
#ydtb-toolbar {
    position: inherit!important;
}

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants