zendframework / zend-developer-tools

Module for developer and debug tools for working with the ZF2 MVC layer.
BSD 3-Clause "New" or "Revised" License
323 stars 130 forks source link

Feature: CSS Markup #118

Open diemuzi opened 11 years ago

diemuzi commented 11 years ago

Would it be possible to add all the CSS Markup into a CSS File so that when you view the source in a browser you don't have to scroll to find your code?

Right now I have to scroll past all the ZDT CSS Markup in the source to look at my own source and it can be quite annoying at times.

Ocramius commented 11 years ago

@diemuzi the idea is to make everything in a single HTTP request. That's the good/bad part of the toolbar.

diemuzi commented 11 years ago

Hrmm... Perhaps a flag that we can set to either make it a single request or file based?

OR

Perhaps the CSS can be loaded at the end of the page? That would be fine too actually =)

Ocramius commented 11 years ago

@diemuzi using a custom CSS placeholder that collects all of the CSS from the various toolbar components would be fine.

oliverkoenig commented 10 years ago

move style to body: (http://stackoverflow.com/questions/2830296/using-style-tags-in-the-body-with-other-html)

view/zend-developer-tools/toolbar/style.phtml, Line 2: < style type="text/css" media="screen" scoped>

src/ZendDeveloperTools/Listener/ToolbarListener.php, Lines 161-162: $injected = preg_replace('/<\/body>/i', $style . $toolbar . "\n< / body>", $response->getBody(), 1); //$injected = preg_replace('/<\/head>/i', $style . "\n", $injected, 1);

weierophinney commented 4 years ago

This repository has been closed and moved to laminas/laminas-developer-tools; a new issue has been opened at https://github.com/laminas/laminas-developer-tools/issues/19.