-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Redesigned the web debug toolbar #15160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
c2fcadc
Redesigned the web debug toolbar
javiereguiluz b6f413f
First batch of fixes
javiereguiluz 4eee931
Restored all the code removed by mistake
javiereguiluz 64b8f38
A new batch of updates
javiereguiluz 2735346
Fixed a minor markup error that broke the toolbar
javiereguiluz 51a79c9
Reorder toolbar panels
javiereguiluz ef53850
More fixes and tweaks
javiereguiluz fac5391
Lots of minor improvements
javiereguiluz acee052
Finished the Ajax panel redesign
8000
javiereguiluz af3dcb2
Minor Ajax tweaks
javiereguiluz 041d424
Improved the Security toolbar panel
javiereguiluz 77d522a
Tweaked the translation panel
javiereguiluz c0bee9b
Tweaked the Twig panel
javiereguiluz 2bccdd4
Minor CSS fixes
javiereguiluz b25b6dd
Finished "dump" panel and other minor tweaks
javiereguiluz 9d89841
Finished the toolbar redesign
javiereguiluz e14fb6d
Fixed a minor syntax issue
javiereguiluz 7c35d25
Fixed another insignificant syntax issue
javiereguiluz 23dc884
Fixed a potential issue in the request panel
javiereguiluz e28f895
A very high z-index value is required to avoid issues in the profiler…
javiereguiluz cd53210
Fixed another z-index issue
javiereguiluz 0dfcb60
Fixed an issue with the Config panel in the Profiler view
javiereguiluz 9e38a8a
Minor CSS tweaks and made font sizes bigger
javiereguiluz f087ac0
More vertical aligning fixes
javiereguiluz 3ab2e20
fixed all vertical aligning issues and tweaked icons
javiereguiluz 9b585b9
Made the close icon a bit smaller
javiereguiluz e94a6a0
Smaller font sizes for smartphones, fixed request status padding issue
javiereguiluz 002dda5
Fixed toolbar issues when displaying it inside the profiler
javiereguiluz a0e03f6
Minor tweaks
javiereguiluz 1847285
Pass the toolbar version number from the controller, to ease transiti…
javiereguiluz ebb44e4
Added some styles to make old panels look better in the new design
javiereguiluz 972a92e
Misc. tweaks and improvements
javiereguiluz 084cca6
Minor JavaScript optimizations
javiereguiluz 7ec1cd4
Reverted the feature to display different toolbar versions
javiereguiluz 2fb3319
Removed an unused import
javiereguiluz 5070861
Added a new profiler_markup_version to improve BC of the new toolbar
javiereguiluz 22f6bc5
Removed an useless CSS class and added styles for <hr>
javiereguiluz 9df0f8b
Added some upgrade notes about the new toolbar design
javiereguiluz 597637e
Tweaks and bug fixes
javiereguiluz 7d92cb8
Restored the old behavior for toolbars with lots of elements
javiereguiluz b438ee5
Redesigned "abbr" elements
javiereguiluz b3ad83d
Removed an unused media query
javiereguiluz f237ff1
Increased the z-index of .sf-toolbar-info
javiereguiluz 5a571b6
Reordered the toolbar elements via service priorities
javiereguiluz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Misc. tweaks and improvements
- Loading branch information
commit 972a92e778e08505c77bb7b6f5187828fcf935d4
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,12 +37,12 @@ | |
<span>{{ collector.statuscode }} {{ collector.statustext }}</span> | ||
</div> | ||
<div class="sf-toolbar-info-piece"> | ||
<b>Controller method</b> | ||
<b>Controller</b> | ||
<span>{{ request_handler }}</span> | ||
</div> | ||
{% if collector.controller.class is defined %} | ||
<div class="sf-toolbar-info-piece"> | ||
<b>Controller file</b> | ||
<b>Controller class</b> | ||
<span>{{ collector.controller.class }}</span> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this does not make sense. a file and a class are not the same |
||
</div> | ||
{% endif %} | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wouldn't it be better to change the priority when registering templates to register them in the right order directly ? this would give more control over the order
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. I don't like this solution either. Please tell me where can I configure this priority. Thanks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've just made this change ... which has allowed us to remove a lot of lines of code. \o/ Thanks!